/* ===== Font Face Declarations ===== */
@font-face {
    font-family: 'Gobold';
    src: url('assets/fonts/Gobold_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-title: swap;
}

@font-face {
    font-family: 'DS Wallau';
    src: url('assets/fonts/DSWallauOsF.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-title: swap;
}

:root {
    --color-primary: #F5B716;
    --color-accent: #DE430A;
    --font-title: "Bebas Neue", sans-serif;
    --font-body: "Bebas Neue", sans-serif;
    --font-secondary: "DS Wallau", Georgia, serif;
    --font-title: "Gobold", sans-serif;
    --max-width: 1440px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}



/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 4px 46px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    border: none;
    transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    cursor: pointer;
    min-width: 150px;

}

.btn-primary {
    background: var(--color-primary);
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn:hover {
    background-color: #284934;
    color: #FFFFFF;
}

/* ===== Header Start  ===== */

.site-header {
    background-color: #6F212F;
    color: #FFFFFF;
    width: 100%;
    border-bottom: 1px solid #FFEDCF;
    position: sticky;
	top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 144px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    max-height: 90px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.header-top-row {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    margin: 0 20px;
    opacity: 0.5;
    font-weight: 300;
}

.opening-hours {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Mobile menu toggle - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 26px;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.mobile-menu-toggle:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active i {
    transform: rotate(90deg);
}

.header-bottom-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-navigation .nav-menu ul {
    display: flex;
}

.main-navigation .nav-menu li {
    list-style: none;
}

.main-navigation .nav-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-navigation .nav-menu li a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 50%;
}


/* ===== Header End ===== */

/* ===== Hero Section Start ===== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Horizontal gradient: dark edges → transparent center → dark edges */
        linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0) 25%,
            rgba(0, 0, 0, 0) 75%,
            rgba(0, 0, 0, 0.8) 100%),
        /* Vertical gradient: transparent top → dark bottom */
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.7) 100%),
        /* Base overlay at 50% opacity */
        rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(60px, 15vw, 139px);
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.5;
    margin-bottom: 10px;
    text-transform: uppercase;

}


.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 5vw, 61px);
    font-weight: 400;
    color: #FFEDCF;
    margin-bottom: 5px;
    line-height: 1.5;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    color: #FFEDCF;
    line-height: 1.5;
    letter-spacing: 0.5px;
    max-width: 750px;
    margin: 0 auto 40px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Hero-specific button sizing only - colors use default .btn styles */
.hero-buttons .btn {
    text-align: center;
}

/* ===== Hero Section End ===== */

/* ===== Homepage About Section Start ===== */

.hp_about-section {
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 15px;
}

.hp_about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    align-items: center;
}

.hp_about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hp_about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hp_about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hp_section-label {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
}

.hp_section-title {
    font-family: var(--font-title);
    font-size: 39px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.5;
}

.hp_section-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #414141;
    text-transform: uppercase;
    margin: 0;
}

.hp_about-description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #414141;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin: 0;
}

.hp_about-content .btn {
    margin-top: 10px;
}

/* ===== Homepage About Section End ===== */

/* ===== About Page Section Start ===== */

.about-section {
    background-color: #FFFFFF;
    padding: 40px 0px;
}

.about-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 50px 20px;
    align-items: center;
}

.about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* Reusable section title style */
.section-title {
    font-family: var(--font-title);
    font-size: 39px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.5;
}

/* Reusable section subtitle style */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #414141;
    text-transform: uppercase;
    margin: 0;
}

.about-description {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #414141;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin: 0;
}

.about-content .btn {
    margin-top: 10px;
}

/* ===== About Page Section End ===== */

/* ===== Homepage Menu Section Start ===== */

.menu-section {
    background-color: #FFFFFF;
    padding-top: 15px;
    padding-bottom: 60px;
}

.menu-header {
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto 50px;
    padding: 0 20px;
}

.menu-header .section-title {
    margin-bottom: 20px;
}

.menu-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.menu-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.menu-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.menu-card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-card-title {
    font-family: var(--font-secondary);
    font-size: 100px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1;
    margin: 0;
    text-transform: capitalize;
}

.menu-card-description {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
    max-width: 450px;
    text-transform: uppercase;
}

/* ===== Homepage Menu Section End ===== */

/* ===== Events Section Start ===== */

.events-section {
    background-color: #FFFFFF;
    padding-top: 32px;
    padding-bottom: 80px;
}

.events-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
}

