/* ==========================================================================
   FLUID RESPONSIVE SYSTEM REBASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    background-color: #0d0d0d;
    overflow-x: hidden;
    width: 100%;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   NAVIGATION BAR HEADER (FLEX WRAP SAFE)
   ========================================================================== */
.header {
    background: #7d0b08;
    padding: 15px 5%;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    height: clamp(50px, 8vw, 70px);
    width: auto;
}

.navbar {
    margin-left: auto;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: clamp(15px, 3vw, 40px);
    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #d9b16f;
}

/* ==========================================================================
   HERO VIDEO HEADER LAYOUT
   ========================================================================== */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 480px;
    width: 100%;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.hero-content p {
    margin-top: 15px;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* ==========================================================================
   ABOUT BRAND SECTION
   ========================================================================== */
.about-section {
    background: #d47917;
    padding: clamp(40px, 8vh, 80px) 24px;
    text-align: center;
}

.about-container {
    max-width: 850px;
    margin: 0 auto;
}

.about-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-divider {
    width: 60%;
    max-width: 400px;
    height: 3px;
    background: #fff;
    margin: 0 auto 30px;
}

.about-section p {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timing {
    margin: 30px 0;
    color: #fff;
}

.timing em {
    display: block;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 8px;
    font-style: italic;
}

.timing span {
    display: block;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    opacity: 0.95;
}

.primary-reservation-btn {
    display: inline-block;
    background: #7b0d0d;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.primary-reservation-btn:hover {
    background: #5f0707;
}

/* Breakout Parallax Alternative Container */
.caption-container {
    width: 100%;
    height: clamp(350px, 60vh, 70vh);
}

.caption-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   TESTIMONIAL GRID INTERPOLATION
   ========================================================================== */
.testimonial-section {
    background: #7b0d0d;
    padding: clamp(40px, 8vh, 80px) 24px;
    text-align: center;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 30px;
}

.review-text {
    color: #fff;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.7;
    font-style: italic;
}

.review-author {
    color: #f4c97d;
    font-size: 1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.review-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 45px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    justify-content: center;
}

.grid-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-card:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   TEASE SECTION LAYOUT CARDS
   ========================================================================== */
.tease-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    min-height: 500px;
}

.tease-card {
    position: relative;
    padding: 60px 24px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tease-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    width: 100%;
    color: #fff;
    text-align: center;
}

.content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
}

.content p {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 30px;
}

.card-divider {
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 30px;
}

/* ==========================================================================
   OUR STORY BRAND WRAPPER
   ========================================================================== */
.our-story-section {
    padding: clamp(60px, 10vh, 120px) 24px;
    background: linear-gradient(rgba(50,0,0,.92), rgba(35,0,0,.96)), url("images/indian-spices.jpg") center/cover no-repeat;
    text-align: center;
}

.story-container {
    max-width: 850px;
    margin: 0 auto;
    color: #fff;
}

.story-subtitle {
    color: #f5c36b;
    font-size: 13px;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.story-container h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 25px;
}

.story-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.story-divider span {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}

.story-divider i { color: #f5c36b; }

.story-container p {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 25px;
}

.story-quote span {
    display: inline-block;
    border: 1px solid rgba(245, 195, 107, .4);
    padding: 14px 30px;
    border-radius: 30px;
    color: #f5c36b;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    background: rgba(255, 255, 255, .03);
}

/* ==========================================================================
   FEATURED FLAT ITEMS WITH FLEX-DIRECTION FIXES
   ========================================================================== */
.featured-menu {
    background: #ececec;
    padding: clamp(40px, 8vh, 80px) 24px;
}

.menu-item-row {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.menu-image {
    width: 100%;
    max-width: 400px;
}

.menu-image img {
    width: 100%;
    border: 4px solid #d97706;
    border-radius: 2px;
}

.menu-content {
    text-align: center;
}

.menu-content h3 {
    color: #7a1f12;
    font-size: clamp(1.3rem, 2.2vw, 1.5rem);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.menu-content p {
    color: #333;
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    max-width: 480px;
}

.secondary-reservation-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #d97706;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.secondary-reservation-btn:hover { background: #b85f00; }

/* ==========================================================================
   EVENTS LAYOUT DESIGN
   ========================================================================== */
.events-section {
    position: relative;
    padding: clamp(40px, 8vh, 100px) 20px;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
}

.events-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(50,0,0,.65));
}

.events-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: clamp(24px, 5vw, 60px);
    text-align: center;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
}

.events-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.events-content h2 span { display: block; color: #f5c36b; }

.events-content p {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7;
}

.events-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* ==========================================================================
   GALLERY CAROUSEL HORIZONTAL SLIDER
   ========================================================================== */
.gallery-slider {
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: #f5f5f5;
}

.slider-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 45px;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar { display: none; }

.slider-track img {
    width: min(220px, 60vw);
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 6px;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prev { left: 8px; }
.next { right: 8px; }

/* ==========================================================================
   CONTACT SECTION AND AUTO-SCALING MAP
   ========================================================================== */
.contact-location-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    padding: clamp(40px, 8vh, 100px) 5%;
    background: #0d0d0d;
}

.contact-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: clamp(24px, 4vw, 50px);
    border-radius: 16px;
}

.contact-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #fff;
    margin: 15px 0;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    color: #fff;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #dca54c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-primary-contact, .btn-outline-contact {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}
.btn-primary-contact { background: #dca54c; color: #fff; }
.btn-outline-contact { border: 1px solid #dca54c; color: #dca54c; }

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   ENQUIRY INTERACTIVE BOX (CSS INPUT PLACEHOLDER FALLBACKS)
   ========================================================================== */
.enquiry-section {
    background: #111;
    padding: 0 5% clamp(50px, 8vh, 100px);
}

.enquiry-card {
    background: #151515;
    border-radius: 20px;
    padding: clamp(24px, 5vw, 60px);
    border: 1px solid rgba(255, 255, 255, .05);
}

.form-heading h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    padding: 16px;
    background: #1f1f1f;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
    outline: none;
}

.floating-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #777;
    transition: 0.25s ease all;
    pointer-events: none;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    background: #151515;
    padding: 0 6px;
    font-size: 12px;
    color: #dca54c;
}

.submit-btn {
    background: #dca54c;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 220px;
}

/* ==========================================================================
   SITE FOOTER SYSTEM
   ========================================================================== */
.site-footer {
    background: #8b0707;
    color: #fff;
    text-align: center;
    padding: 50px 24px 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-social a { color: #fff; font-size: 26px; }

.footer-title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 35px;
}

.footer-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.brand img {
    max-width: 160px;
    filter: brightness(0) invert(1);
}

.footer-copy {
    font-size: 13px;
    opacity: 0.7;
}

/* ==========================================================================
   FLEX DIRECTION CONTROLS FOR LARGER TABLETS/DESKTOPS
   ========================================================================== */
@media (min-width: 769px) {
    .menu-item-row {
        flex-direction: row;
        gap: 60px;
    }
    .menu-item-row.reverse {
        flex-direction: row-reverse;
    }
    .menu-item-row .menu-image {
        width: 320px;
        flex-shrink: 0;
    }
    .menu-content {
        text-align: left;
    }
    .submit-btn {
        width: auto;
    }
}