/* -------------------------------------------------------------------------- */
/* --------------------------- Import Google Fonts -------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Playfair+Display:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Whisper&display=swap');


/* -------------------------------------------------------------------------- */
/* -------------------- CSS Custom Properties (Variables) ------------------- */

:root {
    --font-body: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-brand: "Whisper", cursive;

    --primary: #fed369;
    --secondary: #F0D8B7;
    --secondary-light: #F6E8D4;

    --bg-white: #ffffff;
    --bg-black: #111111;
    --bg-gainsboro: #e6e6e6;
    --bg-light-gray: #e9e9e9;

    --text-white: #ffffff;
    --text-black: #000000;
    --text-dim-gray: #555555;
    --text-silver: #c0c0c0;
    --text-green: #00a651;
    --text-primary: #fed369;

    --border-white: #ffffff;
    --border-black: #111111;
    --border-gainsboro: #e6e6e6;
    --border-dim-gray: #555555;
    --border-silver: #c0c0c0;

    --slider-jet-gray: #333;
    --slider-light-gray: #ccc;

    --button-shadow-transparent-gray: #b8b8b85c;
    --button-shadow-dark-gray: #414141;
    --button-shadow-light-gray: #CACACA;
}


/* -------------------------------------------------------------------------- */
/* ---------------------- Basic Reset and Global Styles --------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

a {
    text-decoration: none;
}

p {
    font-weight: 500;
}

.no-scroll {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 568px) {
    .br_tag {
        display: none;
    }
}

/* ---------- Top Head Content ---------- */
.section_head_content {
    margin-bottom: 40px;
}

.section_head_content.center {
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.section_head_content h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section_head_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim-gray);
}

@media (max-width: 568px) {
    .section_head_content {
        margin-bottom: 40px;
    }

    .section_head_content.center_head_content {
        margin-bottom: 40px;
    }

    .section_head_content h1 {
        font-size: 34px;
    }

    .section_head_content p {
        font-size: 14px;
    }
}

/* ---------- Buttons ---------- */
.btn_primary_white {
    background-color: var(--bg-white);
    border: 2px solid transparent;
    color: var(--text-black);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: -5px 5px 0px var(--button-shadow-dark-gray);
}

.btn_primary_black {
    background-color: var(--bg-black);
    border: 2px solid transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: -5px 5px 0px var(--button-shadow-light-gray);
}

.btn_outline_transparent_white {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: -5px 5px 0px transparent;
}

.btn_outline_transparent_white:hover {
    box-shadow: -5px 5px 0px var(--button-shadow-transparent-gray);
}

.btn_outline_transparent_black {
    background-color: transparent;
    border: 2px solid var(--text-black);
    color: var(--text-black);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: -5px 5px 0px transparent;
}

.btn_outline_transparent_black:hover {
    box-shadow: -5px 5px 0px var(--button-shadow-transparent-gray);
}


@media (max-width: 480px) {

    .btn_primary_white,
    .btn_primary_black,
    .btn_outline_transparent_white,
    .btn_outline_transparent_black {
        font-size: 14px;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------------- Header --------------------------------- */

/* Header */
.header {
    background: var(--bg-black);
}

/* Top Banner */
.top_banner {
    background-color: var(--primary);
}

.top_banner .header_banner {
    color: var(--text-black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.top_banner .header_banner .header_banner_close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Desktop Navbar */
.header_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    gap: 15px;
    background: var(--bg-black);
    position: relative;
}

.header_nav .header_logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_nav .header_logo img {
    height: 50px;
}

.header_nav .header_links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    gap: 30px;
    list-style: none;
}

.header_nav .header_links a {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header_nav .header_links a:hover {
    color: var(--text-primary);
}

.header_nav .header_icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header_nav .header_icons button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-white);
}

.header_nav .header_icons button:hover {
    color: var(--primary);
}

.header_nav .header_mobile_open {
    display: none;
    font-size: 22px;
}

/* Mobile Sidebar Menu */
.header_mobile_menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 80%;
    max-width: 320px;
    background: var(--bg-black);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    padding: 50px 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    border-left: 2px solid var(--border-dim-gray);
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.header_mobile_menu.active {
    transform: translateX(0);
}

.header_mobile_menu .header_mobile_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-white);
}

.header_mobile_menu .header_mobile_close:hover {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary);
}

.header_mobile_menu .header_mobile_links {
    list-style: none;
    width: 100%;
}

.header_mobile_menu .header_mobile_links li {
    margin: 25px 0;
    text-align: left;
}

.header_mobile_menu .header_mobile_links a {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.header_mobile_menu .header_mobile_links a:hover {
    color: var(--primary);
}

/* Desktop Navbar  > Header Dropdown Link */
.header_nav .header_dropdown {
    position: relative;
}

.header_nav .header_dropdown_btn {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.header_nav .header_dropdown_btn:hover {
    color: var(--text-primary);
}

.header_nav .header_dropdown_menu {
    position: absolute;
    z-index: 1;
    top: 160%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-gainsboro);
    display: none;
    flex-direction: column;
    min-width: 130px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
}

.header_nav .header_dropdown_menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--text-black);
    border-radius: 8px;
    font-weight: 600;
}

.header_nav .header_dropdown_menu li a:hover {
    color: var(--text-dim-gray);
}

.header_nav .header_dropdown.open .header_dropdown_menu {
    display: flex;
}

/* Mobile Sidebar Menu > Header Dropdown Link */
.header_mobile_menu .header_mobile_dropdown {
    position: relative;
}

.header_mobile_menu .header_mobile_dropdown_btn {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.header_mobile_menu .header_mobile_dropdown_btn:hover {
    color: var(--primary);
}

.header_mobile_menu .header_mobile_dropdown_menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--text-white);
}

.header_mobile_menu .header_mobile_dropdown_menu li {
    margin: 0px 0;
}

.header_mobile_menu .header_mobile_dropdown_menu a {
    font-size: 16px;
    color: var(--text-white);
}

