@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary-color: #ff4757;
  --primary-hover: #ff6b81;
  --secondary-color: #2ed573;
  --bg-color: #121212;
  --bg-glass: rgba(30, 30, 30, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #a4b0be;
  --card-bg: #1e1e1e;
  --accent: #ffa502;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255, 71, 87, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 165, 2, 0.08), transparent 25%);
}

/* Glass Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-order-nav {
  background: linear-gradient(135deg, var(--primary-color), var(--accent));
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-order-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
  z-index: 2;
  animation: fadeUp 1s ease forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--primary-color);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--text-secondary);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.hero-image-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,71,87,0.2) 0%, rgba(18,18,18,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 1;
  position: relative;
  object-fit: cover;
  border: 4px solid var(--bg-glass);
}

/* Menu Section */
.menu {
  padding: 5rem 5%;
  background-color: #0b0b0b;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.section-title span {
  color: var(--primary-color);
}

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

.menu-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(255, 71, 87, 0.3);
}

.menu-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.menu-info {
  padding: 1.5rem;
}

.menu-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.menu-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.menu-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  background: rgba(255, 71, 87, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

/* Badges */
.badge-popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-desc {
    margin: 0 auto 2rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image-container {
    margin-top: 3rem;
  }
  
  .nav-links {
    display: none;
  }
}
