/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #140d08;
    overflow: hidden;
}

.hero-swiper {
    width: auto;
    height: 800px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #140d08;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(0deg,
            rgba(20, 13, 8, 0.65) 0%,
            rgba(20, 13, 8, 0.45) 45%,
            rgba(20, 13, 8, 0.10) 100%); */
    z-index: 2;
}

.hero-slide .container-xl {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding: 60px 0;
}

/* Swiper Custom Navigation & Pagination styling */
.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #a7824b !important;
    width: 24px;
    border-radius: 5px;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #ffffff;
    background: rgba(20, 13, 8, 0.35);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: #a7824b;
    color: #ffffff;
    border-color: #a7824b;
}

@media (max-width: 767.98px) {
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none !important;
    }
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 18px;
    border-left: 3px solid #a7824b;
    margin-bottom: 38px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: #a7824b;
    border: 2px solid #a7824b;
    border-radius: 3px;
    transition: background 0.28s ease, color 0.28s ease,
        border-color 0.28s ease, transform 0.2s ease,
        box-shadow 0.28s ease;
}

.hero-btn-primary:hover {
    background: #8a6a38;
    border-color: #8a6a38;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 130, 75, 0.35);
}

.hero-btn-primary .arrow {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.hero-btn-primary:hover .arrow {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #a7824b;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 3px;
    transition: background 0.28s ease, color 0.28s ease,
        border-color 0.28s ease, transform 0.2s ease,
        box-shadow 0.28s ease;
}

.hero-btn-secondary:hover {
    background: #a7824b;
    border-color: #a7824b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 130, 75, 0.35);
}

@media (max-width: 1024px) {
    .hero-swiper {
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 600px;
    }
}

@media (max-width: 767.98px) {
    .hero-swiper {
        height: auto;
        aspect-ratio: 16 / 10;
        max-height: none;
        min-height: 400px;
    }

    .hero-inner {
        padding: 30px 0;
    }

    .hero-title {
        font-size: clamp(1.4rem, 5vw, 1.9rem) !important;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.88rem !important;
        padding-left: 12px;
        margin-bottom: 24px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0 20px;
        font-size: 12px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: auto;
        aspect-ratio: 1 / 1;
        min-height: 360px;
    }

    .hero-inner {
        padding: 20px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════
   OUR STORY
   ═══════════════════════════════════════ */
.story-section {
    background-color: var(--coffee);
    padding: 120px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.story-images {
    position: relative;
    height: 480px;
}

.story-img-wrap {
    position: absolute;
    border-radius: 10px;
    border: 4px solid var(--biscuit);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-img-wrap:hover img {
    transform: scale(1.04);
}

.story-img-back {
    top: 0;
    left: 0;
    width: 55%;
    height: 70%;
    z-index: 1;
}

.story-img-front {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 66%;
    z-index: 2;
}

.story-content {
    display: flex;
    flex-direction: column;
}

.story-eyebrow {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--biscuit);
    margin-bottom: 12px;
}

.story-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: #EBE1D3;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.story-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #D2C4BE;
    margin-bottom: 16px;
}

.story-text:last-of-type {
    margin-bottom: 32px;
}

.story-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    height: 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none;
    color: #ffffff;
    background: var(--biscuit);
    border: 2px solid var(--biscuit);
    border-radius: 4px;
    align-self: flex-start;
    transition: background 0.28s ease, color 0.28s ease,
        border-color 0.28s ease, transform 0.2s ease,
        box-shadow 0.28s ease;
}

.story-btn .arrow {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.story-btn:hover {
    background: #8a6a38;
    border-color: #8a6a38;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(167, 130, 75, 0.35);
}

.story-btn:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-images {
        height: 380px;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .story-section {
        padding: 70px 0;
    }

    .story-images {
        height: 300px;
    }

    .story-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════ */
.events-section {
    background-color: #F5F0EA;
    padding: 120px 0;
}

.events-eyebrow {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--biscuit);
    margin-bottom: 12px;
}

.events-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--coffee);
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.event-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 13 / 16;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 20, 15, 0.15);
}

.event-image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.event-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card:hover .event-image-wrap img {
    transform: scale(1.06);
}

.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(20, 13, 8, 0.85) 0%,
            rgba(20, 13, 8, 0.35) 45%,
            rgba(20, 13, 8, 0) 100%);
    transition: background 0.3s ease;
}

.event-card:hover .event-overlay {
    background: linear-gradient(to top,
            rgba(20, 13, 8, 0.92) 0%,
            rgba(20, 13, 8, 0.45) 50%,
            rgba(20, 13, 8, 0) 100%);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--biscuit);
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 1.45vw, 1.4rem);
    font-weight: 300;
    line-height: 1.35;
    color: #EBE1D3;
    margin: 0 0 4px 0;
}

.event-card-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: #D2C4BE;
    margin: 0 0 16px 0;
}

.event-arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--biscuit);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
}

.event-arrow-circle .arrow-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--biscuit);
    transition: transform 0.3s ease, color 0.3s ease;
}

.event-card:hover .event-arrow-circle {
    background-color: var(--biscuit);
    border-color: var(--biscuit);
}

.event-card:hover .event-arrow-circle .arrow-svg {
    color: #ffffff;
    transform: translateX(3px);
}



@media (max-width: 1199.98px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .events-section {
        padding: 80px 0;
    }

    .events-title {
        margin-bottom: 35px;
    }
}

@media (max-width: 575.98px) {
    .events-section {
        padding: 70px 0;
    }

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

    .event-card {
        aspect-ratio: 4 / 5;
    }
}