.header_mobile_menu .header_mobile_dropdown_menu a:hover {
    color: var(--text-silver);
}

.header_mobile_menu .header_mobile_dropdown.open .header_mobile_dropdown_menu {
    display: flex;
}

.header_nav .header_dropdown_btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
    margin-top: -4px;
}

.header_mobile_menu .header_mobile_dropdown_btn i {
    transition: transform 0.3s ease;
}

.header_nav .header_dropdown.open .header_dropdown_btn i,
.header_mobile_menu .header_mobile_dropdown.open .header_mobile_dropdown_btn i {
    transform: rotate(180deg);
}

/* Header Overlay (when mobile menu is open) */
.header_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.header_overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Responsive */
@media (max-width: 991px) {
    .header_nav .header_logo img {
        height: 45px;
    }

    .top_banner .header_banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .top_banner .header_banner .header_banner_close {
        position: relative;
        right: 0;
    }

    .header_nav {
        padding: 16px 20px;
    }

    .header_nav .header_links {
        display: none;
    }

    .header_nav .header_mobile_open {
        display: block;
    }
}


/* -------------------------------------------------------------------------- */
/* --------------------------------- Footer --------------------------------- */

/* Footer */
.footer {
    background: var(--bg-black);
    color: var(--text-white);
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Left side */
.footer_left .footer_logo {
    display: block;
    margin-bottom: 25px;
}

.footer_left .footer_logo img {
    height: 50px;
}

.footer_left .footer_info p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.footer_left .footer_info a {
    color: var(--text-white);
    text-decoration: underline;
}

.footer_left .footer_info a:hover {
    color: var(--primary);
}

.footer_left .footer_socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer_left .footer_socials a {
    color: var(--text-white);
    font-size: 18px;
    border-radius: 100%;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer_left .footer_socials a:hover {
    color: var(--primary);
}

/* Footer links */
.footer_links {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer_links ul {
    list-style: none;
}

.footer_links li {
    margin-bottom: 15px;
}

.footer_links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.footer_links a:hover {
    color: var(--primary);
}

/* Footer Copyright */
.footer_bottom {
    border-top: 1px solid var(--border-dim-gray);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 900px) {
    .footer_container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .footer_left .footer_socials {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer_links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer_links ul {
        padding: 0;
        text-align: center;
    }

    .footer_bottom {
        font-size: 13px;
        text-align: center;
    }
}


/* -------------------------------------------------------------------------- */
/* -------------------------- Pages Common Sections ------------------------- */

/* ---------- Split Section ---------- */
.transparent_split_section {
    background-color: transparent;
}

.secondary_split_section {
    background-color: var(--secondary);
}

.black_split_section {
    background-color: var(--bg-black);
}

.split_section_cont {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.split_section_cont .section_image {
    flex: 1;
}

.split_section_cont .section_image img {
    width: 100%;
    border-radius: 5px;
}

.split_section_cont .section_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split_section_cont .section_text.top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.black_split_section .split_section_cont .section_text h1 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
}

.split_section_cont .section_text h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.black_split_section .split_section_cont .section_text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 10px;
}

.black_split_section .section_text h2.black_split_section_h2_tag {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.black_split_section .split_section_cont .section_text.top p {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: -10px;
    font-family: var(--font-brand);
}

.split_section_cont .section_text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 18px;
}

.black_split_section .split_section_cont .section_text h1,
.black_split_section .split_section_cont .section_text h2,
.black_split_section .split_section_cont .section_text p,
.black_split_section .split_section_cont .section_text p * {
    color: var(--text-white);
}

.split_section_cont .section_text p a {
    font-size: 16px;
    color: var(--text-dim-gray);
    font-weight: 400;
    text-decoration: underline;
}

.split_section_cont .section_text a {
    font-size: 14px;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
}

.split_section_cont .section_text a:hover {
    color: var(--text-dim-gray);
}

.split_section_cont .section_text a i {
    font-size: 12px;
    margin-left: 5px;
}

.split_section_cont .section_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.split_section_cont .section_text ul li {
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    line-height: 1.7;
    margin-bottom: 18px;
}

.split_section_cont .section_text ul li::before {
    content: "•";
    font-size: 45px;
    line-height: 0.5;
    color: var(--text-black);
}

.split_section_cont .jobs_cards_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.split_section_cont .jobs_cards_container .job_card {
    background-color: var(--bg-black);
    border-radius: 5px;
    padding: 30px 30px 40px 30px;
}

.split_section_cont .jobs_cards_container .job_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.split_section_cont .jobs_cards_container .job_desc {
    color: var(--text-silver);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.split_section_cont .jobs_cards_container .job_info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.split_section_cont .jobs_cards_container .job_info span {
    color: var(--text-silver);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.split_section_cont .jobs_cards_container .job_info i {
    color: var(--text-white);
}

.split_section_cont .founder_timeline_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 2px solid var(--text-dim-gray);
    padding-left: 40px;
    position: relative;
    margin-left: 20px;
}

.split_section_cont .founder_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.split_section_cont .founder_icon {
    position: absolute;
    top: -10px;
    left: -65px;
    background-color: var(--bg-white);
    color: var(--text-dim-gray);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.split_section_cont .founder_text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 8px;
}

.split_section_cont .founder_text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim-gray);
}

.details_split_section .event_info_grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.details_split_section .event_info_box {
    background-color: var(--secondary-light);
    padding: 25px 30px;
    border-radius: 15px;
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
}

.details_split_section .event_info_box h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 20px;
}

.details_split_section .event_info_box a {
    font-size: 16px;
    color: var(--text-black);
}

.details_split_section .event_info_box span {
    font-size: 16px;
    color: var(--text-black);
}

.split_section_image {
    width: 100%;
    border-radius: 15px;
    margin-top: 40px;
    overflow: hidden;
}

.split_section_image img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .details_split_section .event_info_box {
        flex: 1 1 calc(50% - 30px);
    }

    .details_split_section .event_info_grid {
        margin-top: 40px;
    }
}

