/* ==================== 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: 100px;
  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: 120px;
  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, #c44620, #e85d32);
  color: #fff !important;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(196, 70, 32, 0.3);
}

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

.nav-link.order-link:hover {
  background: linear-gradient(135deg, #a83616, #c44620);
  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: #c44620;
  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, #c44620, #a83616);
  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(196, 70, 32, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

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

.scroll-prompt {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #c44620;
  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: #c44620;
  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(196, 70, 32, 0.4);
}

.large-card {
  grid-row: span 2;
  min-height: auto;
}
.small-card {
  height: fit-content;
}

.burger-card {
  min-height: auto;
}

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

.large-card .burger-image {
  height: 320px;
}

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

.burger-info {
  position: relative;
  background: #1a1a1a;
  padding: 1.5rem;
  color: #fff;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.burger-card:hover .burger-info {
  transform: none;
}

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

.burger-info p {
  font-size: 0.8rem;
  color: #ccc;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.burger-info p:last-of-type {
  margin-bottom: 1rem;
}

.burger-story {
  position: relative;
}

.story-rest {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.read-more-btn {
  background: none;
  border: none;
  color: #e85d32;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: inline-block;
}

.read-more-btn:hover {
  color: #f5a060;
  text-decoration: underline;
}

.read-more-btn.expanded {
  color: #e85d32;
}

.order-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c44620, #e85d32);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(196, 70, 32, 0.4);
  margin-top: 0.5rem;
}

.order-btn:hover {
  background: linear-gradient(135deg, #a83616, #c44620);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 70, 32, 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(196, 70, 32, 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: #c44620;
  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: #c44620;
  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: 1rem 2rem;
  text-align: center;
}

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

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

.social-link {
  color: #c44620;
  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;
  }
}

/* ==================== GLOBAL MOBILE-SAFE DEFAULTS ==================== */

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

/* ==================== SHARED CONTAINER (menu / contact pages) ==================== */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Generic <header> used by menu.html / contact.html */
body > header {
  background: #0a0a0a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body > header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}

.logo {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c44620;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==================== HAMBURGER BUTTON ==================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ==================== PAGE HERO (menu / contact) ==================== */

.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  color: #fff;
}

.page-hero p {
  color: #c44620;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==================== MENU PAGE ==================== */

.menu-section {
  padding: 4rem 0;
  background: #f9f3eb;
}

.menu-section + .menu-section {
  background: #fff;
}

.menu-section h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 2.2rem;
  color: #c44620;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

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

.menu-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #c44620;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 70, 32, 0.15);
}

.menu-item h3 {
  font-size: 1.3rem;
  color: #7b3911;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.menu-item .description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.menu-item .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c44620;
  margin: 0;
}

/* ==================== CONTACT PAGE ==================== */

.contact-section {
  padding: 4rem 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2,
.location h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  color: #c44620;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h3 {
  font-size: 1.05rem;
  color: #7b3911;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item p,
.info-item a {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.info-item a:hover {
  color: #c44620;
}

.contact-form {
  background: #f9f3eb;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #c44620;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #7b3911;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #d6c5ad;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c44620;
  box-shadow: 0 0 0 3px rgba(196, 70, 32, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #c44620, #a83616);
  color: #fff;
  padding: 0.9rem 2rem;
  border: 0;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 70, 32, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #c44620, #a83616);
}

/* Map / location */
.location {
  padding: 3rem 0 5rem;
  background: #f9f3eb;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Generic <footer> used by menu.html / contact.html */
body > footer {
  background: #0a0a0a;
  color: #ccc;
  text-align: center;
  padding: 1.75rem 0;
  font-size: 0.9rem;
}

/* ==================== TABLET ==================== */

@media (max-width: 1024px) {
  .section-container,
  .container {
    padding: 0 1.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header {
    height: 90px;
  }

  .logo-img {
    height: 80px;
  }
}

/* ==================== MOBILE NAV / HAMBURGER ==================== */

@media (max-width: 768px) {
  /* Index page header */
  .header {
    height: 90px;
  }

  .header-content {
    padding: 0 1rem;
    position: relative;
  }

  .logo-img {
    height: 90px;
  }

  /* Show hamburger, collapse nav into a drawer */
  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 1rem 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link:last-child {
    border-bottom: 0;
  }

  .nav-link.order-link {
    margin: 0.75rem 1.5rem 0;
    width: auto;
    border-radius: 25px;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: 1px;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .scroll-prompt {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  /* Sections */
  .featured-burgers,
  .gallery-section,
  .reviews-social-section,
  .location-section {
    padding: 3rem 1rem;
  }

  .section-container {
    padding: 0 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Featured burgers single column */
  .burgers-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .burger-info {
    padding: 2rem 1.25rem 1.25rem;
  }

  .burger-info h3 {
    font-size: 1.4rem;
  }

  /* Gallery + reviews */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item {
    height: 220px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .social-section {
    padding: 2.5rem 1.25rem;
  }

  /* Location */
  .location-info {
    text-align: center;
  }

  .location-title {
    font-size: 1.75rem;
  }

  .location-address {
    font-size: 1.05rem;
  }

  .location-map {
    height: 280px;
  }

  /* Page hero (menu/contact) */
  .page-hero {
    padding: 3rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  /* Menu */
  .menu-section {
    padding: 2.5rem 0;
  }

  .menu-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-section {
    padding: 2.5rem 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info h2,
  .location h2 {
    font-size: 1.6rem;
  }
}

/* ==================== EXTRA-SMALL ==================== */

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

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

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

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

  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  .logo-img {
    height: 50px;
  }

  .header {
    height: 64px;
  }

  .nav {
    max-height: calc(100vh - 64px);
  }
}