.events-header {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.events-header .section-title {
    margin: 0;
}

.view-all-btn {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-all-btn:hover {
    color: var(--color-accent);
}

.view-all-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.view-all-btn:hover .view-all-arrow {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: #FFFFFF;
}

.view-all-arrow i {
    font-size: 14px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Featured Event Card (spans all 3 columns: image 2 cols, content 1 col) */
.event-card-featured {
    grid-column: 1 / -1;
    display: grid !important;
    grid-template-columns: 2fr 1fr;
    gap: 26px 22px !important;
    align-items: end;
    background-color: transparent;
}

.event-card-featured .event-image {
    border-radius: 8px;
    overflow: hidden;
}

.event-card-featured .event-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
}

.event-card-featured .event-content {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.event-card-featured .event-title {
    font-size: 25px;
}

.event-card-featured .event-description {
    font-size: 20px;
}


/* Regular Event Cards */
.event-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-card .event-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    min-height: 90px;
    object-fit: cover;
    display: block;
}

.event-card .event-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Event Title */
.event-title {
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0;
}

/* Event Description */
.event-description {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: #414141;
    line-height: 1.4;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
}

/* Featured event specific styling */
.event-card-featured .event-title {
    font-size: 25px;
}

/* Event Form Card (within grid) */
.event-form-card {
    display: flex;
    flex-direction: column;
    justify-content: end;

}

/* Events Page - Featured Event Layout (image + form on top, content below) */
.event-card-featured-page {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-card-featured-page .featured-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.event-card-featured-page .event-image {
    border-radius: 8px;
    overflow: hidden;
}

.event-card-featured-page .event-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
}

.event-card-featured-page .event-form-card {
    display: flex;
    flex-direction: column;
    justify-content: end;

}

.event-card-featured-page .event-content {
    max-width: 66.666%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.event-card-featured-page .event-title {
    font-size: 30px;
}

.event-card-featured-page .event-description {
    font-size: 21px;
}

/* ===== Events Section End ===== */

/* ===== Homepage Gallery Section Start ===== */

.hp_gallery-section {
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 80px;
    position: relative;
}

.hp_gallery-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
}

.hp_gallery-title {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

/* Homepage Gallery Swiper */
.hp_gallery-swiper {
    position: relative;
    padding: 0 60px;
}

.hp_gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 22px;
}

.hp_gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
}

.hp_gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hp_gallery-item:hover img {
    transform: scale(1.05);
}

/* Homepage Swiper Navigation Arrows */
.hp_gallery-swiper .swiper-button-prev,
.hp_gallery-swiper .swiper-button-next {
    color: #FFEDCF;
    width: 44px;
    height: 44px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hp_gallery-swiper .swiper-button-prev {
    left: 0;
}

.hp_gallery-swiper .swiper-button-next {
    right: 0;
}

.hp_gallery-swiper .swiper-button-prev::after,
.hp_gallery-swiper .swiper-button-next::after {
    font-size: 28px;
    font-weight: 300;
}

.hp_gallery-swiper .swiper-button-prev:hover,
.hp_gallery-swiper .swiper-button-next:hover {
    color: var(--color-primary);
}

/* Homepage Swiper Pagination */
.hp_gallery-swiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}

.hp_gallery-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    opacity: 1;
    margin: 0 6px;
    transition: background-color 0.2s ease;
}

.hp_gallery-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}

/* ===== Homepage Gallery Section End ===== */

/* ===== Homepage Image Banner Section Start ===== */

.hp_image-banner-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.hp_image-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hp_image-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* ===== Homepage Image Banner Section End ===== */

/* ===== Homepage Contact Section Start ===== */

.hp_contact-section {
    background-color: #FFFFFF;
    padding: 0;
}

.hp_contact-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.hp_contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 80px 60px 80px 144px;
    max-width: calc(var(--max-width) / 2);
    margin-left: auto;
}

.hp_contact-content .hp_section-label {
    margin-bottom: 0;
}

.hp_contact-content .hp_section-title {
    margin-bottom: 10px;
}

.hp_contact-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hp_contact-address p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #414141;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.hp_contact-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.hp_contact-chat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hp_chat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: #414141;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hp_chat-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp_chat-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #414141;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hp_chat-icons a:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.hp_contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 400;
    color: #414141;
}

.hp_contact-info .hp_contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp_contact-info .hp_contact-phone i {
    font-size: 14px;
}

.hp_contact-separator {
    opacity: 0.5;
    font-weight: 300;
}

.hp_contact-hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hp_contact-hours p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Homepage Google Maps */
.hp_contact-map {
    width: 100%;
    min-height: 450px;
    border-radius: 0;
    overflow: hidden;
}

.hp_contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

/* ===== Homepage Contact Section End ===== */

/* ===== About Page Contact Section Start ===== */

.bottom-contact-section {
    background-color: #FFFFFF;
    padding-bottom: 20px;
}

.contact-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 80px 60px 80px 144px;
    max-width: calc(var(--max-width) / 2);
    margin-left: auto;
}

.contact-content .section-label {
    margin-bottom: 0;
}

.contact-content .section-title {
    margin-bottom: 10px;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-address p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    color: #414141;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.contact-chat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: #414141;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #414141;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.chat-icons a:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 400;
    color: #414141;
}

.contact-info .contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info .contact-phone i {
    font-size: 14px;
}

.contact-separator {
    opacity: 0.5;
    font-weight: 300;
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-hours p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Google Maps */
.contact-map {
    width: 100%;
    min-height: 450px;
    border-radius: 0;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

/* ===== About Page Contact Section End ===== */

/* ===== Homepage Blog Section Start ===== */

.hp_blog-section {
    background-color: #FFFFFF;
    padding-top: 0px;
    padding-bottom: 30px;
}

.hp_blog-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
}

.hp_blog-title {
    text-align: center;
    margin-bottom: 15px;
}

/* Homepage Blog Posts Grid */
.hp_blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Homepage Blog Card */
.hp_blog-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

.hp_blog-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hp_blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hp_blog-card:hover .hp_blog-card-image img {
    transform: scale(1.05);
}

.hp_blog-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex-grow: 1;
}