@media (max-width: 700px) {
    .details_split_section .event_info_box {
        flex: 1 1 100%;
        padding: 25px 20px;
    }
}

@media (max-width: 1024px) {
    .split_section_cont {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .split_section_cont.reverse {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .split_section_cont .jobs_cards_container .job_info {
        justify-content: center;
    }


    .split_section_cont .section_text.mob_content_start,
    .split_section_cont .section_text.top.mob_content_start {
        text-align: start;
        align-items: start;
    }

    .split_section_cont .founder_timeline_container.mob_content_start {
        text-align: start;
        align-items: start;
    }

    .split_section_cont.container.mob_content_start {
        text-align: start;
        align-items: start;
    }
}

@media (max-width: 768px) {
    .split_section_cont .jobs_cards_container .job_card {
        padding: 30px 20px 40px 20px;
    }

}

@media (max-width: 568px) {

    .split_section_cont .section_text h2,
    .black_split_section .section_text h2.black_split_section_h2_tag {
        font-size: 25px;
    }

    .split_section_cont .section_text p {
        font-size: 14px;
    }

    .split_section_cont .section_text p a {
        font-size: 14px;
    }

    .split_section_cont .section_text p li {
        font-size: 14px;
    }
}

/* ---------- Newsletter Section ---------- */
.newsletter.top-spacing {
    margin-top: 60px;
}

.newsletter-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    padding: 60px 40px;
    max-width: 820px;
}

.newsletter-content h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-content p {
    font-size: 15px;
    margin-bottom: 35px;
    color: var(--text-white);
    line-height: 1.6;
}

.newsletter-content .newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.newsletter-content .newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-white);
    border-radius: 5px;
    background: transparent;
    color: var(--text-white);
    font-size: 15px;
    max-width: 400px;
}

.newsletter-content .newsletter-form input::placeholder {
    color: var(--text-silver);
}

.newsletter-content .newsletter-form input:focus {
    outline: none;
    border-color: var(--border-white);
    box-shadow: none;
}

.newsletter-content small {
    font-size: 11px;
    color: var(--text-white);
}

.newsletter-content small a {
    color: var(--text-white);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter.top-spacing {
        margin-top: 50px;
    }

    .newsletter-wrapper {
        margin-bottom: 50px;
    }

    .newsletter {
        margin-bottom: 50px;
    }

    .newsletter-content {
        padding: 60px 20px;
        text-align: center;
    }

    .newsletter-content .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content .newsletter-form input,
    .newsletter-content .newsletter-form button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 568px) {
    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 14px;
    }
}

/* ---------- Hero Split Section ---------- */
.hero_split_section.white_section {
    background-color: var(--bg-white);
}

.hero_split_section.black_section {
    background-color: var(--bg-black);
}

/* ---------- Image Hero Section ---------- */
.image_hero_section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image_hero_section .image_hero_content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.image_hero_section .image_hero_content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 18px;
}

.image_hero_section .image_hero_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .image_hero_section {
        height: 320px;
        text-align: center;
    }

    .image_hero_section .image_hero_content {
        padding: 40px 20px;
    }

    .image_hero_section .image_hero_content h2 {
        font-size: 32px;
    }

    .image_hero_section .image_hero_content p {
        margin: auto;
    }
}

/* ---------- Related Product Section ---------- */
.related_product_section .related_product_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.related_product_section h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-black);
}

.related_product_section .related_product_view_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related_product_section .related_product_view_link i {
    margin-left: 4px;
    font-size: 12px;
}

.related_product_section .related_product_view_link:hover {
    color: var(--text-dim-gray);
}

.related_product_section .related_product_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.related_product_section .related_product_item {
    background: var(--bg-black);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.related_product_section .related_product_item:hover {
    transform: translateY(-6px);
}

.related_product_section .related_product_image {
    padding: 10px 10px 0 10px;
}

.related_product_section .related_product_image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.related_product_section .related_product_info {
    padding: 20px;
}

.related_product_section .related_product_info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 14px;
}

.related_product_section .related_product_info div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
}

.related_product_section .related_product_info div p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
}

.related_product_section .related_product_info button {
    width: 100%;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1200px) {
    .related_product_section .related_product_grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-area: 25px;
    }
}

@media (max-width: 800px) {
    .related_product_section h2 {
        font-size: 22px;
    }

    .related_product_section .related_product_grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 568px) {
    .related_product_section .related_product_header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .related_product_section h2 {
        font-size: 20px;
    }

    .related_product_section .related_product_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ---------- Event gallery Section ---------- */
.event_gallery_section {
    text-align: center;
}

.event_gallery_section.secondary_bg {
    background-color: var(--secondary);
}

.event_gallery_section .event_gallery_content_head {
    max-width: 800px;
    margin: auto;
}

.event_gallery_section .event_gallery_title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 20px;
}

.event_gallery_section .event_gallery_subtitle {
    font-size: 16px;
    color: var(--text-dim-gray);
    margin-bottom: 60px;
}

.event_gallery_section .event_insta_id {
    margin-bottom: 60px;
    margin-top: -10px;
}

.event_gallery_section .event_insta_id a {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
    font-family: var(--font-brand);
    color: var(--text-black);
}

.event_gallery_section .event_insta_id a i {
    position: relative;
    bottom: -3px;
    font-size: 20px;
}

.event_gallery_section .event_gallery_cont {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.event_gallery_section .event_gallery_item {
    flex: 1;
    overflow: hidden;
}

.event_gallery_section .event_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .event_gallery_section .event_gallery_title {
        font-size: 30px;
    }

    .event_gallery_section .event_gallery_subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .event_gallery_section .event_gallery_cont {
        gap: 20px;
    }

    .event_gallery_section .event_gallery_item {
        min-width: 280px;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .event_gallery_section .event_gallery_item {
        min-width: 100%;
        max-width: 100%;
    }
}


/* -------------------------------------------------------------------------- */
/* -------------------------- Index Page Sections --------------------------- */

/* ---------- Hero Section ---------- */
.home_hero_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.home_hero_section .hero_content {
    flex: 1;
    max-width: 800px;
}

.home_hero_section .hero_content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.home_hero_section .hero_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dim-gray);
    max-width: 600px;
}

