/* ==================== RESET & BASE STYLES ==================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}

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

/* ==================== HEADER ==================== */

.header {
  background: rgba(0, 0, 0, 0.95);
  height: 140px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-img {
  height: 160px;
  width: auto;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.08);
}

.nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-decoration: none;
  border: none;
}

.nav-link::after {
  display: none !important;
  content: none !important;
}

.nav-link.order-link {
  background: linear-gradient(135deg, #d32f2f, #f44336);
  color: #fff !important;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.nav-link.order-link::after {
  display: none;
}

.nav-link.order-link:hover {
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

/* ==================== HERO SECTION ==================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: slideUp 0.8s ease;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #d32f2f;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
  padding: 1.3rem 4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(211, 47, 47, 0.6);
}

.scroll-prompt {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #d32f2f;
  font-weight: 700;
  animation: bounce 2.5s infinite;
  text-transform: uppercase;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ==================== WELCOME ABOUT SECTION ==================== */

.welcome-about {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9f3eb 0%, #f5ede0 100%);
  position: relative;
}

.welcome-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #7b3911 0%, #c44620 50%, #7b3911 100%);
}

.welcome-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-header {
  text-align: left;
}

.welcome-label {
  font-size: 1.1rem;
  color: #7b3911;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.welcome-title {
  font-size: 4rem;
  font-weight: 700;
  color: #c44620;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
  font-family: 'Roboto Slab', serif;
}

.welcome-tagline {
  font-size: 1.3rem;
  color: #7b3911;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.welcome-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.welcome-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.welcome-image-wrapper:hover .welcome-hero-image {
  transform: scale(1.05);
}

.welcome-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 2.5rem;
  border-radius: 15px;
  border-left: 5px solid #c44620;
}

.welcome-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.welcome-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid #c44620;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(196, 70, 32, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #7b3911;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
  .welcome-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .welcome-title {
    font-size: 3rem;
  }

  .welcome-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .welcome-intro {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .welcome-about {
    padding: 3rem 1rem;
  }

  .welcome-title {
    font-size: 2.2rem;
  }

  .welcome-tagline {
    font-size: 1.1rem;
  }

  .welcome-label {
    font-size: 0.95rem;
  }

  .welcome-intro p {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* ==================== FEATURED BURGERS SECTION ==================== */

.featured-burgers {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: 'Roboto Slab', serif;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #d32f2f;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.burgers-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.burger-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.burger-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(211, 47, 47, 0.4);
}

.large-card {
  grid-row: span 2;
  min-height: 580px;
}

.burger-card {
  min-height: 380px;
}

.burger-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  flex: 1;
}

.burger-card:hover .burger-image {
  transform: scale(1.12);
  filter: brightness(0.8);
}

.burger-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 50%, transparent 100%);
  padding: 3rem 1.8rem 1.8rem;
  color: #fff;
  z-index: 10;
}

.burger-card:hover .burger-info {
  transform: translateY(0);
}

.burger-info h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
}

.burger-info p {
  font-size: 0.85rem;
  color: #ddd;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.order-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d32f2f, #f44336);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.order-btn:hover {
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(211, 47, 47, 0.6);
}

/* ==================== MENU CATEGORIES ==================== */

.menu-categories {
  display: none;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

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

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  group: hover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(211, 47, 47, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay h3 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: 'Roboto Slab', serif;
}

.category-overlay p {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
}

/* ==================== GALLERY SECTION ==================== */

.gallery-section {
  padding: 8rem 2rem;
  background: #1a1a1a;
  color: #fff;
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

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

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

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

/* ==================== REVIEWS & SOCIAL SECTION ==================== */

.reviews-social-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(196, 70, 32, 0.3);
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(196, 70, 32, 0.1);
  border-color: rgba(196, 70, 32, 0.6);
  transform: translateY(-8px);
}

.star-rating {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #ddd;
}

.review-author {
  font-weight: 600;
  color: #c44620;
  margin: 0;
}

.social-section {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(196, 70, 32, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(196, 70, 32, 0.3);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.social-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
  color: #c44620;
  font-family: 'Roboto Slab', serif;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid transparent;
}

.social-icon {
  font-size: 1.5rem;
}

.social-btn.facebook {
  background: #1877f2;
  color: #fff;
}

.social-btn.facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.social-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.social-btn.tiktok {
  background: #000;
  color: #25f4ee;
  border-color: #25f4ee;
}

.social-btn.tiktok:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 244, 238, 0.3);
  background: #25f4ee;
  color: #000;
}

@media (max-width: 768px) {
  .social-links {
    gap: 1rem;
  }

  .social-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .social-title {
    font-size: 1.5rem;
  }
}

/* ==================== LOCATION SECTION ==================== */

.location-section {
  padding: 8rem 2rem;
  background: #fff;
}

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

.location-info {
  text-align: left;
}

.location-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: -1px;
  font-family: 'Roboto Slab', serif;
}

.location-address {
  font-size: 1.3rem;
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.location-contact {
  font-size: 1rem;
  color: #666;
  line-height: 2;
  margin-bottom: 2rem;
}

.location-contact a {
  color: #d32f2f;
  font-weight: 600;
}

.location-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== FOOTER ==================== */

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-text {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.social-link {
  color: #d32f2f;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #fff;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

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

  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .burgers-showcase {
    grid-template-columns: 1fr;
  }

  .burger-card,
  .large-card {
    grid-column: span 1;
    grid-row: auto;
    height: 350px;
    min-height: 350px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .featured-burgers,
  .menu-categories,
  .gallery-section,
  .benefits-section,
  .location-section {
    padding: 4rem 1.5rem;
  }
}
