/* Luxurious Royal Theme for Ambur Bandaari Biryani */
:root {
  --gold: #d4af37;
  --deep-brown: #3e2723;
  --royal-red: #8b1f1f;
  --black: #181212;
  --white: #fff;
  --serif: 'Playfair Display', serif;
  --sans: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--gold);
  margin: 0 0 0.5em 0;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 1.5em;
}

section {
  padding: 5vw 0;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: url('images/hero-biryani.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(24,18,18,0.8) 60%, rgba(139,31,31,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold);
  text-shadow: 0 4px 24px var(--deep-brown);
  margin-bottom: 0.5em;
}
.hero-tagline {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2em;
  font-family: var(--serif);
  letter-spacing: 1px;
}
.order-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--royal-red);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.9em 2.5em;
  border-radius: 40px;
  border: none;
  box-shadow: 0 2px 16px rgba(212,175,55,0.2);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s;
  text-decoration: none;
  letter-spacing: 1px;
}
.order-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 32px var(--gold);
  background: var(--royal-red);
  color: var(--gold);
}

/* About Us Section */
.about {
  background: var(--deep-brown);
  color: var(--white);
  overflow: hidden;
}
.about-bg-parallax {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/spices-bg.jpg') center/cover no-repeat fixed;
  opacity: 0.18;
  z-index: 0;
}
.about-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 2em 1.5em;
  text-align: center;
  font-size: 1.25rem;
  font-family: var(--serif);
  line-height: 1.7;
  color: var(--gold);
  background: rgba(24,18,18,0.7);
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(139,31,31,0.08);
}

/* Menu Section */
.menu {
  background: var(--royal-red);
  color: var(--gold);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1em;
}
.menu-item {
  background: var(--deep-brown);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24,18,18,0.12);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
  position: relative;
}
.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}
.menu-item:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px var(--gold);
}
.menu-item:hover img {
  filter: brightness(1.08) saturate(1.2);
}
.menu-item h3 {
  margin: 1em 0 0.5em 0;
  color: var(--gold);
  font-size: 1.3rem;
}
.menu-item .price {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1em;
}

/* Branches Section */
.branches {
  background: var(--black);
  color: var(--gold);
}
.branches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}
.branch {
  background: var(--deep-brown);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(212,175,55,0.08);
  padding: 1.5em 1em;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
}
.branch h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}
.branch p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1em;
}
.branch iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.08);
}

/* Gallery Section */
.gallery {
  background: var(--royal-red);
  color: var(--gold);
  overflow-x: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 2em;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2em 0 1em 0;
  max-width: 100vw;
}
.gallery-scroll img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(24,18,18,0.12);
  transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
}
.gallery-scroll img:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 32px var(--gold);
}

/* Contact Section */
.contact {
  background: var(--deep-brown);
  color: var(--gold);
}
.contact-form {
  max-width: 420px;
  margin: 0 auto 2em auto;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  background: rgba(24,18,18,0.7);
  padding: 2em 1.5em;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(139,31,31,0.08);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.9em 1em;
  border-radius: 8px;
  border: none;
  background: var(--black);
  color: var(--gold);
  outline: none;
  resize: none;
}
.contact-form textarea {
  min-height: 90px;
}
.contact-form button {
  margin-top: 0.5em;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5em;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(212,175,55,0.08);
  transition: background 0.2s, transform 0.2s;
}
.social-icon:hover {
  background: var(--gold);
  transform: scale(1.12);
}
.social-icon svg {
  display: block;
}

footer {
  background: var(--black);
  color: var(--gold);
  text-align: center;
  padding: 1.2em 0 0.8em 0;
  font-size: 1rem;
  letter-spacing: 1px;
  font-family: var(--serif);
}

/* Royal Header Styles */
.royal-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(24, 18, 18, 0.92);
  box-shadow: 0 2px 24px rgba(212,175,55,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 2vw;
  border-bottom: 2px solid var(--gold);
}
.logo-container {
  /* display: flex; */
  display: none;
  align-items: center;
  gap: 0.7em;
}
.logo-svg {
  filter: drop-shadow(0 0 8px #d4af37cc);
  background: radial-gradient(circle at 60% 40%, #d4af37 0%, #8b1f1f 100%);
  border-radius: 50%;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 0 2px 12px #3e2723cc;
}
.royal-nav {
  display: flex;
  gap: 2em;
}
.royal-nav a {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  text-decoration: none;
  padding: 0.3em 0.7em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
}
.royal-nav a:hover, .royal-nav a:focus {
  background: var(--gold);
  color: var(--royal-red);
  box-shadow: 0 2px 12px #d4af37cc;
}

/* Section Filigree SVGs */
.section-filigree-top, .section-filigree-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
.section-filigree-top svg, .section-filigree-bottom svg {
  filter: drop-shadow(0 0 6px #d4af37cc);
}

/* Add extra gold border to menu cards */
.menu-item {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid #d4af37;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s;
}
.menu-item:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .gallery-scroll img {
    width: 220px;
    height: 140px;
  }
}
@media (max-width: 600px) {
  h1.hero-title {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero {
    min-height: 70vh;
  }
  .about-content {
    font-size: 1rem;
    padding: 1.2em 0.5em;
  }
  .menu-grid {
    gap: 1em;
  }
  .branches-list {
    flex-direction: column;
    gap: 1em;
  }
  .branch {
    max-width: 100%;
    min-width: 0;
  }
  .gallery-scroll {
    gap: 1em;
  }
  .contact-form {
    padding: 1em 0.5em;
  }
}

/* Responsive header */
@media (max-width: 700px) {
  .royal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5em 1vw;
  }
  .royal-nav {
    gap: 1em;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .logo-text {
    font-size: 1rem;
  }
} 