.home_hero_section .hero_content .hero_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.home_hero_section .hero_image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.home_hero_section .hero_image img {
    width: 100%;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .home_hero_section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .home_hero_section .hero_content {
        max-width: 600px;
    }

    .home_hero_section .hero_content .hero_buttons {
        align-items: center;
        justify-content: center;
    }

    .home_hero_section .hero_image img {
        max-width: 600px;
    }
}

@media (max-width: 568px) {
    .home_hero_section .hero_content h1 {
        font-size: 34px;
    }

    .home_hero_section .hero_content p {
        font-size: 14px;
    }
}

/* ---------- Experiences Section ---------- */
.experiences_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* Experiences Events */
.experiences_events {
    flex: 1;
}

.experiences_events ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.experiences_events .event_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 16px 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.experiences_events .event_card:hover {
    transform: translateX(5px);
}

.experiences_events ul li {
    background-color: var(--bg-gainsboro);
}

.experiences_events .event_date {
    width: 100px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid var(--border-silver);
}

.experiences_events .event_date h3 {
    font-size: 26px;
    font-weight: 700;
}

.experiences_events .event_date span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim-gray);
}

.experiences_events .event_info {
    flex: 1;
    padding: 0 20px;
    text-align: start;
}

.experiences_events .event_info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 24ch;
    /* ~24 letters including space */
    display: block;
}

.experiences_events .event_info p {
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
    color: var(--text-dim-gray);
}

.experiences_events .event_card i {
    font-size: 22px;
    color: var(--text-black);
}

.experiences_events .events_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 15px;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
}

.experiences_events .events_link:hover {
    color: var(--text-dim-gray);
}

.experiences_events .events_link i {
    font-size: 14px;
    margin-left: 5px;
}

/* experiences Products */
.experiences_products {
    flex: 1.35;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.experiences_products .product_card {
    text-align: start;
    flex: 1;
}

.experiences_products .product_card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    display: block;
}

.experiences_products .product_card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 15px;
}

.experiences_products .product_card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim-gray);
    margin-bottom: 15px;
}

.experiences_products .product_card a {
    font-size: 15px;
    color: var(--text-black);
    font-weight: 600;
    text-decoration: none;
}

.experiences_products .product_card a:hover {
    color: var(--text-dim-gray);
}

.experiences_products .product_card a i {
    font-size: 14px;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .experiences_content {
        flex-direction: column;
    }

    .experiences_events,
    .experiences_products {
        width: 100%;
    }
}

@media (max-width: 568px) {
    .experiences_products {
        flex-direction: column;
    }

    .experiences_events .event_date {
        width: fit-content;
        flex-direction: column;
        gap: 5px;
    }

    .experiences_events .events_link,
    .experiences_products .product_card {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .experiences_events .event_info h4 {
        max-width: 16ch;
        /* ~16 letters including space */
    }

}


/* -------------------------------------------------------------------------- */
/* ---------------------------- Bier Page Sections -------------------------- */

/* ---------- Product Section ---------- */
.product_section .product_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product_section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-black);
}

.product_section .product_view_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product_section .product_view_link i {
    margin-left: 4px;
    font-size: 12px;
}

.product_section .product_view_link:hover {
    color: var(--text-dim-gray);
}

.product_section .product_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.product_section .product_item {
    background: var(--bg-black);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.product_section .product_item:hover {
    transform: translateY(-6px);
}

.product_section .product_image {
    padding: 10px 10px 0 10px;
}

.product_section .product_image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.product_section .product_info {
    padding: 20px;
}

.product_section .product_info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 14px;
}

.product_section .product_info div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
}

.product_section .product_info div p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
}


.product_section .product_info button {
    width: 100%;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product_section .product_grid {
        grid-template-columns: 1fr 1fr;
    }

    .product_section .product_info h3 {
        font-size: 16px;
    }

    .product_section .product_info p {
        font-size: 22px;
    }

    .product_section .product_info button {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .product_section h2 {
        font-size: 32px;
    }

    .product_section .product_grid {
        gap: 24px;
    }
}

@media (max-width: 568px) {
    .product_section .product_header {
        flex-direction: column;
        gap: 12px;
    }

    .product_section .product_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product_section .product_info h3 {
        font-size: 15px;
    }

    .product_section .product_info p {
        font-size: 20px;
    }

    .product_section .product_info button {
        font-size: 14px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Bierbrand Page Sections ------------------------ */

/* ---------- Variants Section ---------- */
.variants_section .variants_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.variants_section h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-black);
}

.variants_section .variants_view_link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.variants_section .variants_view_link i {
    margin-left: 4px;
    font-size: 12px;
}

.variants_section .variants_view_link:hover {
    color: var(--text-dim-gray);
}

.variants_section .variants_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.variants_section .variants_item {
    background: var(--bg-black);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.variants_section .variants_item:hover {
    transform: translateY(-6px);
}

.variants_section .variants_image {
    padding: 10px 10px 0 10px;
}

.variants_section .variants_image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.variants_section .variants_info {
    padding: 20px;
    height: 100%;
}

.variants_section .variants_info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.variants_section .variants_info p {
    font-size: 16px;
    color: var(--text-white);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .variants_section .variants_info h3 {
        font-size: 16px;
    }

    .variants_section h2 {
        font-size: 32px;
    }

    .variants_section .variants_grid {
        gap: 24px;
    }
}

@media (max-width: 568px) {
    .variants_section .variants_header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .variants_section .variants_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .variants_section .variants_info h3 {
        font-size: 15px;
    }

    .variants_section .variants_info p {
        font-size: 13px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Check Out Page Sections ------------------------ */

/* ---------- Cart Section ---------- */
.cart_section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.cart_section .cart_left {
    flex: 1.5;
    border-radius: 5px;
    padding: 20px;
    border: 1px solid var(--border-black);
}

.cart_section .cart_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-black);
}

.cart_section .cart_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart_section .cart_item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border: 1px solid var(--border-black);
    border-radius: 5px;
    padding: 20px;
    gap: 20px;
}

.cart_section .cart_item_image {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
}

.cart_section .cart_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cart_section .cart_item_details {
    flex: 1;
}

.cart_section .cart_item_details h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 4px;
}