.hp_blog-card-title {
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 400;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0;
}

.hp_blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
    flex-grow: 1;
}

.hp_blog-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
}

.hp_blog-card-link:hover {
    color: #b33507;
}

.hp_link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hp_link-arrow i {
    font-size: 12px;
}

.hp_blog-card-link:hover .hp_link-arrow {
    background-color: var(--color-accent);
    color: #FFFFFF;
}

/* Homepage Blog CTA */
.hp_blog-cta {
    display: flex;
    justify-content: center;
}

/* ===== Homepage Blog Section End ===== */

/* ===== Blogs Page Section Start ===== */

.blogs-page-section {
    padding: 80px 0 120px;
    background-color: #FFFFFF;
}

.blogs-page-section .hp_blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.blogs-page-section .hp_blog-container {
    padding: 0 80px 40px;
}

.no-posts-message {
    text-align: center;
    font-size: 18px;
    color: #666;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* Blogs Pagination */
.blogs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
}

.blogs-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #333;
    background-color: #f5f5f5;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.blogs-pagination .page-numbers:hover {
    background-color: var(--color-primary);
    color: #000;
}

.blogs-pagination .page-numbers.current {
    background-color: var(--color-accent);
    color: #FFFFFF;
}

.blogs-pagination .prev,
.blogs-pagination .next {
    background-color: transparent;
    border: 1px solid #ddd;
}

.blogs-pagination .prev:hover,
.blogs-pagination .next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ===== Blogs Page Section End ===== */

/* ===== Homepage FAQ Section Start ===== */

.hp_faq-section {
    position: relative;
    padding-bottom: 180px;
    padding-top: 80px;
    overflow: hidden;
    background-color: #000000;
}

.hp_faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hp_faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(222, 67, 10, 0.2) 100%);
    z-index: 2;
}

.hp_faq-container {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
}

.hp_faq-title {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

/* Homepage FAQ Accordion */
.hp_faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.hp_faq-item {
    background-color: #FFEDCF;
    border-radius: 8px;
    overflow: hidden;
}

.hp_faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: padding 0.3s ease;
}

.hp_faq-question-text {
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.5;
}

.hp_faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hp_faq-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Homepage Closed state - show as plus (rotated X) */
.hp_faq-item:not(.active) .hp_faq-toggle i {
    transform: rotate(45deg);
}

/* Homepage Open state - show as X */
.hp_faq-item.active .hp_faq-toggle i {
    transform: rotate(0deg);
}

/* Homepage FAQ Answer */
.hp_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hp_faq-answer-inner {
    padding: 0 30px 25px 30px;
}

.hp_faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
}

/* ===== Homepage FAQ Section End ===== */

/* ===== About Page FAQ Section Start ===== */

.faq-section {
    position: relative;
    padding-bottom: 180px;
    padding-top: 80px;
    overflow: hidden;
    background-color: #000000;

}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(222, 67, 10, 0.2) 100%);
    z-index: 2;
}

.faq-container {
    position: relative;
    z-index: 3;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
}

.faq-title {
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

/* About Page FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFEDCF;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: padding 0.3s ease;
}

.faq-question-text {
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.5;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Closed state - show as plus (rotated X) */
.faq-item:not(.active) .faq-toggle i {
    transform: rotate(45deg);
}

/* Open state - show as X */
.faq-item.active .faq-toggle i {
    transform: rotate(0deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin: 0;
    text-transform: uppercase;
}

/* ===== About Page FAQ Section End ===== */

/* ===== Reservation Section Start ===== */

.reservation-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 37, 28, 0.9);
    z-index: 2;
}

.reservation-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.reservation-logo img {
    max-height: 90px;
    width: auto;
    margin-bottom: 30px;
}

.reservation-title {
    font-family: var(--font-title);
    font-size: 39px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0 0 15px;
}

.reservation-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

