/* ==============================================
   SECTIONS — Hero, About, Gallery, Menu, Contact, Footer
   ============================================== */

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity var(--transition-slide);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-out forwards;
}

.hero-slide:nth-child(1) { transform-origin: center center; }
.hero-slide:nth-child(2) { transform-origin: left center; }
.hero-slide:nth-child(3) { transform-origin: right top; }

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(13, 10, 8, 0.35) 0%,
        rgba(13, 10, 8, 0.45) 30%,
        rgba(90, 20, 32, 0.35) 60%,
        rgba(13, 10, 8, 0.75) 100%
    );
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-warm);
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-logo {
    animation: fadeInUp 1s ease-out 0.3s both;
}


/* =====================
   ABOUT
   ===================== */
.about-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-warm);
    position: relative;
}

/* Subtle background pattern */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(123, 30, 45, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}


/* =====================
   GALLERY
   ===================== */
.gallery-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-dark);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--gap-md);
    min-height: 450px;
}

.gallery-item--featured {
    grid-row: 1 / 3;
}

.gallery-item img {
    aspect-ratio: auto;
}

.gallery-item--featured img {
    height: 100%;
}


/* =====================
   MENU SECTION
   ===================== */
.menu-section {
    position: relative;
    padding: var(--section-pad-y) 0;
    overflow: hidden;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/food2.png') center / cover no-repeat;
    z-index: 0;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 20, 32, 0.93) 0%,
        rgba(13, 10, 8, 0.90) 100%
    );
    z-index: 1;
}

.menu-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu-desc {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}


/* =====================
   CONTACT
   ===================== */
.contact-section {
    padding: var(--section-pad-y) 0;
    background: var(--bg-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: start;
}

.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* =====================
   FOOTER
   ===================== */
.main-footer {
    background: var(--bg-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.footer-logo-rajs {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-logo-sub {
    font-family: var(--font-logo);
    font-size: 0.9rem;
    color: var(--clr-gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-credit {
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.footer-credit a {
    color: var(--clr-gold);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--clr-gold-light);
}