.cart_section .cart_item_details p {
    font-size: 14px;
    color: var(--text-dim-gray);
    margin-bottom: 12px;
}

.cart_section .cart_item_qty {
    position: relative;
}

.cart_section .cart_select_wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart_section .cart_select_wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 34px 10px 14px;
    border: 1px solid var(--border-black);
    border-radius: 5px;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-black);
    cursor: pointer;
}

.cart_section .cart_select_wrapper i {
    position: absolute;
    right: 12px;
    pointer-events: none;
    color: var(--text-dim-gray);
    font-size: 12px;
}

.cart_section .cart_item_price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
}

.cart_section .cart_item_remove {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-black);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.cart_section .cart_empty {
    text-align: center;
    border: 1px dashed var(--border-dim-gray);
    border-radius: 5px;
    padding: 60px 20px;
}

.cart_section .cart_empty_icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cart_section .cart_empty h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 10px;
}

.cart_section .cart_empty p {
    font-size: 15px;
    color: var(--text-dim-gray);
    margin-bottom: 25px;
}

.cart_section .cart_empty_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--text-black);
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cart_section .cart_right {
    flex: 1;
    border-radius: 5px;
    padding: 20px;
    background-color: var(--bg-black);
}

.cart_section .cart_summary_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cart_section .cart_summary_coupon label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 8px;
}

.cart_section .cart_coupon_row {
    display: flex;
    gap: 12px;
}

.cart_section .cart_coupon_row input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--border-white);
    border-radius: 5px;
    font-size: 14px;
    background-color: transparent;
    color: var(--text-white);
}

.cart_section .cart_coupon_row input:focus {
    outline: none;
    border-color: var(--border-dim-gray);
    box-shadow: none;
}

.cart_section .cart_coupon_success {
    color: var(--text-green);
    font-size: 14px;
    margin-top: 8px;
}

.cart_section .cart_summary_details {
    margin-top: 20px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart_section .cart_summary_details div {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--text-white);
}

.cart_section .cart_summary_buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart_section .btn_checkout {
    background: var(--primary);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cart_section .btn_continue {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .cart_section {
        flex-direction: column;
        gap: 30px;
    }

    .cart_section .cart_left,
    .cart_section .cart_right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cart_section .cart_item {
        flex-wrap: wrap;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;

    }

    .cart_section .cart_item_details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cart_section .cart_item_image img {
        width: 100px;
    }

    .cart_section .cart_item_remove {
        position: absolute;
        top: 15px;
        right: 10px;
    }

    .cart_section .cart_coupon_row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .cart_section .cart_coupon_row input,
    .cart_section .cart_coupon_row button {
        width: 100%;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------ Dein Event Page Sections ------------------------ */

/* ---------- Event Hero Section ---------- */
.event_hero_section_wrapper {
    background-color: var(--bg-black);
}

.event_hero_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.event_hero_section .hero_content {
    flex: 1;
    max-width: 800px;
}

.event_hero_section .hero_content .breadcrumb_content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-silver);
    font-weight: 400;
    margin-bottom: 30px;
}

.event_hero_section .hero_content .breadcrumb_link {
    color: var(--text-silver);
    text-decoration: none;
    transition: color 0.2s ease;
}

.event_hero_section .hero_content .breadcrumb_link:hover {
    color: var(--text-white);
}

.event_hero_section .hero_content .breadcrumb_separator i {
    font-size: 12px;
    color: var(--text-silver);
    position: relative;
    top: -1px;
}


.event_hero_section .hero_content .breadcrumb_current {
    color: var(--text-silver);
    font-weight: 500;
}

.event_hero_section .hero_content h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.event_hero_section .hero_content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-silver);
    max-width: 600px;
}

.event_hero_section .hero_content .hero_buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.event_hero_section .hero_content .hero_info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.event_hero_section .hero_content .hero_info span {
    color: var(--text-silver);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event_hero_section .hero_content .hero_info i {
    color: var(--text-silver);
}

.event_hero_section .hero_image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.event_hero_section .hero_image img {
    width: 100%;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .event_hero_section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .event_hero_section .hero_content {
        max-width: 600px;
    }

    .event_hero_section .hero_content .breadcrumb_content,
    .event_hero_section .hero_content .hero_buttons,
    .event_hero_section .hero_content .hero_info {
        align-items: center;
        justify-content: center;
    }

    .event_hero_section .hero_image img {
        max-width: 600px;
    }
}

@media (max-width: 568px) {
    .event_hero_section .hero_content h1 {
        font-size: 34px;
    }

    .event_hero_section .hero_content p {
        font-size: 14px;
    }
}

/* ---------- Contact Information Section ---------- */
.contact_grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 15px;
}

.contact_item {
    flex: 1;
    min-width: 280px;
}

.contact_item i {
    font-size: 30px;
    color: var(--bg-black);
    margin-bottom: 25px;
    display: inline-block;
}

.contact_item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-black);
}

.contact_item a {
    font-size: 18px;
    color: var(--text-dim-gray);
    text-decoration: underline;
    line-height: 1.6;
    font-weight: 500;
}

.contact_item a:hover {
    color: var(--bg-black);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact_container .section_head_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact_grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact_item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact_item i {
        font-size: 26px;
    }

    .contact_item h3 {
        font-size: 18px;
    }

    .contact_item a {
        font-size: 16px;
    }
}


