/* ==================== WO-FR-02: INDIAN FINE DINING ==================== */
/* Saffron Kitchen - Elegant Indian Restaurant Template */
/* Color Palette: Saffron Orange, Deep Red, Gold */

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #8b0000;
  --accent: #d4af37;
  --text-dark: #2c1810;
  --text-light: #6b4423;
  --bg-light: #fdf8f3;
  --bg-cream: #faf0e6;
  --white: #ffffff;
}

/* Override base colors */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.section-badge {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

/* Typography */
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* Navbar Dark */
.navbar-dark {
  background: transparent;
}

.navbar-dark.scrolled {
  background: rgba(44, 24, 16, 0.95);
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-link {
  color: var(--white);
}

.navbar-dark .navbar-link:hover,
.navbar-dark .navbar-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-link::after {
  background: var(--primary);
}

.navbar-dark .navbar-toggle span {
  background: var(--white);
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
}

.navbar-brand span {
  color: var(--accent);
}

/* Hero Fine Dining */
.hero-fine-dining {
  min-height: 100vh;
  background: url('https://images.pexels.com/photos/1640774/pexels-photo-1640774.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-fine-dining .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(139, 0, 0, 0.7) 100%);
}

.hero-fine-dining .container {
  position: relative;
  z-index: 1;
}

.hero-fine-dining .hero-content {
  max-width: 700px;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
}

.hero-fine-dining .hero-badge {
  background: rgba(255, 107, 53, 0.3);
  color: var(--white);
}

.hero-fine-dining .hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-fine-dining .hero-title span {
  color: var(--accent);
}

.hero-fine-dining .hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.hero-fine-dining .hero-buttons {
  justify-content: center;
  margin-bottom: 40px;
}

.hero-fine-dining .btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.hero-fine-dining .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.info-icon {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .hero-info {
    flex-direction: column;
    gap: 16px;
  }
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.chef-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
}

.credential-icon {
  font-size: 2rem;
}

.credential-item strong {
  display: block;
  color: var(--text-dark);
}

.credential-item span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Dishes Grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dish-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0e6e3;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.dish-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.dish-content {
  padding: 20px;
}

.dish-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.dish-description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.dish-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.dish-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-light);
}

@media (max-width: 1200px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }
}

/* Ambiance Gallery */
.ambiance-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--primary);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 992px) {
  .ambiance-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-large {
    grid-row: span 1;
    grid-column: span 2;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .ambiance-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
  }
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border: 1px solid #f0e6e3;
}

.testimonial-rating {
  color: var(--accent);
}

/* Reservation Section */
.reservation-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.reservation-content h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.reservation-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.reservation-form .form-input {
  flex: 1;
  border: none;
}

.reservation-form .btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.reservation-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .reservation-form {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  background: var(--text-dark);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
}

.footer-brand span {
  color: var(--accent);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-link:hover {
  color: var(--primary);
}

/* Section Alt */
.section-alt {
  background: var(--bg-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}
