/* ==========================================================================
   Homepage — Page background matches design (dark brown between sections)
   ========================================================================== */

body.home {
    background-color: #1b0b03;
}

/* ---- Banner / Hero ---- */

.banner {
    position: relative;
    min-height: 900px;
    background-color: #875f45;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* On mobile the header is fixed — pull banner behind it */
@media (max-width: 1100px) {
    .banner {
        margin-top: -70px;
    }
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 900px;
    background: var(--gradient-dark-overlay);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    text-align: center;
    padding: 0 20px;
    margin-top: 160px; /* push content down to vertical center area */
    width: max-content;
    max-width: 100%;
}

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 100%;
    width: 100%;
}

.banner-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.4;
}

.banner-subtitle {
    color: #b5d334;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    align-self: stretch;
}

.banner-subtitle strong {
    color: #fff;
    font-weight: 500;
}

.banner-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    padding: 23px 31px 23px 32px;
    border: 1px solid #fff;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.banner-btn:hover {
    background-color: #fff;
    color: #1a1a1a;
    transform: scale(1.05);
}


/* ---- Menu Categories (Block 3) ---- */

.home-menu {
    background-color: #F8F6EF;
    padding: 80px 0;
}

.home-menu .container {
    max-width: 1400px;
    padding: 0 40px;
}

.home-menu-header {
    text-align: center;
    margin-bottom: 32px;
}

.home-menu-header .section-label {
    color: #b5d334;
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.home-menu-header .section-heading {
    font-size: 40px;
    color: #1a1a1a;
    line-height: 1.4;
}

.home-menu-grid {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Featured card */
.home-menu-featured {
    display: flex;
    align-items: center;
    gap: 32px;
    background-color: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    flex: 1 1 0;
    min-width: 0;
}

.home-menu-featured-img {
    width: 260px;
    height: auto;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.home-menu-featured-info {
    display: flex;
    flex-direction: column;
    gap: 27px;
    flex-grow: 1;
    text-align: left;
}

.home-menu-featured-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    line-height: 1.4;
}

.home-menu-featured-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

.home-menu-featured-desc {
    color: #5b5b5b;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.4;
}

.home-menu-featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-menu-featured-bottom .btn-secondary {
    color: #b5d334;
    border-color: #b5d334;
    padding: 21px 31px;
    font-size: 14px;
}

.home-menu-featured-price {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}

.home-menu-price-prefix {
    font-size: 18px;
}

/* Small cards column */
.home-menu-cards {
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.home-menu-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #f3ece2;
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition);
}

.home-menu-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.home-menu-card-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}

.home-menu-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    text-align: left;
}

.home-menu-card-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.home-menu-card-link {
    color: #b5d334;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
}


/* ---- Special Event (Block 2) ---- */

.home-event {
    background-color: #F8F6EF;
    padding: 0 0 80px;
}

.home-event .container,
.home-review .container,
.home-about .container {
    max-width: 1400px;
    padding: 0 40px;
}