/* -------------------------------------------------------------------------- */
/* ----------------------- Die Brauerei Page Sections ----------------------- */

/* ---------- Process Section ---------- */
.process_section {
    background: var(--secondary);
}

.process_content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: left;
}

.process_content .process_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.process_content .process_item i {
    font-size: 40px;
    color: var(--text-black);
    margin-bottom: 25px;
    display: block;
}

.process_content .process_item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.process_content .process_item p {
    color: var(--text-dim-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .process_content h2 {
        text-align: center;
        font-size: 30px;
    }

    .process_content .process_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process_content .process_item {
        text-align: center;
        max-width: 600px;
        margin: auto;
    }

    .process_content .process_item i {
        margin: auto;
        margin-bottom: 25px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .process_content .process_item h3 {
        font-size: 18px;
    }

    .process_content .process_item p {
        font-size: 15px;
    }
}

/* ---------- Showcase Slider Section ---------- */
:root {
    --slider-side-offset: 80px;
}

.showcase-slider-content-wrapper {
    margin: auto;
}

.showcase-slider-slider {
    max-width: 100%;
    margin: 0 auto;
    padding-left: var(--slider-side-offset);
    padding-right: var(--slider-side-offset);
    overflow: hidden;
}

.showcase-slider-content-wrapper {
    overflow: visible;
}

.swiper {
    z-index: 0;
}

.showcase-slider-slider .swiper-wrapper {
    overflow: visible;
}

.showcase-slider-slider .swiper-slide {
    width: 100%;
    max-width: 800px;
}

.showcase-slider-slider .image-slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.showcase-slider-slider .image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-slider-slider .image-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.slider-footer {
    margin: 40px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-left: var(--slider-side-offset);
    padding-right: var(--slider-side-offset);
}

.slider-footer .custom-pagination {
    position: static !important;
    width: auto !important;
    font-size: 0;
    display: flex;
    gap: 5px;
}

.slider-footer .custom-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--slider-light-gray);
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-footer .custom-pagination .swiper-pagination-bullet-active {
    background-color: var(--bg-black);
    transform: scale(1.2);
}

.slider-footer .slider-navigation {
    display: flex;
    gap: 15px;
}

.slider-footer .custom-arrow {
    position: static;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--border-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    color: var(--border-black);
}

.slider-footer .custom-arrow:hover {
    background-color: var(--primary);
}

.slider-footer .custom-arrow::after {
    content: none !important;
}

.slider-footer .custom-arrow.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
}

/* Responsive */
@media (max-width: 1200px) {
    :root {
        --slider-side-offset: 20px;
    }
}

@media (max-width: 768px) {
    .showcase-slider-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .showcase-slider-slider .swiper-slide {
        width: 100% !important;
        max-width: 100%;
    }

    .slider-footer {
        padding-left: var(--slider-side-offset);
        padding-right: var(--slider-side-offset);
    }

    .showcase-slider-slider,
    .slider-footer {
        max-width: 100%;
        padding: 0 var(--slider-side-offset);
    }
}

@media (max-width: 360px) {
    .slider-footer .custom-pagination {
        display: none;
    }
}


/* -------------------------------------------------------------------------- */
/* -------------------------- Event Page Sections --------------------------- */

/* ---------- Events List Slider Section ---------- */
.events_list_slider_section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.events_list_slider_section .section_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 40px;
}

.events_list_slider_section .swiper {
    position: relative;
    overflow: hidden;
}

.events_list_slider_section .event_card {
    background-color: var(--bg-light-gray);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.events_list_slider_section .event_card_image_wrap {
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.events_list_slider_section .event_image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.events_list_slider_section .event_card_content {
    padding: 20px;
}

.events_list_slider_section .event_meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.events_list_slider_section .meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-black);
}

.events_list_slider_section .event_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 12px;
}

.events_list_slider_section .event_desc {
    color: var(--text-dim-gray);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.events_list_slider_section .event_link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.events_list_slider_section .event_link:hover {
    color: var(--text-dim-gray);
    gap: 12px;
}

.events_list_slider_section .events_list_slider_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.events_list_slider_section .events_list_slider_nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dim-gray);
    transition: all 0.3s ease;
    font-size: 15px;
    border-radius: 5px;
}

.events_list_slider_section .events_list_slider_nav a:hover {
    color: var(--text-black);
    transform: translateY(-2px);
}

.events_list_slider_section .events_list_slider_nav a i {
    font-size: 14px;
}

.events_list_slider_section .events_list_slider_nav a span {
    font-size: 15px;
}

.events_list_slider_section .swiper-button-prev,
.events_list_slider_section .swiper-button-next {
    position: static !important;
    transform: none !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
    content: none !important;
}

/* Responsive */
@media (max-width: 1000px) {
    .events_list_slider_section .section_title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .events_list_slider_section .section_title {
        font-size: 20px;
    }

    .events_list_slider_section .event_card_content {
        padding: 20px;
    }

    .events_list_slider_section .event_title {
        font-size: 18px;
    }

    .events_list_slider_section .event_desc {
        font-size: 14px;
    }

    .events_list_slider_section .event_link {
        font-size: 14px;
    }

    .events_list_slider_section .event_link i {
        font-size: 11px;
    }

    .events_list_slider_section .events_list_slider_nav span {
        display: none;
    }

    .events_list_slider_section .events_list_slider_nav a {
        padding: 10px;
        border: 2px solid var(--text-dim-gray);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 9999;
        margin-top: 30px;
    }

    .events_list_slider_section .events_list_slider_nav a:hover {
        background-color: var(--primary);
    }

    .events_list_slider_section .events_list_slider_nav a i {
        font-size: 16px;
    }
}


/* -------------------------------------------------------------------------- */
/* -------------------------- Product page Sections ------------------------- */

/* ---------- Single Product Section Styles ---------- */
.single-product-section {
    text-align: left;
}

.single-product-section .product-details-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
    align-items: flex-start;
}

.single-product-section .product-image-gallery {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 20px;
    position: sticky;
    top: 20px;

}