/* ═══════════════════════════════════════
   MENUS
   ═══════════════════════════════════════ */
.menu-section {
    background-color: #0e0905;
    padding: 160px 0 120px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    gap: 55px;
    align-items: start;
}

.menu-col {
    display: flex;
    flex-direction: column;
}

/* Category header with thin gold rules above and below */
.menu-category-header {
    border-top: 1px solid rgba(167, 130, 75, 0.55);
    border-bottom: 1px solid rgba(167, 130, 75, 0.55);
    padding: 10px 0;
    text-align: center;
    margin-bottom: 40px;
}

.menu-category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--biscuit);
}

/* Capsule frame */
.menu-oval-frame {
    width: 350px;
    height: 500px;
    /* border: 1px solid var(--biscuit); */
    border-radius: 200px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    position: relative;
     /* background: linear-gradient(to bottom,
            rgba(8, 5, 2, 0.80) 0%,
            rgba(8, 5, 2, 0.00) 100%); */
}

.menu-oval-frame::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--biscuit);
    border-radius: 188px;
    pointer-events: none;
    z-index: 5;
   
}

/* Wrapper keeps title outside overflow:hidden so it renders fully */
.menu-center-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 350px;
}

/* Dark gradient so MENUS text reads clearly */
/* .menu-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background: linear-gradient(to bottom,
            rgba(8, 5, 2, 0.80) 0%,
            rgba(8, 5, 2, 0.00) 100%);
    z-index: 2;
    pointer-events: none;
} */

/* MENUS text — overlaid on top of the oval image */
.menu-main-title {
    position: absolute;
    top: -140px;
    left: 0;
    right: 0;
    z-index: 10;
    font-family: 'Lato', sans-serif;
    font-size: 54px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.menu-oval-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-oval-frame:hover img {
    transform: scale(1.04);
}

/* Menu items list */
.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-item {
    display: flex;
    flex-direction: column;
}

/* Name + price on same row */
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 9px;
}

.menu-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #EBE1D3;
    margin: 0;
    flex: 1;
}

.menu-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--biscuit);
    white-space: nowrap;
}

.menu-item-description,
.menu-item-description * {
    color: #ffffff !important;
}

.menu-item-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .menu-grid {
        grid-template-columns: 1fr 280px 1fr;
        gap: 35px;
    }

    .menu-oval-frame {
        width: 270px;
        height: 380px;
    }
}

@media (max-width: 991.98px) {
    .menu-section {
        padding: 90px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 600px;
        margin: 0 auto;
    }

    .menu-col-center {
        grid-row: 1;
    }

    .menu-center-wrap {
        width: 100%;
        max-width: 280px;
        flex-direction: column;
    }

    .menu-main-title {
        position: relative;
        top: 0;
        font-size: 32px;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    .menu-oval-frame {
        width: 280px;
        height: 420px;
        border-radius: 140px;
    }
}

@media (max-width: 575.98px) {
    .menu-section {
        padding: 70px 0;
    }

    .menu-main-title {
        font-size: 24px;
        margin-bottom: 18px;
        letter-spacing: 1px;
    }

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

    .menu-items-list {
        gap: 28px;
    }

    .menu-item-name {
        font-size: 13px;
    }

    .menu-item-price {
        font-size: 13.5px;
    }

    .menu-item-description {
        font-size: 12.5px;
    }
}


/* ═══════════════════════════════════════
   SERVICES BANNER SECTION
   ═══════════════════════════════════════ */
.services-banner-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    overflow: hidden;
}

.services-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 12, 8, 0.75);
    /* Lightened warm coffee overlay */
    z-index: 1;
}


.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.service-icon-wrap {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-wrap img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon-wrap img {
    transform: translateY(-5px);
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13.5px, 1.2vw, 15.5px);
    font-weight: 300;
    line-height: 1.5;
    color: #EBE1D3;
    margin: 0;
    letter-spacing: 0.08em;
}

@media (max-width: 991.98px) {
    .services-banner-section {
        padding: 80px 0;
    }
}

@media (max-width: 575.98px) {
    .services-banner-section {
        padding: 60px 0;
    }
}

/* ═══════════════════════════════════════
   COMING SOON PLACEHOLDERS
   ═══════════════════════════════════════ */
.gcd-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    border-radius: 12px;
    background: rgba(167, 130, 75, 0.03);
    border: 1px dashed rgba(167, 130, 75, 0.25);
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0 auto;
    transition: all 0.3s ease;
}

.gcd-coming-soon:hover {
    border-color: rgba(167, 130, 75, 0.5);
    background: rgba(167, 130, 75, 0.05);
    transform: translateY(-2px);
}

.gcd-cs-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(167, 130, 75, 0.1);
    color: var(--biscuit);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.gcd-cs-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(167, 130, 75, 0.15);
    animation: csPulse 2s infinite;
}

@keyframes csPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.gcd-cs-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #4a3629;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gcd-coming-soon.dark-theme {
    background: rgba(235, 225, 211, 0.02);
    border: 1px dashed rgba(235, 225, 211, 0.18);
}

.gcd-coming-soon.dark-theme:hover {
    border-color: rgba(235, 225, 211, 0.35);
    background: rgba(235, 225, 211, 0.04);
}

.gcd-coming-soon.dark-theme .gcd-cs-title {
    color: #EBE1D3;
}

.gcd-cs-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #8c7d75;
    max-width: 400px;
    margin: 0;
}

.gcd-coming-soon.dark-theme .gcd-cs-subtitle {
    color: #D2C4BE;
}


