/* --- MODERN 33 NEIGHBOR BURGER STYLES --- */

:root {
  --primary: #d32f2f;      
  --accent: #ffb300;       
  --dark: #121212;         
  --light: #f8f9fa;        
  --glass: rgba(255, 255, 255, 0.95);
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lexend', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* --- NAVIGATION --- */
nav {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo { 
  font-family: 'Bungee', sans-serif; 
  color: white; 
  text-decoration: none; 
  font-size: 1.2rem; /* Reduced slightly to fit longer name */
  letter-spacing: 1px;
}

.logo span { color: var(--primary); }

.brand-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border-left: 2px solid #444;
  padding-left: 15px;
  transition: 0.3s;
  white-space: nowrap;
}

.brand-phone:hover { color: white; }

.menu-links a { 
  color: #ccc; 
  text-decoration: none; 
  margin-left: 20px; 
  font-weight: 500; 
  transition: 0.3s; 
}

.menu-links a:hover { color: white; }

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
}

/* --- HERO SECTION --- */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=2000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 60px;
}

.badge { 
  background: var(--accent); 
  color: var(--dark); 
  padding: 6px 16px; 
  border-radius: 50px; 
  font-size: 0.8rem; 
  font-weight: bold; 
  text-transform: uppercase;
}

.hero h1 { 
  font-size: 4.5rem; 
  margin: 20px 0; 
  line-height: 1.1; 
}

.highlight { 
  color: var(--primary); 
  font-family: 'Bungee', sans-serif; 
}

.hero-btns { margin-top: 30px; }

.btn-primary { 
  background: var(--primary); 
  color: white; 
  padding: 16px 32px; 
  text-decoration: none; 
  border-radius: var(--radius); 
  display: inline-block; 
  margin: 10px; 
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary { 
  background: white; 
  color: var(--dark); 
  padding: 16px 32px; 
  text-decoration: none; 
  border-radius: var(--radius); 
  display: inline-block; 
  margin: 10px; 
  font-weight: bold; 
  transition: 0.3s;
}

.btn-primary:hover, .btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* --- MENU CATEGORIES --- */
.category { padding: 100px 20px; }
.light-bg { background-color: #f0f0f0; }

.section-header { text-align: center; margin-bottom: 60px; }
.subtitle { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 0.9rem; }
.section-header h2 { font-size: 2.5rem; font-family: 'Bungee', sans-serif; margin-top: 10px; }

/* --- PRODUCT GRID --- */
.grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.modern-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 1px solid transparent;
}

.modern-card:hover { 
  transform: translateY(-12px); 
  border-color: var(--accent);
}

.card-img-wrapper { height: 220px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.modern-card:hover .card-img-wrapper img { scale: 1.1; }

.card-info { padding: 25px; }
.card-info h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--dark); }
.card-info p { font-size: 0.95rem; color: #666; height: 45px; overflow: hidden; }

.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.price { font-weight: 800; font-size: 1.3rem; color: var(--primary); }
.card-footer i { font-size: 1.6rem; color: #eee; transition: 0.3s; }
.modern-card:hover .card-footer i { color: var(--primary); }

/* --- TEAM SECTION --- */
.team-section { background: #1a1a1a; color: white; padding: 100px 20px; }
.team-section .subtitle { color: var(--accent); }
.team-section h2 { color: white; }

.team-grid { 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  gap: 25px; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.team-card {
  background: #252525;
  padding: 40px 20px;
  border-radius: var(--radius);
  text-align: center;
  width: 220px;
  transition: 0.3s;
}

.team-card:hover { background: #333; }

.avatar-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--accent);
}

.avatar-box img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
.team-card span { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; font-weight: bold; }

/* --- MODAL --- */
.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.modal-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 20px 0;
}

.close-btn { position: absolute; top: 20px; right: 25px; font-size: 2rem; cursor: pointer; color: #999; }

.order-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}
.footer-socials a .fa-youtube:hover {
  color: #FF0000;
}
/* --- FOOTER --- */
footer {
  background: var(--dark);
  color: #888;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-socials { margin-top: 20px; }
.footer-socials a { color: white; margin: 0 15px; font-size: 1.4rem; transition: 0.3s; }
.footer-socials a:hover { color: var(--primary); }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .logo { font-size: 1rem; }
  .brand-phone { font-size: 0.8rem; padding-left: 10px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .brand-phone { display: none; }
  .menu-links a:not(.nav-cta) { display: none; }
}