.single-product-section .main-product-image {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.single-product-section .main-product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid var(--border-gainsboro);
    flex: 1;
}

.single-product-section .thumbnail-images {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
    border-radius: 10px;
}

.single-product-section .thumbnail-images img {
    width: 120px;
    height: 90px;
    object-fit: contain;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid var(--border-gainsboro);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.single-product-section .thumbnail-images img.active {
    border-color: var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.single-product-section .product-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
}

.single-product-section .product-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.single-product-section .product-description {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dim-gray);
    margin-bottom: 25px;
}

.product_size_selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.product_size_selector label {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--text-black);
}

.size_options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.size_options input[type="radio"] {
    display: none;
}

.size_options label {
    border: 1px solid var(--border-black);
    background-color: transparent;
    color: var(--text-black);
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size_options input[type="radio"]:checked+label {
    background-color: var(--text-black);
    color: var(--text-white);
    border-color: var(--text-black);
}

.single-product-section .cart_item_qty {
    position: relative;
}

.single-product-section .cart_item_qty p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 10px;
}

.single-product-section .cart_select_wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.single-product-section .cart_select_wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 34px 10px 14px;
    border: 1px solid var(--border-black);
    border-radius: 5px;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-black);
    cursor: pointer;
}

.single-product-section .cart_select_wrapper i {
    position: absolute;
    right: 12px;
    pointer-events: none;
    color: var(--text-dim-gray);
    font-size: 12px;
}

.single-product-section .product_buttons {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.single-product-section .product-spec-accordion {
    border-top: 1px solid var(--border-gainsboro);
}

.single-product-section .accordion-item {
    border-bottom: 1px solid var(--border-gainsboro);
}

.single-product-section .accordion-header {
    font-size: 18px;
    font-weight: 700;
    padding: 25px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-black);
}

.single-product-section .accordion-header i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.single-product-section .accordion-header.active i {
    transform: rotate(180deg);
}

.single-product-section .accordion-content {
    max-height: 0;
    overflow: hidden;
}

.single-product-section .accordion-content.open {
    max-height: 500px;
    margin-bottom: 25px;
}

.single-product-section .accordion-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dim-gray);
    margin-bottom: 10px;
}

.single-product-section .accordion-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 880px) {
    .single-product-section .main-product-image {
        justify-content: flex-start;
    }


    .single-product-section .product-image-gallery {
        position: static;
    }

    .single-product-section .main-product-image img {
        flex: 1;
    }

    .single-product-section .product-image-gallery {
        flex-direction: column;
    }

    .single-product-section .thumbnail-images {
        flex-direction: row;
    }

    .single-product-section .product-details-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-product-section .product-title {
        font-size: 30px;
    }

    .single-product-section .product-price {
        font-size: 22px;
    }

    .single-product-section .product-description {
        font-size: 15px;
    }

    .single-product-section .btn_cart {
        font-size: 15px;
    }

    .single-product-section .btn_buy {
        font-size: 15px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------- Programm Page Sections ------------------------- */

/* -------- Programm event card Section -------- */
.programm_event_card_section {
    padding-bottom: 0;
}

.programm_event_card_section .programm_event_card_title {
    font-size: 45px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 40px;
}

.programm_event_card_section .programm_event_card_card {
    display: flex;
    align-items: stretch;
    gap: 30px;
    background-color: var(--bg-black);
    border-radius: 5px;
    overflow: hidden;
    padding: 15px 15px 20px 15px;
    flex-wrap: wrap;
}

.programm_event_card_section .programm_event_card_image_wrap {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
}

.programm_event_card_section .programm_event_card_image_wrap img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.programm_event_card_section .programm_event_card_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.programm_event_card_section .programm_event_card_meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: var(--text-silver);
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.programm_event_card_section .programm_event_card_meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.programm_event_card_section .programm_event_card_heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.programm_event_card_section .programm_event_card_details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.programm_event_card_section .programm_event_card_details p {
    font-size: 15px;
    color: var(--text-silver);
    line-height: 1.6;
}

.programm_event_card_section .btn_primary_white {
    width: fit-content;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .programm_event_card_section .programm_event_card_title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .programm_event_card_section .programm_event_card_card {
        flex-direction: column;
    }

    .programm_event_card_section .programm_event_card_image_wrap,
    .programm_event_card_section .programm_event_card_content {
        flex: 1;
    }

    .programm_event_card_section .programm_event_card_heading {
        font-size: 20px;
    }
}

/* ---------- Events List Section ---------- */
.events_list_section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.events_list_section .section_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 40px;
}

.events_list_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.events_list_grid .event_card {
    background-color: var(--bg-light-gray);
    border-radius: 5px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 30px);
    display: flex;
    flex-direction: column;
}

.events_list_grid .event_card_image_wrap {
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.events_list_grid .event_image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.events_list_grid .event_card_content {
    padding: 20px;
}

.events_list_grid .event_meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.events_list_grid .meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-black);
}

.events_list_grid .event_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 12px;
}

.events_list_grid .event_desc {
    color: var(--text-dim-gray);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.events_list_grid .event_link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.events_list_grid .event_link:hover {
    color: var(--text-dim-gray);
    gap: 12px;
}

.events_list_grid .event_link i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1000px) {
    .events_list_grid .event_card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .events_list_grid .event_card {
        flex: 1 1 100%;
    }

    .events_list_section .events_list_nav {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .events_list_section .section_title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .events_list_grid .event_card_content {
        padding: 25px 20px;
    }

    .events_list_grid .event_meta {
        font-size: 14px;
    }

    .events_list_grid .event_title {
        font-size: 18px;
    }

    .events_list_grid .event_desc {
        font-size: 14px;
    }

    .events_list_grid .event_link {
        font-size: 14px;
    }

    .events_list_grid .event_link i {
        font-size: 12px;
    }
}


/* -------------------------------------------------------------------------- */
/* ----------------------- Reservierung page Sections ----------------------- */

/* ---------- Reservation Calendar Section ---------- */
.reservation_section .reservation_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 150px;
}