.home-event-card {
    position: relative;
    background-color: #fff;
    padding: 100px;
    border-radius: 56px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.home-event-bg {
    position: absolute;
    top: -15px;
    left: 8px;
    right: -28px;
    width: calc(100% + 28px);
    max-width: none;
    pointer-events: none;
}

.home-event-content {
    position: relative;
    z-index: 1;
    max-width: 586px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.home-event-title {
    color: #1a1a1a;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.home-event-text {
    color: #5b5b5b;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.4;
    margin-right: 26px;
}

.home-event-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.home-event .btn-primary {
    align-self: flex-start;
    margin-top: 32px;
}

.home-event .btn-primary:hover {
    filter: brightness(1.15);
}


/* ---- Review CTA (Block 4) ---- */

.home-review {
    padding: 0 0 80px;
    background-color: #F8F6EF;
}

.home-review-card {
    position: relative;
    background-color: #1b0b03;
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    font-family: var(--font-heading);
}

.home-review-bg {
    position: absolute;
    top: 0;
    left: 371px;
    width: calc(100% - 371px);
    max-width: 809px;
    height: auto;
    pointer-events: none;
}

.home-review-inner {
    position: relative;
    z-index: 1;
    padding: 72px;
}

.home-review-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.home-review-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
    text-align: left;
    line-height: 1.4;
}

.home-review-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.home-review-desc {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

.home-review .btn-primary {
    flex-shrink: 0;
}


/* ---- About / Why Choose Us (Block 1) ---- */

.home-about {
    background-color: #F8F6EF;
    padding: 0 0 80px;
}

.home-about-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Left column */
.home-about-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.home-about-main-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.home-about-bottom-row {
    display: flex;
    gap: 8px;
}

.home-about-video {
    flex: 1 1 0;
    min-height: 286px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-about-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

.home-about-play {
    position: relative;
    z-index: 1;
    width: 88px;
    height: 88px;
    background-color: #fff;
    border: 12px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.home-about-play:hover {
    transform: scale(1.05);
}

.home-about-play svg {
    width: 32px;
    height: 32px;
}

.home-about-contact-card {
    flex: 1 1 0;
    min-height: 286px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 136px;
    background-color: #f3ece2;
    padding: 0 32px;
    border-radius: 24px;
}

.home-about-contact-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-about-contact-label {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
}

.home-about-contact-phone {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 600;
}

.home-about-contact-hours {
    color: #565656;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
}

/* Right column */
.home-about-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 55px;
    font-size: 14px;
    text-align: left;
    min-width: 0;
}

.home-about-right-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-about-right-header .section-label {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.home-about-right-header .section-heading {
    font-size: 40px;
    color: #1a1a1a;
    line-height: 1.4;
}

.home-about-desc {
    color: #5b5b5b;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.4;
}

.home-about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.home-about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-about-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.home-about-feature p {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    flex-grow: 1;
    text-align: left;
}

.home-about-btn {
    align-self: flex-start;
    margin-top: 24px;
    padding-top: 21px;
    padding-bottom: 21px;
}


/* ---- Video Modal ---- */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.video-modal-close:hover {
    color: #b5d334;
}

.video-modal-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-modal-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.home-about-video[data-youtube] {
    cursor: pointer;
}


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

@media (max-width: 1100px) {
    .home-menu-grid {
        flex-direction: column;
        align-items: center;
    }

    .home-menu-featured {
        width: 100%;
    }

    .home-menu-cards {
        width: 100%;
        max-width: 380px;
    }

    .home-review-bg {
        left: auto;
        right: 0;
        width: 60%;
    }

    /* Banner */
    .banner {
        min-height: 650px;
        margin-top: -70px;
    }

    .banner-content {
        margin-top: 100px;
        gap: 48px;
    }

    .banner-overlay {
        height: 650px;
    }

    .banner-title {
        font-size: 52px;
    }

    .banner-subtitle {
        font-size: 24px;
    }

    /* Menu */
    .home-menu .container {
        padding: 0 24px;
    }

    .home-menu-header .section-heading {
        font-size: 32px;
    }

    .home-menu-featured {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-menu-featured-info {
        text-align: center;
    }

    .home-menu-featured-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* Event */
    .home-event .container,
    .home-review .container,
    .home-about .container {
        padding: 0 24px;
    }

    .home-event-card {
        padding: 60px 32px;
        border-radius: 40px;
    }

    .home-event-title {
        font-size: 32px;
    }

    /* Review */
    .home-review-inner {
        padding: 48px 32px;
    }

    .home-review-row {
        flex-direction: column;
        text-align: center;
    }

    .home-review-text {
        text-align: center;
    }

    .home-review-title {
        font-size: 24px;
    }

    .home-review-bg {
        left: 0;
        width: 100%;
        opacity: 0.3;
    }

    /* About */
    .home-about-grid {
        flex-direction: column;
        gap: 60px;
    }

    .home-about-right {
        margin-top: 0;
    }

    .home-about-right-header .section-heading {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    /* Banner */
    .banner {
        min-height: 500px;
    }

    .banner-overlay {
        height: 500px;
    }

    .banner-content {
        margin-top: 80px;
        gap: 40px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-text {
        align-items: center;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-btn {
        font-size: 12px;
        padding: 16px 24px;
    }

    /* Sections spacing */
    .home-menu,
    .home-about {
        padding: 32px 0;
    }

    .home-event,
    .home-review {
        padding: 0 0 32px;
    }

    /* ---- Menu section (block3 mobile) ---- */
    .home-menu .container {
        padding: 0 12px;
    }

    .home-menu-header {
        margin-bottom: 24px;
    }

    .home-menu-header .section-label {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .home-menu-header .section-heading {
        font-size: 32px;
    }

    .home-menu-featured {
        padding: 24px 11px;
        border-radius: 24px;
        gap: 24px;
    }

    .home-menu-featured-img {
        width: 230px;
    }

    .home-menu-featured-title {
        font-size: 14px;
    }

    .home-menu-featured-desc {
        font-size: 12px;
    }

    .home-menu-featured-bottom {
        gap: 29px;
        flex-direction: row;
        justify-content: center;
    }

    .home-menu-featured-price {
        font-size: 16px;
    }

    .home-menu-price-prefix {
        font-size: 12px;
    }

    .home-menu-featured-bottom .btn-secondary {
        padding: 22px 31px;
        font-size: 12px;
    }

    .home-menu-cards {
        width: 100%;
        max-width: none;
    }

    .home-menu-card {
        padding: 24px;
    }

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

    .home-menu-card-link {
        font-size: 12px;
    }

    /* ---- Event section (block2 mobile) ---- */
    .home-event .container {
        padding: 0 12px;
    }

    .home-event-card {
        position: relative;
        padding: 32px 11px 104%;
        border-radius: 32px;
        text-align: center;
        overflow: hidden;
    }

    .home-event-bg {
        position: absolute;
        top: 0;
        left: -28px;
        right: -28px;
        width: calc(100% + 56px);
        max-width: none;
        pointer-events: none;
    }

    .home-event-content {
        position: relative;
        z-index: 2;
        max-width: none;
        align-items: center;
        gap: 32px;
    }

    .home-event-title {
        font-size: 32px;
    }

    .home-event-text {
        font-size: 12px;
        margin-right: 0;
        text-align: center;
    }

    .home-event .btn-primary {
        align-self: center;
        margin-top: 0;
        padding: 23px 31px;
        font-size: 12px;
    }

    /* ---- Review section (block4 mobile) ---- */
    .home-review .container {
        padding: 0 12px;
    }

    .home-review-card {
        padding: 0;
        border-radius: 24px;
        background: rgba(27,11,3,0.85)
    }

    .home-review-bg {
        top: 138px;
        left: 0;
        width: 100%;
    }

    .home-review-inner {
        padding: 48px 11px;
    }

    .home-review-row {
        flex-direction: column;
        align-items: center;
        gap: 130px;
    }

    .home-review-text {
        text-align: center;
        max-width: 255px;
    }

    .home-review-title {
        font-size: 20px;
    }

    .home-review-desc {
        font-size: 14px;
    }

    .home-review .btn-primary {
        padding: 23px 31px;
        font-size: 12px;
    }

    /* ---- About section (block1 mobile) ---- */
    .home-about .container {
        padding: 0 12px;
    }

    .home-about-grid {
        gap: 32px;
        text-align: center;
        flex-direction: column-reverse;
    }

    .home-about-right {
        align-items: center;
    }

    .home-about-right-header {
        gap: 16px;
    }

    .home-about-right-header .section-label {
        font-size: 16px;
        text-align: center;
    }

    .home-about-right-header .section-heading {
        font-size: 32px;
    }

    .home-about-desc {
        font-size: 12px;
    }

    .home-about-features {
        gap: 12px;
    }

    .home-about-feature {
        font-size: 12px;
    }

    .home-about-feature p {
        font-size: 12px;
    }

    .home-about-btn {
        align-self: center;
        font-size: 12px;
    }

    /* Bottom row: video + contact card */
    .home-about-bottom-row {
        flex-direction: row;
        gap: 8px;
    }

    .home-about-video {
        min-height: 172px;
        border-radius: 12px;
        width: 172px;
        flex: 0 0 172px;
    }

    .home-about-video::before {
        border-radius: 12px;
    }

    .home-about-play {
        width: 55px;
        height: 55px;
        border-width: 8px;
    }

    .home-about-play svg {
        width: 20px;
        height: 20px;
    }

    .home-about-contact-card {
        min-height: 172px;
        padding: 0 9px;
        border-radius: 12px;
        gap: 62px;
        text-align: left;
    }

    .home-about-contact-label {
        font-size: 12px;
    }

    .home-about-contact-phone {
        font-size: 16px;
    }

    .home-about-contact-hours {
        font-size: 12px;
    }

    .home-about-main-img {
        border-radius: 24px;
    }
}