/* Form Styles */
.reservation-form {
    width: 100%;
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-full {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group-icon {
    position: relative;
}

.form-group-icon i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    font-size: 18px;
    pointer-events: none;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    border: 1px solid #FFEDCF;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: #FFFFFF;
    opacity: 1;
}

.form-group select {
    cursor: pointer;
    padding-right: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFEDCF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.form-group select option {
    background-color: #333;
    color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Style for date and time inputs */
.form-group input[type="date"],
.form-group input[type="time"] {
    position: relative;
    padding-right: 50px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Style for number input */
.form-group input[type="number"] {
    padding-right: 50px;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-submit {
    margin-top: 30px;
}

#reservation-form .btn-loading {
    display: none;
}

/* ===== Light Theme Overrides ===== */
.reservation-light .form-group input,
.reservation-light .form-group select {
    color: #333333;
    border: 1px solid #333333;
}

.reservation-light .form-group input::placeholder {
    color: #333333;
    opacity: 1;
}

.reservation-light .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.reservation-light .form-group select option {
    background-color: #FFFFFF;
    color: #333333;
}

.reservation-light .form-group input:focus,
.reservation-light .form-group select:focus {
    border-color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.02);
}

.reservation-light .form-group-icon i {
    color: #333333;
}

.reservation-dark .form-message.success {
    color: #F5B716;
}

.reservation-light .form-message.success {
    color: #F5B716;
}

/* ===== White Background Variant ===== */
.reservation-section--white {
    background-color: #FFFFFF;
    margin-bottom: 40px;
}

.reservation-section--white .reservation-title,
.reservation-section--white .reservation-subtitle {
    color: #DE430A;
}


.reservation-section--white .reservation-logo img {
    filter: brightness(0) saturate(100%);
}

/* Contact Page Reservation Layout */
.reservation-section--contact {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.reservation-side-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.reservation-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reservation-form-wrapper {
    flex: 0 0 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-section--contact .reservation-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.reservation-section--contact .reservation-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 37, 28, 0.9);
    z-index: 2;
}

.reservation-section--contact .reservation-content {
    position: relative;
    z-index: 3;
    padding: 60px 40px;
    width: 100%;
    max-width: 600px;
}

/* Contact Section Page Variant */
.hp_contact-section--page {
    padding-bottom: 80px;
}

/* Contact Info */
.reservation-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    color: #FFEDCF;
    font-size: 13px;
    font-weight: 400;
    flex-wrap: wrap;
}

.reservation-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reservation-phone i {
    font-size: 14px;
}

.reservation-separator {
    opacity: 0.5;
}

.reservation-hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.reservation-hours p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Reservation Section End ===== */

/* ===== Footer Start ===== */

.site-footer {
    width: 100%;
    position: relative;
}

.footer-wave {
    width: 100%;
    height: 150px;
    background-color: transparent;
    background-image: var(--footer-wave-url);
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 100%;
    pointer-events: none;
    margin-top: -50px;
    margin-bottom: -2px;
    position: relative;
    z-index: 20;
}

.footer-main {
    position: relative;
    background-color: #284934;
    color: #FFEDCF;
    padding: 60px 0 50px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* Footer Left Column */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Row 1: Logo + Address */
.footer-row-1 {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-logo img {
    max-height: 140px;
    width: auto;
}

.footer-logo .site-title-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-address {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.footer-address p {
    margin: 0;
}

/* Row 2: Phone + Hours */
.footer-row-2 {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-phone i {
    font-size: 14px;
}

.footer-separator {
    opacity: 0.5;
    font-weight: 300;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-hours p {
    margin: 0;
}

/* Row 3: Social Links */
.footer-row-3 {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-social,
.footer-chat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    /*     background-color: #FFEDCF; */
    color: #284934;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* .social-icons a:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
} */

/* Footer Right Column */
.footer-right {
    flex-shrink: 0;
}

.footer-navigation .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-navigation .footer-menu li {
    list-style: none;
}

.footer-navigation .footer-menu li a {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-navigation .footer-menu li a:hover {
    color: var(--color-primary);
}

/* Copyright Bar */
.footer-copyright {
    background-color: #FFFFFF;
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 1px;
}

/* ===== Footer End ===== */


/* ===== Utilities Start ===== */

.icon-16 {
    font-size: 16px !important;
}

.btn-short {
    padding: 4px 10px !important;
    min-width: none !important;
}


/* ===== Utilities End ===== */



/* ===== About Page Hero Section Start ===== */

.about-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.about-hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.about-hero_content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.about-hero_diamond {
    max-width: 305px;
    height: auto;
}

.about-hero_title-bar {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 20px 0;
}



.about-hero_title-wrapper {
    display: flex;
    align-items: center;
    gap: 0px 20px;
    padding-left: max(144px, calc((100vw - 1440px) / 2 + 144px));
}

.about-hero_title {
    color: var(--color-primary);
    font-family: var(--font-secondary);
    font-size: 49px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

.about-hero_wave {
    flex: 1;
    height: auto;
    display: block;
    min-width: 0;

}

.story-bottom-section {
    padding-top: 20px;
}

.story-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    gap: 50px;
}

.story-bottom-title {
    font-family: var(--font-title);
    font-size: 31px;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1.5;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 50px;
    width: 361px;
    margin: 0 auto;
}

.story-bottom-title::before,
.story-bottom-title::after {
    content: '"';
    font-size: 80px;
    color: var(--color-accent);
    position: absolute;
    line-height: 1;
}

.story-bottom-title::before {
    content: '"';
    left: 0;
    bottom: 30%;
}

.story-bottom-title::after {
    content: '"';
    right: 0;
    bottom: 0;
}

/* ===== About Page Hero Section END ===== */


/* ===== Events Page Form Styles ===== */

.form-title {
    font-size: 39px;
    font-weight: 400;
    color: var(--color-accent);
    font-family: var(--font-title);
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 150%;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-field {
    position: relative;
    border: 1px solid rgba(65, 65, 65, 1);
}

.form-field input {
    font-family: var(--font-body);
    width: 100%;
    padding: 10px 10px;
    border: none;
    font-size: 16px;
    color: rgba(65, 65, 65, 1);
    text-transform: uppercase;
    background: transparent;
}

.form-field input:focus {
    outline: none;
}

.field-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.5;
}

/* ===== Events Page END ===== */

/* ===== Responsive ===== */

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .header-container {
        padding: 20px 40px;
    }

    .header-hours {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-16 {
        font-size: 14px;
    }

    /* Hero tablet */
    .hero-section {
        min-height: 80vh;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-description {
        max-width: 600px;
    }

    /* About tablet */
    .about-container,
    .hp_about-container {
        padding: 0 40px;
        gap: 40px;
    }

    .section-title,
    .hp_section-title {
        font-size: 32px;
    }

    .about-description,
    .hp_about-description {
        font-size: 18px;
    }

    /* Menu tablet */
    .menu-container {
        padding: 0 40px;
    }

    .menu-cards {
        gap: 30px;
    }

    .menu-card {
        min-height: 450px;
    }

    .menu-card-title {
        font-size: 70px;
    }

    .menu-card-description {
        font-size: 14px;
    }

    /* Reservation tablet */
    .reservation-content {
        max-width: 700px;
    }

    .reservation-form {
        max-width: 600px;
    }

    /* Events tablet */
    .events-container {
        padding: 0 40px;
    }

    .events-grid {
        gap: 20px;
    }

    .event-card-featured {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }

    .event-card-featured .event-content {
        gap: 15px;
    }

    .event-card-featured .event-title {
        font-size: 22px;
    }

    .event-card-featured .event-description {
        font-size: 18px;
    }

    .event-title {
        font-size: 22px;
    }

    .event-description {
        font-size: 10px;
    }

    .event-card .event-image img {
        height: 220px;
    }



    /* Events Page Featured - tablet */
    .event-card-featured-page .featured-top-row {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }

    .event-card-featured-page .event-content {
        max-width: 60%;
    }

    .event-card-featured-page .event-title {
        font-size: 26px;
    }

    .event-card-featured-page .event-description {
        font-size: 18px;
    }

    /* Gallery tablet */
    .hp_gallery-container {
        padding: 0 40px;
    }

    .hp_gallery-swiper {
        padding: 0 50px;
    }

    .hp_gallery-grid {
        gap: 16px;
    }

    .hp_gallery-swiper .swiper-button-prev::after,
    .hp_gallery-swiper .swiper-button-next::after {
        font-size: 24px;
    }

    /* Image Banner tablet */
    .hp_image-banner-section {
        min-height: 400px;
    }

    /* Contact tablet */
    .contact-content,
    .hp_contact-content {
        padding: 60px 40px 60px 40px;
        max-width: 100%;
        margin-left: 0;
    }

    .contact-address p,
    .hp_contact-address p {
        font-size: 18px;
    }

    .contact-actions,
    .hp_contact-actions {
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-map,
    .hp_contact-map {
        min-height: 400px;
    }

    .contact-map iframe,
    .hp_contact-map iframe {
        min-height: 400px;
    }

    /* Blog tablet */
    .hp_blog-container {
        padding: 0 40px;
    }

    .hp_blog-grid {
        gap: 30px;
    }

    .hp_blog-card-title {
        font-size: 22px;
    }

    .hp_blog-card-excerpt {
        font-size: 14px;
    }

    /* Blogs Page tablet */
    .blogs-page-section {
        padding: 60px 0 100px;
    }

    .blogs-page-section .hp_blog-container {
        padding: 0 40px 30px;
    }

    .blogs-page-section .hp_blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* FAQ tablet */
    .faq-container,
    .hp_faq-container {
        padding: 0 40px;
    }

    .faq-question-text,
    .hp_faq-question-text {
        font-size: 22px;
    }

    .faq-question,
    .hp_faq-question {
        padding: 20px 25px;
    }

    .faq-answer-inner,
    .hp_faq-answer-inner {
        padding: 0 25px 20px 25px;
    }

    /* Footer tablet */
    .footer-container {
        padding: 0 40px;
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
    }

    .footer-navigation .footer-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px 40px;
        text-align: left;
    }

    .footer-row-1 {
        gap: 30px;
    }

    .footer-address {
        font-size: 18px;
    }

    /* About Page */
    .about-hero_title-wrapper {
        padding-left: 40px;
    }

    .about-hero_title {
        font-size: 32px;
    }

    .about-hero_diamond {
        max-width: 200px;
    }

    .story-bottom-title {
        font-size: 28px;
    }

    .story-bottom-section {
        padding-top: 44px;
    }

    .story-bottom-content {
        gap: 26px;
    }

    /* Events Page Form */
    .form-title {
        font-size: 28px;
    }

    .form-field input {
        font-size: 14px;
    }

    .form-field img {
        width: 16px;
        height: 16px;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {

    /* Header layout adjustments */
    .header-container {
        padding: 15px 20px;
    }

    .header-right {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    /* Hide top row info on mobile */
    .header-top-row {
        display: none;
    }

    /* Show hamburger button */
    .mobile-menu-toggle {
        display: flex;
    }

    .about-hero {
        height: 300px;
    }

    .about-hero_overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 1) 100%);
    }

    .bottom-contact-section {
        padding-bottom: 80px;
    }

    /* Mobile menu panel */
    .header-bottom-row {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, #6F212F 0%, #5a1a27 100%);
        border-top: 1px solid rgba(255, 237, 207, 0.2);
        flex-direction: column;
        align-items: center;
        gap: 0;
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);

        /* Animation setup */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .header-bottom-row.toggled {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 30px 20px 40px;
    }

    /* Navigation styling for mobile */
    .main-navigation {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .main-navigation .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-navigation .nav-menu li:last-child {
        border-bottom: none;
    }

    .main-navigation .nav-menu li a {
        display: block;
        padding: 16px 20px;
        font-size: 18px;
        letter-spacing: 2px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .main-navigation .nav-menu li a:hover,
    .main-navigation .nav-menu li a:focus {
        background-color: rgba(245, 183, 22, 0.1);
        color: var(--color-primary);
    }

    /* Header actions styling for mobile */
    .header-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .header-actions .btn-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 30px;
        font-size: 15px;
    }

    .lang-switcher {
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }

    .lang-switcher:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Logo adjustments */
    .header-logo img {
        max-height: 60px;
    }

    /* Other mobile adjustments */
    .hero-section {
        min-height: 600px;
    }

    .menu-grid,
    .events-grid,
    .gallery-grid,
    .hp_gallery-grid {
        grid-template-columns: 1fr;
    }

    .event-form-card {
        padding-bottom: 10px;
    }

    .gallery-wrapper {
        padding: 0 40px;
    }

    .gallery-item img,
    .hp_gallery-item img {
        height: 250px;
    }

    .icon-16 {
        font-size: 12px;
    }

    /* Hero mobile */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        letter-spacing: 4px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* About mobile */
    .about-section,
    .hp_about-section {
        padding: 50px 0;
    }

    .about-container,
    .hp_about-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image,
    .hp_about-image {
        order: 1;
    }

    .about-content,
    .hp_about-content {
        order: 2;
        align-items: center;
        text-align: center;
    }

    .section-label,
    .hp_section-label {
        font-size: 16px;
    }

    .section-title,
    .hp_section-title {
        font-size: 28px;
    }

    .section-subtitle,
    .hp_section-subtitle {
        font-size: 14px;
    }

    .about-description,
    .hp_about-description {
        font-size: 16px;
    }

    /* Menu mobile */
    .menu-section {
        padding: 50px 0;
    }

    .menu-header {
        margin-bottom: 30px;
    }

    .menu-container {
        padding: 0 20px;
    }

    .menu-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-card {
        min-height: 400px;
    }

    .menu-card-content {
        padding: 30px 20px;
    }

    .menu-card-title {
        font-size: 60px;
    }

    .menu-card-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .events-section {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .events-container {
        padding: 0 20px;
    }

    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .view-all-btn {
        font-size: 14px;
    }

    .view-all-arrow {
        width: 32px;
        height: 32px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-card-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card-featured .event-image img {
        max-height: 350px;
        object-fit: cover;
        height: auto;
    }

    .event-card-featured .event-content {
        gap: 15px;
    }

    .event-card-featured .event-title {
        font-size: 20px;
    }

    .event-card-featured .event-description {
        font-size: 16px;
    }

    .event-title {
        font-size: 20px;
    }

    .event-description {
        font-size: 8px;
    }

    .event-card .event-image img {
        height: 220px;
    }

    .event-card .event-content {
        padding: 15px 0;
        gap: 10px;
    }

    .event-form-card {
        grid-column: 1 / -1;
    }

    /* Events Page Featured - mobile */
    .event-card-featured-page .featured-top-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card-featured-page .featured-top-row .event-form-card {
        order: -1;
    }

    .event-card-featured-page .event-image img {
        max-height: none !important;
        min-height: 0 !important;
        height: auto;
        object-fit: contain;
    }

    .event-card-featured-page .event-content {
        max-width: 100%;
    }

    .event-card-featured-page .event-title {
        font-size: 22px;
    }

    .event-card-featured-page .event-description {
        font-size: 16px;
    }

    /* Gallery mobile */
    .hp_gallery-section {
        padding: 50px 0;
    }

    .hp_gallery-container {
        padding: 0 20px;
    }

    .hp_gallery-title {
        margin-bottom: 30px;
    }

    .hp_gallery-swiper {
        padding: 0 40px;
    }

    .hp_gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
    }

    .hp_gallery-swiper .swiper-button-prev,
    .hp_gallery-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .hp_gallery-swiper .swiper-button-prev::after,
    .hp_gallery-swiper .swiper-button-next::after {
        font-size: 20px;
    }

    .hp_gallery-swiper .swiper-pagination {
        margin-top: 30px;
    }

    .hp_gallery-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }

    /* Image Banner mobile */
    .hp_image-banner-section {
        min-height: 300px;
    }

    /* Contact mobile */
    .contact-container,
    .hp_contact-container {
        grid-template-columns: 1fr;
    }

    .contact-content,
    .hp_contact-content {
        padding: 50px 20px;
        text-align: center;
        align-items: center;
        max-width: 100%;
        margin-left: 0;
    }

    .contact-address,
    .hp_contact-address {
        align-items: center;
    }

    .contact-address p,
    .hp_contact-address p {
        font-size: 16px;
    }

    .contact-actions,
    .hp_contact-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-chat,
    .hp_contact-chat {
        flex-direction: column;
        gap: 12px;
    }

    .contact-info,
    .hp_contact-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .contact-separator,
    .hp_contact-separator {
        display: none;
    }

    .contact-hours,
    .hp_contact-hours {
        align-items: center;
    }

    .contact-hours p,
    .hp_contact-hours p {
        font-size: 11px;
    }

    .contact-map,
    .hp_contact-map {
        min-height: 300px;
    }

    .contact-map iframe,
    .hp_contact-map iframe {
        min-height: 300px;
    }

    /* Contact Page Reservation mobile */
    .reservation-section--contact {
        flex-direction: column;
        min-height: auto;
    }

    .reservation-side-image {
        display: none;
    }

    .reservation-form-wrapper {
        flex: 0 0 auto;
        width: 100%;
    }

    .reservation-section--contact .reservation-content {
        padding: 50px 20px;
        max-width: 100%;
    }

    .hp_contact-section--page {
        padding-bottom: 100px;
    }

    /* Blog mobile */
    .hp_blog-section {
        padding: 50px 0;
    }

    .hp_blog-container {
        padding: 0 20px;
    }

    .hp_blog-title {
        margin-bottom: 30px;
    }

    .hp_blog-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .hp_blog-card-image {
        margin-bottom: 15px;
    }

    .hp_blog-card-title {
        font-size: 20px;
    }

    .hp_blog-card-excerpt {
        font-size: 14px;
    }

    .hp_blog-card-link {
        font-size: 14px;
    }

    /* Blogs Page mobile */
    .blogs-page-section {
        padding: 50px 0 80px;
    }

    .blogs-page-section .hp_blog-container {
        padding: 0 20px 30px;
    }

    .blogs-page-section .hp_blog-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .blogs-pagination {
        gap: 6px;
        flex-wrap: wrap;
    }

    .blogs-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 6px 12px;
        font-size: 14px;
    }

    /* FAQ mobile */
    .faq-section,
    .hp_faq-section {
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .faq-container,
    .hp_faq-container {
        padding: 0 20px;
    }

    .faq-title,
    .hp_faq-title {
        margin-bottom: 30px;
    }

    .faq-accordion,
    .hp_faq-accordion {
        gap: 12px;
    }

    .faq-question,
    .hp_faq-question {
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-question-text,
    .hp_faq-question-text {
        font-size: 18px;
    }

    .faq-toggle,
    .hp_faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .faq-toggle i,
    .hp_faq-toggle i {
        font-size: 14px;
    }

    .faq-answer-inner,
    .hp_faq-answer-inner {
        padding: 0 20px 18px 20px;
    }

    .faq-answer p,
    .hp_faq-answer p {
        font-size: 14px;
    }

    /* Reservation mobile */
    .reservation-section {
        min-height: auto;
    }

    .reservation-content {
        padding: 50px 20px;
    }

    .reservation-logo img {
        max-height: 70px;
        margin-bottom: 25px;
    }

    .reservation-title {
        font-size: 32px;
    }

    .reservation-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 18px;
        font-size: 13px;
    }

    .form-group-icon i {
        right: 18px;
        font-size: 16px;
    }

    .reservation-contact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .reservation-separator {
        display: none;
    }

    .reservation-hours {
        text-align: center;
    }

    .reservation-hours p {
        font-size: 11px;
    }

    /* Footer mobile */
    .footer-main {
        padding: 40px 0 35px;
    }

    .footer-container {
        padding: 0 20px;
        flex-direction: column;
        gap: 35px;
    }

    .footer-row-1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-logo img {
        max-height: 90px;
    }

    .footer-address {
        font-size: 16px;
    }

    .footer-row-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-separator {
        display: none;
    }

    .footer-hours {
        align-items: center;
    }

    .footer-row-3 {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-social,
    .footer-chat {
        flex-direction: column;
        gap: 12px;
    }

    .footer-right {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 30px;
    }

    .footer-navigation .footer-menu {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-navigation .footer-menu li a {
        font-size: 15px;
        padding: 5px 0;
        display: inline-block;
    }

    .footer-copyright {
        padding: 12px 15px;
    }

    .footer-copyright p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    /* About Page */

    .story-bottom-section {
        padding-top: 40px;
    }

    .story-bottom-content {
        gap: 26px;
    }

    .story-description {
        text-align: center;
    }

    /* Events Page */
    .form-title {
        font-size: 26px;
        margin: 0 0 14px 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .header-logo img {
        max-height: 50px;
    }

    .main-navigation .nav-menu li a {
        font-size: 16px;
        padding: 14px 15px;
    }

    .header-actions .btn-cta {
        max-width: 100%;
        padding: 14px 20px;
    }

    /* Events small mobile */
    .event-title {
        font-size: 18px;
    }

    .event-description {
        font-size: 14px;
    }

    .event-card-featured .event-title {
        font-size: 18px;
    }

    .event-card-featured .event-description {
        font-size: 14px;
    }

    .event-card-featured .event-content {
        gap: 12px;
    }

    .event-card .event-image img {
        height: 180px;
    }

    /* Events Page Featured - small mobile */
    .event-card-featured-page .event-title {
        font-size: 20px;
    }

    .event-card-featured-page .event-description {
        font-size: 14px;
    }

    /* Gallery small mobile */
    .hp_gallery-swiper {
        padding: 0 35px;
    }

    .hp_gallery-grid {
        gap: 10px;
    }

    .hp_gallery-swiper .swiper-button-prev,
    .hp_gallery-swiper .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .hp_gallery-swiper .swiper-button-prev::after,
    .hp_gallery-swiper .swiper-button-next::after {
        font-size: 16px;
    }

    /* Image Banner small mobile */
    .hp_image-banner-section {
        min-height: 250px;
    }

    /* Contact small mobile */
    .contact-address p,
    .hp_contact-address p {
        font-size: 14px;
    }

    .chat-icons a,
    .hp_chat-icons a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .contact-map,
    .hp_contact-map {
        min-height: 250px;
    }

    .contact-map iframe,
    .hp_contact-map iframe {
        min-height: 250px;
    }

    /* Blog small mobile */
    .hp_blog-card-title {
        font-size: 18px;
    }

    .hp_blog-card-excerpt {
        font-size: 13px;
    }

    /* FAQ small mobile */
    .faq-question,
    .hp_faq-question {
        padding: 15px;
        gap: 12px;
    }

    .faq-question-text,
    .hp_faq-question-text {
        font-size: 16px;
    }

    .faq-toggle,
    .hp_faq-toggle {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .faq-toggle i,
    .hp_faq-toggle i {
        font-size: 12px;
    }

    .faq-answer-inner,
    .hp_faq-answer-inner {
        padding: 0 15px 15px 15px;
    }

    .faq-answer p,
    .hp_faq-answer p {
        font-size: 13px;
    }

    /* Footer small mobile */
    .footer-address {
        font-size: 14px;
    }

    .footer-row-2 {
        font-size: 12px;
    }

    .footer-hours p {
        font-size: 11px;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    /* Events Page */

    .form-title {
        font-size: 22px;
    }
}

/* ===================================
   Section Separator
   =================================== */
.section-separator {
    width: 100%;
    padding: 25px 0;
    overflow: hidden;
    line-height: 0;
}

.section-separator svg {
    width: 100%;
    height: auto;
    min-height: 35px;
    display: block;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .section-separator {
        padding: 20px 0;
    }

    .section-separator svg {
        min-height: 45px;
        transform: scaleY(1.2);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .section-separator {
        padding: 12px 0;
    }

    .section-separator svg {
        min-height: 55px;
        transform: scaleY(1.5);
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .section-separator {
        padding: 8px 0;
    }

    .section-separator svg {
        min-height: 60px;
        transform: scaleY(2.5);
    }
}

/* ===================================
   Reusable Title Classes
   =================================== */

/* Accent colored title - 31px, used for offer sections etc. */
.section-title-accent {
    font-family: var(--font-title);
    font-size: 31px;
    font-weight: 400;
    color: var(--color-accent);
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

/* ===================================
   Special Offer Section
   =================================== */

.offer-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.special-offer-hero {
    height: 700px !important;
}

.offer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 144px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.offer-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
}

.offer-title {
    margin-bottom: 8px;
}

.offer-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: #414141;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-subtitle p {
    margin: 0 0 12px 0;
}

.offer-subtitle p:last-child {
    margin-bottom: 0;
}

.offer-menu {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #414141;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.offer-menu p {
    margin: 0 0 8px 0;
}

.offer-menu p:last-child {
    margin-bottom: 0;
}

.offer-menu ul,
.offer-menu ol {
    margin: 0 0 16px 0;
    padding-left: 20px;
}

.offer-menu li {
    margin-bottom: 6px;
}

.offer-menu strong {
    color: var(--color-accent);
}

/* Reversed Layout: Content Left, Image Right */
.offer-section--reversed .offer-container {
    direction: rtl;
}

.offer-section--reversed .offer-container>* {
    direction: ltr;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .offer-container {
        padding: 0 40px;
        gap: 40px;
    }

    .section-title-accent {
        font-size: 28px;
    }

    .offer-subtitle {
        font-size: 16px;
    }

    .offer-menu {
        font-size: 14px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .offer-section {
        padding: 40px 0;
    }

    .offer-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .special-offer-hero {
        height: auto !important;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 200px;
        background-color: #6F212F;
    }


    .offer-content {
        padding-top: 0;
        gap: 20px;
    }

    .section-title-accent {
        font-size: 26px;
    }

    .offer-subtitle {
        font-size: 15px;
    }

    .offer-menu {
        font-size: 14px;
    }

    /* Reset direction for mobile - always image on top */
    .offer-section--reversed .offer-container {
        direction: ltr;
    }

    .offer-section--reversed .offer-image {
        order: -1;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .section-title-accent {
        font-size: 24px;
    }

    .offer-subtitle {
        font-size: 14px;
    }

    .offer-menu {
        font-size: 13px;
    }
}