/* Reservation Calendar */
.reservation_section .reservation_calendar {
    flex: 1.2;
    border-radius: 16px;
}

.reservation_section .calendar_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reservation_section .calendar_header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reservation_section .calendar_nav {
    background: none;
    border: 1px solid var(--text-dim-gray);
    color: var(--text-dim-gray);
    font-size: 14px;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reservation_section .calendar_nav:hover {
    background-color: var(--bg-black);
    color: var(--primary);
}

.reservation_section .calendar_weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: var(--border-dim-gray);
    margin-bottom: 15px;
    font-size: 15px;
}

.reservation_section .calendar_days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 15px;
    gap: 5px;
}

.reservation_section .calendar_days span {
    padding: 10px 0;
    border-radius: 5px;
    font-weight: 500;
    color: var(--text-black);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.reservation_section .calendar_days span.other-month {
    color: var(--text-silver);
}

.reservation_section .calendar_days span.today {
    border: 1px solid var(--bg-black);
    color: var(--text-black);
    font-weight: 700;
}

.reservation_section .calendar_days span.active {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-weight: 700;
}

/* Reservation Form */
.reservation_section .reservation_form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation_section .reservation_form .form_title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.reservation_section .reservation_form .form_description {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.reservation_section .reservation_form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reservation_section .reservation_form form .form_input_cont label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 10px;
}

.reservation_section .reservation_form input[type="text"],
.reservation_section .reservation_form input[type="number"] {
    width: 100%;
    border: 1px solid var(--border-dim-gray);
    border-radius: 5px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    background-color: transparent;
    transition: border-color 0.2s;
}

.reservation_section .reservation_form input[type="number"] {
    -moz-appearance: textfield;
}

.reservation_section .reservation_form input[type="number"]::-webkit-outer-spin-button,
.reservation_section .reservation_form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.reservation_section .reservation_form input#persons {
    border: none;
}

.reservation_section .reservation_form .input_group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-dim-gray);
    border-radius: 5px;
    padding: 0 14px;
    background-color: transparent;
}

.reservation_section .reservation_form .input_group i {
    color: var(--text-dim-gray);
    font-size: 20px;
}

.reservation_section .reservation_form .input_group input {
    border: none;
    outline: none;
    flex: 1;
    padding: 15px;
    font-size: 15px;
    background: transparent;
}

.reservation_section .reservation_form .input_group i:last-child {
    cursor: pointer;
}

/* Reservation Submit Button */
.reservation_section .btn_primary_black {
    align-self: flex-end;
}

/* Responsive */
@media (max-width: 1200px) {
    .reservation_section .reservation_content {
        gap: 100px;
    }
}

@media (max-width: 1024px) {
    .reservation_section .reservation_calendar {
        width: 100%;
    }

    .reservation_section .reservation_content {
        flex-direction: column;
        gap: 60px;
    }

    .reservation_section .reservation_form {
        width: 100%;
    }
}

@media (max-width: 568px) {
    .reservation_section .calendar_header h3 {
        font-size: 20px;
    }

    .reservation_section .calendar_days span {
        padding: 8px 0;
        font-size: 14px;
    }

    .reservation_section .reservation_form .form_title {
        font-size: 20px;
    }
}

/* ---------- Allgemeine Öffnungszeiten Section ---------- */
.general_opening_section .general_opening_heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 60px;
}

.general_opening_section .general_opening_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.general_opening_section .opening_details {
    flex: 1;
}

.general_opening_section .opening_group {
    margin-bottom: 30px;
}

.general_opening_section .opening_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 8px;
}

.general_opening_section .opening_time {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
}

.general_opening_section .opening_notice {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 40px;
}

.general_opening_section .opening_contact_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.general_opening_section .opening_contact_link i {
    font-size: 12px;
    margin-left: 5px;
}

.general_opening_section .opening_contact_link:hover {
    color: var(--text-dim-gray);
}

.general_opening_section .opening_image_wrapper {
    flex: 1.5;
}

.general_opening_section .opening_image_wrapper img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    max-height: 450px;
}

/* Responsive */
@media (max-width: 900px) {
    .general_opening_section .general_opening_heading {
        font-size: 34px;
        text-align: center;
        margin-bottom: 60px;
    }

    .general_opening_section .general_opening_content {
        flex-direction: column;
        gap: 40px;
    }

    .general_opening_section .opening_details,
    .general_opening_section .opening_image_wrapper {
        width: 100%;
        text-align: center;
    }

    .general_opening_section .opening_image_wrapper img {
        max-height: 400px;
    }
}


/* -------------------------------------------------------------------------- */
/* ------------------------ Schankraum Page Sections ------------------------ */

/* ---------- Location & Opening Hours Section ---------- */
.location_opening_section .location_heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 60px;
}

.location_opening_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.location_opening_content .location_text {
    flex: 1;
}

.location_opening_content .location_name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.location_opening_content .location_address {
    font-size: 15px;
    color: var(--text-dim-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.location_opening_content .opening_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 10px;
}

.location_opening_content .opening_time {
    font-size: 15px;
    color: var(--text-dim-gray);
    margin-bottom: 40px;
}

.location_opening_content .map_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--text-black);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.location_opening_content .map_link i {
    font-size: 12px;
}

.location_opening_content .map_link:hover {
    color: var(--text-dim-gray);
}

.location_opening_content .location_map {
    flex: 1.5;
}

.location_opening_content .location_map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 5px;
    filter: grayscale(10%) brightness(97%);
}

/* Responsive */
@media (max-width: 900px) {
    .location_opening_section .location_heading {
        font-size: 34px;
        text-align: center;
        margin-bottom: 60px;
    }

    .location_opening_content {
        flex-direction: column;
        gap: 50px;
    }

    .location_opening_content .location_text,
    .location_opening_content .location_map {
        width: 100%;
        text-align: center;
    }
}