/* ============================================================
   SANGEETHA — Hero Section
   Desktop > 1100px | Large Tablet 901-1100px | Tablet ≤ 900px | Mobile ≤ 767px
============================================================ */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Shell ─────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 960px;
    overflow: hidden;
    background: #C8921A;
}

/* ── Background image ──────────────────────────────────── */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* ── Child / character image — DESKTOP ─────────────────── */
.hero-child {
    position: absolute;
    bottom: 0;
    right: 2%;
    height: 85%;
    width: auto;
    z-index: 2;
    pointer-events: none;
    object-fit: contain;
    object-position: bottom right;
}

/* ── Content positioning wrapper ───────────────────────── */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
}

/* ── Text block ────────────────────────────────────────── */
.hero-text {
    max-width: 490px;
}

/* ── Heading ───────────────────────────────────────────── */
.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 700;
    color: #3D1F0D;
    line-height: 1.1;
    margin-bottom: 20px;
    -webkit-text-stroke: 0.6px currentColor;
    animation: fadeUp 0.7s ease-out 0.1s both;
}

.hero-heading em {
    font-style: italic;
    color: #80051D;
}

/* ── Decorative divider (hidden on desktop) ─────────────── */
.hero-divider {
    display: none;
    align-items: center;
    gap: 12px;
    margin: 8px auto 14px;
    width: 160px;
}

.hero-div-line {
    flex: 1;
    height: 1.5px;
    background: #80051D;
    display: block;
    border-radius: 2px;
}

.hero-div-icon {
    color: #80051D;
    font-size: 14px;
    line-height: 1;
}

/* ── Description ───────────────────────────────────────── */
.hero-sub {
    font-size: 16px;
    font-weight: 600;
    color: #3D1F0D;
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 36px;
    animation: fadeUp 0.7s ease-out 0.3s both;
}

/* ── Buttons ───────────────────────────────────────────── */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s ease-out 0.48s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--maroon);
    color: var(--cream);
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
.btn-hero-primary:hover {
    background: var(--deep-maroon);
    border-color: var(--deep-maroon);
    color: var(--cream);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--maroon);
    border: 2px solid var(--maroon);
    border-radius: var(--radius-pill);
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-hero-outline:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--cream);
}

/* Desktop: show Order Online, hide Reserve */
.btn-hero-reserve { display: none; }
/* Mobile/Tablet (≤900px): hide Order Online (in sticky bar), show Reserve */
@media (max-width: 900px) {
    .btn-hero-order  { display: none; }
    .btn-hero-reserve { display: inline-flex; }
}

/* ══════════════════════════════════════════════════════════
   LARGE TABLET — iPad Pro  901px – 1100px
══════════════════════════════════════════════════════════ */
@media (min-width: 901px) and (max-width: 1100px) {

    .hero {
        max-height: none;
        overflow: hidden;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: var(--nav-height);
        padding-inline: 1.5rem;
        z-index: 3;
    }

    .hero-text {
        width: 100%;
        max-width: 780px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-inline: auto;
    }

    .hero-heading {
        font-size: clamp(3.2rem, 5.5vw, 4.2rem);
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-divider {
        display: flex;
    }

    .hero-sub {
        font-size: 19px;
        text-align: center;
        max-width: 680px;
        margin-inline: auto;
        margin-bottom: 20px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-child {
        position: absolute;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        height: auto;
        width: 90%;
        max-width: none;
        object-fit: contain;
        object-position: bottom center;
        z-index: 2;
    }
}

/* ══════════════════════════════════════════════════════════
   TABLET  768px – 900px  (iPad portrait)
══════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 900px) {

    .hero-heading {
        font-size: clamp(2.6rem, 5.5vw, 3.6rem);
    }

    .hero-sub {
        font-size: 17px;
        max-width: 500px;
    }

    .hero-content {
        top: 6%;
        bottom: 52%;
    }
}

/* ══════════════════════════════════════════════════════════
   TABLET  ≤ 900px
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

    .hero {
        height: 100svh;
        min-height: 600px;
        max-height: none;
        overflow: hidden;
    }

    .hero-content {
        position: absolute;
        top: 5%;
        left: 0;
        right: 0;
        bottom: 55%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: var(--nav-height);
        padding-inline: 1.5rem;
        z-index: 3;
    }

    .hero-text {
        width: 100%;
        max-width: 650px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-inline: auto;
    }

    .hero-heading {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-divider {
        display: flex;
    }

    .hero-sub {
        font-size: 16px;
        text-align: center;
        max-width: 540px;
        margin-inline: auto;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .hero-actions {
        justify-content: center;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 13px;
        padding: 9px 22px;
    }

    .hero-child {
        position: absolute;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        height: auto;
        width: 90%;
        max-width: none;
        object-fit: contain;
        object-position: bottom center;
        z-index: 2;
    }
}

/* ══════════════════════════════════════════════════════════
   MOBILE  < 768px
══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .hero-child {
        width: 100%;
        height: auto;
        right: auto;
        object-position: bottom center;
    }
    /* Sticky bar already has Order Online — avoid 3 stacked buttons */
    .btn-hero-uber {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════
   SMALL PHONES  < 480px
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    .hero {
        overflow-x: hidden;
        min-height: 680px;
    }

    .hero-content {
        bottom: 50%;
        padding-inline: 1.5rem;
    }

    .hero-heading {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
        margin-bottom: 8px;
    }

    .hero-divider {
        margin: 6px auto 10px;
        width: 130px;
    }

    .hero-sub {
        font-size: 13px;
        margin-bottom: 14px;
        max-width: 260px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 10px 20px;
    }

    .hero-child {
        width: 100%;
        height: auto;
        right: auto;
        object-position: bottom center;
    }
}