/* Restaurant Custom Color Palette - Coral Red Theme */
:root {
  --primary-dark: #2D1810;
  --accent: #FF6B6B;
  --secondary-text: #FFFFFF;
  --highlight-accent: #FF9F80;
  --background: #2D1810;
  --surface: #4A2C1F;
  --text-primary: #FFFFFF;
  --text-secondary: #E8E8E8;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--background) 0%, #2A1810 50%, var(--background) 100%);
  overflow-x: hidden;
}

/* Custom script font for restaurant headings */
h1, h2, h3 {
  font-family: 'Dancing Script', 'Great Vibes', cursive;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--highlight-accent));
  color: var(--primary-dark);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Header */
/* Restaurant Navigation - Elegant Food-Themed */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(45, 24, 16, 0.95) 0%, rgba(74, 44, 31, 0.95) 100%);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 2px solid rgba(255, 107, 107, 0.3);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--highlight-accent));
  border-radius: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav .btn {
  background: linear-gradient(135deg, var(--accent), var(--highlight-accent));
  color: var(--primary-dark);
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.nav .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--surface) 100%);
  padding: 120px 0 4rem;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--highlight-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image .hero-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-image .hero-img:hover {
  transform: scale(1.02);
}

/* Menu Section */
.menu {
  padding: 6rem 0;
  background: var(--surface);
}

.menu h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: var(--primary-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.menu-image .menu-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.menu-image .menu-img:hover {
  transform: scale(1.03);
}

.menu-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
}

.menu-item p {
  padding: 0 1.5rem;
  font-size: 0.95rem;
}

.price {
  display: block;
  padding: 0.5rem 1.5rem 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: var(--background);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-image .about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.about-image .about-img:hover {
  transform: scale(1.02);
}

/* Gallery Section */
.gallery {
  padding: 6rem 0;
  background: var(--surface);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.gallery-item .gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Reservation Section */
.reservation {
  padding: 6rem 0;
  background: var(--background);
}

.reservation h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.reservation-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.reservation-form .btn {
  grid-column: 1 / -1;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--highlight-accent);
}

@keyframes yum {
  0% { 
    transform: translate(-50%, -50%) scale(0) rotate(0deg); 
    opacity: 1; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.5) rotate(180deg); 
    opacity: 0.8; 
  }
  100% { 
    transform: translate(-50%, -50%) scale(0) rotate(360deg); 
    opacity: 0; 
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-image .hero-img {
    height: 300px;
    border-radius: 15px;
  }
  
  .about .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .about-image .about-img {
    height: 280px;
    border-radius: 15px;
  }
  
  .menu-image .menu-img {
    height: 160px;
  }
  
  .gallery-item .gallery-img {
    height: 200px;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .about .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reservation-form {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    padding: 100px 0 2rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .menu-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-item {
    text-align: center;
  }
  
  .hero-image .hero-img {
    height: 250px;
    border-radius: 12px;
  }
  
  .about-image .about-img {
    height: 220px;
    border-radius: 12px;
  }
  
  .menu-image .menu-img {
    height: 140px;
  }
  
  .gallery-item .gallery-img {
    height: 180px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
