/* --- Global Reset & Variable Tokens --- */
:root {
    --gold: #D4AF37;
    --gold-hover: #AA7C11;
    --black: #0A0A0A;
    --dark-grey: #161616;
    --light-grey: #AAA;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
}

@media (max-width: 768px) {

  .hero-section,
  .cooking-section,
  .gallery-section,
  .banquet-section,
  .booking-section,
  .contact-section,
  .footer {
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 48px;
    white-space: normal;
    word-break: break-word;
  }

  .cards-grid,
  .gallery-grid,
  .contact-content,
  .booking-form-box .form-row,
  .banquet-form-box .form-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .menu-card,
  .gallery-item,
  .contact-map,
  .booking-form-box,
  .banquet-form-box {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    letter-spacing: 1px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* --- Utility Typography --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 10px auto 0 auto;
}

.section-title.left-align::after {
    margin: 10px 0 0 0;
}

/* --- Header / Navigation --- */
header {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-content h1{
    color:#d4af37;
    font-size:5rem;
    font-family:'Cinzel', serif;
    text-shadow:0 0 20px rgba(212,175,55,.6);
}



.hero-content h1{
    font-size:4rem;
    color:#d4af37;
    text-align:center;
    margin-bottom:20px;
}

.hero-content p{
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 30px;
}



.hero{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.86),
        rgba(0,0,0,0.86)
    ),
    url("images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* Golden Dots */
.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-image:
    radial-gradient(circle, #d4af37 2px, transparent 2px),
    radial-gradient(circle, #d4af37 1px, transparent 1px),
    radial-gradient(circle, #d4af37 3px, transparent 3px);

    background-size:150px 150px, 200px 200px, 250px 250px;
    animation:goldMove 20s linear infinite;

    opacity:0.7;
    pointer-events:none;
}

@keyframes goldMove{
    0%{
        transform:translateY(0);
    }
    100%{
        transform:translateY(-200px);
    }
}

/* Text above dots */
.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    color:#d4af37;
    text-shadow:0 0 20px rgba(212,175,55,0.8);
}

.hero{
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.86), rgba(0,0,0,0.86)),
    url("./images/hero.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-content{
    text-align:center;
    max-width:900px;
    margin:auto;
}

@media(max-width:768px){
    .hero-content h1{
        font-size:2.8rem;
    }
}

.subtitle{
    color: #d4af37;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.hero-buttons{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn-primary{
    background:#d4af37;
    color:#000;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:2px solid #d4af37;
    color:#d4af37;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
}

/* --- Menu Section --- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    padding: 10px 25px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.menu-category {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.menu-category.active {
    display: grid;
}

.menu-item {
    background: var(--dark-grey);
    padding: 25px;
    border-left: 3px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-details h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--white);
}

.item-details p {
    color: var(--light-grey);
    font-size: 0.85rem;
}

.price {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(30%);
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* --- Booking Sections Container --- */
.booking-wrapper {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=80') center center/cover;
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.booking-card {
    background-color: rgba(22, 22, 22, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
}

.booking-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group-row input, .form-group-row select {
    width: 50%;
}

input, select, textarea {
    background-color: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    transition: var(--transition);
}

input:focus, select:focus {
    border-color: var(--gold);
}

/* --- Contact & Map Section --- */
.contact-section {
    background-color: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--light-grey);
}

.contact-info i {
    color: var(--gold);
    margin-right: 15px;
    width: 20px;
}

.social-icons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 1px solid var(--gold);
}

/* --- Footer --- */
footer {
    text-align: center;
    background-color: var(--dark-grey);
    padding: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.85rem;
    color: var(--light-grey);
}

/* --- Fixed Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .menu-category {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--black);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group-row input, .form-group-row select {
        width: 100%;
        margin-bottom: 20px;
    }
}

.cooking-section{
    background:#000;
    padding:100px 20px;
    text-align:center;
}

.section-title span{
    color:#d4af37;
    letter-spacing:6px;
    font-size:14px;
}

.section-title h2{
    color:#d4af37;
    font-size:3rem;
    margin:15px 0 40px;
}

.video-container{
    max-width:900px;
    margin:auto;
    border:1px solid #d4af37;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 0 30px rgba(212,175,55,.25);
}

.video-container video{
    width:100%;
    display:block;
}

.cooking-section p{
    color:#aaa;
    margin-top:20px;
    font-style:italic;
}

.subtitle{
    color: #d4af37 !important;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.menu-card h3{
    color:#d4af37;
    font-size:24px;
    font-family:'Cinzel',serif;
    margin-bottom:10px;
}

.menu-card h4{
    color:#d4af37;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.menu-card p{
    color:#cfcfcf;
    font-size:15px;
    line-height:1.8;
}

.menu-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.menu-card{
    width:350px;
}

.menu-container{
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

.menu-card{
    width:350px;
    background:#0a0a0a;
    border:1px solid #d4af37;
    border-radius:20px;
    overflow:hidden;
}

.close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid gold;
  border-radius: 50%;
  color: gold;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(255, 215, 0, 0.2);
}

/* GALLERY */
.gallery-section {
  background: #000;
  padding: 80px 40px;
  text-align: center;
}

.gallery-tag {
  color: gold;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gallery-header h2 {
  color: gold;  /* Change this from #fff to gold */
  font-size: 52px;
  font-weight: 800;
  margin: 0;
}

.gallery-line {
  width: 80px;
  height: 2px;
  background: gold;
  margin: 15px auto;
}

.gallery-sub {
  color: #aaa;
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #B8860B, #FFD700, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 4px rgba(184, 134, 11, 0.9));
}

/* BANQUET SECTION */
.banquet-section {
  background: #0a0a0a;
  padding: 80px 40px;
  text-align: center;
}

.banquet-tag {
  color: gold;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.banquet-header h2 {
  color: gold;
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin: 0;
}

.banquet-line {
  width: 80px;
  height: 2px;
  background: gold;
  margin: 15px auto;
}

.banquet-sub {
  color: #aaa;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.banquet-form-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  color: gold;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #111;
  border: 1px solid #444;
  border-radius: 8px;
  color: #ccc;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: gold;
}
.form-group input[type="date"],
.form-group input[type="time"] {
  background: #111;
  border: 1px solid #444;
  border-radius: 8px;
  color: #ccc;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  color-scheme: dark;
}

.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
  border-color: gold;
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: auto;
}

.whatsapp-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #C8960C, #FFD700, #C8960C);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.whatsapp-btn:hover {
  opacity: 0.9;
}

/* BOOK A TABLE */
.booking-section {
  background: #000;
  padding: 80px 40px;
  text-align: center;
}

.booking-tag {
  color: gold;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.booking-header h2 {
  color: gold;
  font-size: 52px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin: 0;
}

.booking-line {
  width: 80px;
  height: 2px;
  background: gold;
  margin: 15px auto;
}

.booking-sub {
  color: #aaa;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.booking-form-box {
  background: #1a1a1a;
  border: 1px solid #B8860B;
  border-radius: 16px;
  padding: 40px;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.booking-form-box .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.booking-form-box .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form-box .form-group.full-width {
  margin-bottom: 20px;
}

.booking-form-box label {
  color: #B8860B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.booking-form-box input,
.booking-form-box select,
.booking-form-box textarea {
  background: #111;
  border: 1px solid #B8860B;
  border-radius: 8px;
  color: #ccc;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border 0.3s;
  color-scheme: dark;
}

.booking-form-box input:focus,
.booking-form-box select:focus,
.booking-form-box textarea:focus {
  border-color: gold;
}

.booking-form-box textarea {
  height: 120px;
  resize: vertical;
}

.book-whatsapp-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #B8860B, #FFD700, #B8860B);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: opacity 0.3s;
  margin-top: 10px;
}

.book-whatsapp-btn:hover {
  opacity: 0.85;
}

/* CONTACT SECTION */
.contact-section {
  background: #000;
  padding: 80px 60px;
  text-align: center;
}

.contact-tag {
  color: gold;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-header h2 {
  color: gold;
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin: 0;
}

.contact-line {
  width: 80px;
  height: 2px;
  background: gold;
  margin: 15px auto 50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #111;
  border: 1px solid #B8860B;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.contact-icon {
  font-size: 24px;
  margin-top: 2px;
}

.contact-card h4 {
  color: gold;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.contact-card p {
  color: #ccc;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.directions-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, #B8860B, #FFD700, #B8860B);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s;
}

.directions-btn:hover {
  opacity: 0.85;
}

.contact-map {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #333;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  padding: 40px 20px;
  text-align: center;
}

.footer h3 {
  color: gold;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 0 0 10px;
}

.footer p {
  color: #888;
  font-size: 14px;
  margin: 4px 0;
}

.footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  padding: 50px 20px 30px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  clear: both;
}

.btn-order {
  background: linear-gradient(90deg, #B8860B, #FFD700, #B8860B);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
}
.btn-call {
  background: rgba(0, 0, 0, 0.5);
  color: gold;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid gold;
  text-decoration: none;
}
.hero-explore p {
  color: gold;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-arrow {
  font-size: 24px;
  color: gold;
  animation: bounceArrow 1.5s ease-in-out infinite;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-order {
  background: linear-gradient(90deg, #B8860B, #FFD700, #B8860B);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
}

.btn-call {
  background: rgba(0, 0, 0, 0.5);
  color: gold;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid gold;
  text-decoration: none;
}

.hero-explore {
  margin-top: 40px;
  color: gold;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-explore p {
  margin: 0 0 8px 0;
}

.hero-arrow {
  font-size: 24px;
  color: gold;
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-content h1 {
  color: gold;
  font-size: 100px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.1;
  background: linear-gradient(180deg, #FFD700, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-line {
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B8860B, #FFD700, #B8860B, transparent);
  margin: 5px auto 30px;
  display: block;
}
.hero-content h1 {
  color: gold;
  font-size: 95px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.1;
  background: linear-gradient(180deg, #FFD700, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowUpDown 2s ease-in-out infinite;
}   
  
@keyframes glowUpDown {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(184, 134, 11, 0.3));
    transform: translateY(0px);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(184, 134, 11, 0.6));
    transform: translateY(-3px);
  }
}
@media (max-width: 768px) {

  /* HERO */
  .hero-content h1 {
    font-size: 60px;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-sub {
    font-size: 14px;
    padding: 0 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .btn-order, .btn-call {
    width: 80%;
    text-align: center;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .gallery-item {
    height: 220px;
  }

  /* GALLERY HEADER */
  .gallery-header h2 {
    font-size: 36px;
  }

  /* NAVBAR */
  .navbar {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  /* CONTACT */
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 250px;
  }

  /* BOOKING FORM */
  .booking-form-box .form-row {
    grid-template-columns: 1fr;
  }

  .banquet-form-box .form-row {
    grid-template-columns: 1fr;
  }

  /* SECTIONS PADDING */
  .gallery-section,
  .booking-section,
  .banquet-section,
  .contact-section {
    padding: 60px 16px;
  }
}

@media (max-width: 768px) {

  /* FULL WIDTH FIX */
  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  html {
    overflow-x: hidden;
  }

  /* HERO */
  .hero-section {
    width: 100%;
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-tag {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-sub {
    font-size: 14px;
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .btn-order, .btn-call {
    width: 85%;
    text-align: center;
    display: block;
  }

  /* NAVBAR */
  .navbar {
    padding: 14px 16px;
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  /* GALLERY */
  .gallery-section {
    width: 100%;
    padding: 60px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .gallery-item {
    height: 220px;
    width: 100%;
  }

  .gallery-header h2 {
    font-size: 36px;
  }

  /* BOOKING */
  .booking-section {
    width: 100%;
    padding: 60px 16px;
  }

  .booking-form-box {
    width: 100%;
    padding: 24px 16px;
  }

  .booking-form-box .form-row {
    grid-template-columns: 1fr;
  }

  /* BANQUET */
  .banquet-section {
    width: 100%;
    padding: 60px 16px;
  }

  .banquet-form-box {
    width: 100%;
    padding: 24px 16px;
  }

  .banquet-form-box .form-row {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .contact-section {
    width: 100%;
    padding: 60px 16px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-map {
    height: 250px;
    width: 100%;
  }

  /* FOOTER */
  .footer {
    width: 100%;
    padding: 30px 16px;
  }

  /* MENU CARDS */
  .cards-grid {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 16px;
  }

  .menu-card {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .menu-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
  }

  .menu-card {
      width: 95%;
      max-width: 400px;
  }

  h1 {
      font-size: 2.5rem;
  }
}

/* Mobile Responsive Fix */
@media screen and (max-width: 768px) {

  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  img,
  video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  * {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {

  /* SABHI SECTIONS */
  section,
  div,
  header,
  footer,
  nav {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  @media (max-width: 768px) {

  .hero-section {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }

  .hero-overlay {
    width: 100% !important;
    border-radius: 0 !important;
  }
}

  .hero-content {
    padding: 0 20px !important;
    width: 100% !important;
  }

  .hero-content h1 {
    font-size: 52px !important;
  }

  .btn-order, .btn-call {
    width: 90% !important;
    display: block !important;
    text-align: center !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* MENU CARDS */
  .cards-grid {
    grid-template-columns: 1fr !important;
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
  }

  .menu-card {
    width: 100vw !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  .card-image,
  .card-image img {
    width: 100% !important;
    border-radius: 0 !important;
  }

  /* GALLERY */
  .gallery-section {
    padding: 40px 0 !important;
    width: 100vw !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 6px !important;
  }

  .gallery-item {
    width: 100vw !important;
    border-radius: 0 !important;
    margin: 0 !important;
    height: 250px !important;
  }

  /* BANQUET FORM */
  .banquet-section {
    width: 100vw !important;
    padding: 40px 0 !important;
  }

  .banquet-form-box {
    width: 100% !important;
    padding: 20px 16px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  .banquet-form-box .form-row {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .banquet-form-box input,
  .banquet-form-box select,
  .banquet-form-box textarea,
  .whatsapp-btn {
    width: 100% !important;
  }

  /* BOOKING FORM */
  .booking-section {
    width: 100vw !important;
    padding: 40px 0 !important;
  }

  .booking-form-box {
    width: 100% !important;
    padding: 20px 16px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }

  .booking-form-box .form-row {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .booking-form-box input,
  .booking-form-box select,
  .booking-form-box textarea,
  .book-whatsapp-btn {
    width: 100% !important;
  }

  /* CONTACT */
  .contact-section {
    width: 100vw !important;
    padding: 40px 0 !important;
  }

  .contact-content {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 16px !important;
  }

  .contact-map {
    width: 100% !important;
    border-radius: 0 !important;
    height: 250px !important;
  }

  .contact-card {
    border-radius: 8px !important;
  }

  /* FOOTER */
  .footer {
    width: 100vw !important;
    padding: 30px 16px !important;
  }

  /* COOKING SECTION */
  .cooking-section {
    width: 100vw !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .cooking-section * {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {

  .cards-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 16px !important;
    gap: 20px !important;
  }

  .menu-card {
    width: 100% !important;
    border-radius: 16px !important;
    margin: 0 !important;
    border: 1px solid #B8860B !important;
    overflow: hidden !important;
  }

  .card-image {
    width: 100% !important;
    border-radius: 0 !important;
  }

  .card-image img {
    width: 100% !important;
    border-radius: 0 !important;
  }

  .card-body {
    padding: 20px 16px !important;
    width: 100% !important;
  }
}

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  * {
    box-sizing: border-box !important;
  }

  /* ALL SECTIONS */
  section,
  .hero-section,
  .cooking-section,
  .gallery-section,
  .banquet-section,
  .booking-section,
  .contact-section,
  .footer {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
  }

  /* HERO */
  .hero-content {
    padding: 0 16px !important;
    width: 100% !important;
  }

  .hero-content h1 {
    font-size: 52px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-order, .btn-call {
    width: 90% !important;
    text-align: center !important;
    display: block !important;
  }

  /* NAVBAR */
  .nav-links {
    display: none !important;
  }

  /* MENU CARDS */
  .cards-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 16px !important;
    gap: 20px !important;
    margin: 0 !important;
  }

  .menu-card {
    width: 100% !important;
    border-radius: 16px !important;
    margin: 0 !important;
  }

  /* GALLERY */
  .gallery-section {
    padding: 40px 0 !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 16px !important;
    gap: 16px !important;
    margin: 0 !important;
  }

  .gallery-item {
    width: 100% !important;
    border-radius: 12px !important;
    height: 250px !important;
  }

  /* BANQUET FORM */
  .banquet-section {
    padding: 40px 16px !important;
  }

  .banquet-form-box {
    width: 100% !important;
    padding: 20px 12px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    border: 1px solid #B8860B !important;
  }

  .banquet-form-box .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .banquet-form-box input,
  .banquet-form-box select,
  .banquet-form-box textarea,
  .whatsapp-btn {
    width: 100% !important;
  }

  /* BOOKING FORM */
  .booking-section {
    padding: 40px 16px !important;
  }

  .booking-form-box {
    width: 100% !important;
    padding: 20px 12px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    border: 1px solid #B8860B !important;
  }

  .booking-form-box .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .booking-form-box input,
  .booking-form-box select,
  .booking-form-box textarea,
  .book-whatsapp-btn {
    width: 100% !important;
  }

  /* CONTACT */
  .contact-section {
    padding: 40px 16px !important;
  }

  .contact-content {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .contact-map {
    width: 100% !important;
    height: 250px !important;
    border-radius: 12px !important;
  }

  /* FOOTER */
  .footer {
    padding: 30px 16px !important;
    width: 100% !important;
  }
}

.book-whatsapp-btn,
.whatsapp-btn {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 18px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  margin: 20px auto !important;
}

.whatsapp-btn,
.book-whatsapp-btn {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

/* BANQUET SECTION */
.banquet-section {
  background: #000;
  padding: 80px 40px 120px 40px;
}

/* DIVIDER */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B8860B, #FFD700, #B8860B, transparent);
  margin: 0;
}

/* BOOKING SECTION */
.booking-section {
  background: #0a0a0a;
  padding: 120px 40px 80px 40px;
}