:root {
  --pastel-pink: #F5B8CF;
  --pastel-blue: #BFEAF0;
  --brand-blue: #4A6FB4;
  --vanilla-white: #FFF9F5;
  --cream-beige: #F7E6C4;
  --soft-gray: #6D6D6D;
  --dark-text: #2d2d2d;
  
  --font-heading: 'Fredoka', sans-serif;
  --font-subheading: 'Baloo 2', sans-serif;
  --font-accent: 'Pacifico', cursive;
  --font-body: 'Poppins', sans-serif;
  
  --shadow-soft: 0 10px 30px rgba(74, 111, 180, 0.08);
  --shadow-hover: 0 20px 40px rgba(74, 111, 180, 0.15);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--vanilla-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-blue);
  line-height: 1.2;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--pastel-pink);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Base Styles & Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink), #e8a1ba);
  color: white;
  box-shadow: 0 8px 20px rgba(245, 184, 207, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(245, 184, 207, 0.6);
}

.btn-secondary {
  background-color: white;
  color: var(--brand-blue);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--pastel-pink);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

/* Loading Screen */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--vanilla-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  animation: float 3s ease-in-out infinite, pulse 2s infinite alternate;
  box-shadow: var(--shadow-soft);
  border: 4px solid white;
}

.loader-drip {
  width: 60px;
  height: 60px;
  margin-top: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%23F5B8CF" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C12 2 5 10.086 5 14.5C5 18.366 8.134 21.5 12 21.5C15.866 21.5 19 18.366 19 14.5C19 10.086 12 2 12 2Z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation: drip 1.5s infinite;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 249, 245, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 249, 245, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: rotate(10deg) scale(1.05);
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-blue);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--soft-gray);
  transition: var(--transition);
  font-size: 1.05rem;
}

.nav-link:hover {
  color: var(--pastel-pink);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--brand-blue);
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--vanilla-white) 0%, var(--pastel-blue) 100%);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float-slow 10s ease-in-out infinite alternate;
}

.hero-shape-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--pastel-pink);
}

.hero-shape-2 {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--cream-beige);
  animation-delay: 2s;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content h1 span {
  display: block;
  font-size: 2.5rem;
  font-family: var(--font-accent);
  color: var(--pastel-pink);
  margin-top: 10px;
  transform: rotate(-2deg);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--soft-gray);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 80%;
  max-width: 500px;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(74, 111, 180, 0.2);
  transform: rotate(5deg);
  animation: float 4s ease-in-out infinite;
  border: 10px solid white;
}

.floating-element {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
  font-size: 2rem;
  animation: float 3s ease-in-out infinite alternate;
  z-index: 2;
}

.float-1 { top: 10%; right: 10%; animation-delay: 0.5s; }
.float-2 { bottom: 20%; left: 0; animation-delay: 1.5s; font-size: 2.5rem; }
.float-3 { bottom: 5%; right: 15%; animation-delay: 2.5s; width: 60px; height: 60px; font-size: 1.5rem; }

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--soft-gray);
  font-family: var(--font-subheading);
}

/* Categories Section */
.categories {
  background-color: white;
  position: relative;
}

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

.category-card {
  background: var(--vanilla-white);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pastel-pink);
  background: white;
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--pastel-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: var(--brand-blue);
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--pastel-pink);
  color: white;
  transform: scale(1.1) rotate(10deg);
}

.category-card h3 {
  font-size: 1.5rem;
  font-family: var(--font-subheading);
}

/* Featured Flavors */
.featured {
  background: linear-gradient(to bottom, white, var(--cream-beige));
}

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

.flavor-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.flavor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.flavor-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.flavor-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.flavor-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-pink);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-subheading);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.flavor-content {
  padding: 30px;
  text-align: center;
}

.flavor-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.flavor-content p {
  color: var(--soft-gray);
  margin-bottom: 20px;
}

/* Promo Section */
.promo {
  padding: 100px 0;
  background: var(--brand-blue);
  color: white;
  position: relative;
  overflow: hidden;
}

.promo-shape {
  position: absolute;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="%23F7E6C4" opacity=".25"/><path d="M0 0v15.81c13 21.11 27.64 41.05 47.69 56.24C99.41 111.27 165 111 224.58 91.58c31.15-10.15 60.09-26.07 89.67-39.8 40.92-19 84.73-46 130.83-49.67 36.26-2.85 70.9 9.42 98.6 31.56 31.77 25.39 62.32 62 103.63 73 40.44 10.79 81.35-6.69 119.13-24.28s75.16-39 116.92-43.05c59.73-5.85 113.28 22.88 168.9 38.84 30.2 8.66 59 6.17 87.09-7.5 22.43-10.89 48-26.93 60.65-51.24V0z" fill="%23F7E6C4" opacity=".5"/><path d="M0 0v5.63C149.93 59 314.09 71.32 475.83 42.57c43-7.64 84.23-20.12 127.61-26.46 59-8.63 112.48 12.24 165.56 35.4C827.93 77.22 886 95.24 951.2 90c86.53-7 172.46-45.71 248.8-84.81V0z" fill="%23F7E6C4"/></svg>');
  background-size: cover;
}

.promo-top { top: 0; transform: rotate(180deg); }
.promo-bottom { bottom: 0; }

.promo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.promo-content {
  flex: 1;
}

.promo-badge {
  display: inline-block;
  background: var(--pastel-pink);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: pulse 2s infinite alternate;
}

.promo h2 {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.promo p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.promo-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.promo-sticker {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #FFD166;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  transform: rotate(15deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  top: -20px;
  right: 50px;
  animation: wiggle 3s infinite;
}

.promo-sticker span {
  font-size: 2.5rem;
}

/* Full Menu */
.menu {
  background-color: var(--vanilla-white);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: white;
  color: var(--soft-gray);
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
}

.menu-tab.active, .menu-tab:hover {
  background: var(--pastel-blue);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-3px);
}

.menu-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.menu-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.menu-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
  border-left: 4px solid var(--pastel-pink);
}

.menu-item-icon {
  width: 40px;
  height: 40px;
  background: var(--vanilla-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--pastel-pink);
  font-size: 1.2rem;
}

.menu-item-name {
  font-weight: 600;
  font-family: var(--font-subheading);
  font-size: 1.1rem;
}

/* Selector de Antojo */
.mood-selector {
  background: linear-gradient(135deg, var(--pastel-blue), #e0f4f7);
  border-radius: var(--radius-lg);
  padding: 60px;
  margin: 80px 0;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.mood-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.mood-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.mood-btn {
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  background: white;
  color: var(--brand-blue);
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.mood-btn:hover, .mood-btn.active {
  background: var(--brand-blue);
  color: white;
  transform: scale(1.05);
}

.mood-result {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  display: none;
  animation: fadeInUp 0.5s ease;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-hover);
}

.mood-result.active {
  display: block;
}

.mood-result h4 {
  color: var(--pastel-pink);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.mood-result p {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--brand-blue);
}

/* How to order */
.how-to {
  background: white;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: dashed 4px var(--pastel-blue);
  z-index: 0;
}

@media (max-width: 768px) {
  .steps-container::before {
    display: none;
  }
}

.step-card {
  background: var(--vanilla-white);
  width: 280px;
  padding: 40px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  border: 2px solid white;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--pastel-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(245, 184, 207, 0.4);
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Instagram Gallery */
.gallery {
  background: var(--vanilla-white);
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 111, 180, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2.5rem;
}

/* Location */
.location {
  background: white;
  padding-top: 100px;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  height: 400px;
}

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

.location-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--pastel-blue);
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--brand-blue);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23ffffff"></path></svg>');
  background-size: cover;
}

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

.footer-col h4 {
  color: var(--pastel-blue);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--pastel-pink);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes drip {
  0% { transform: translateY(0) scaleY(1); opacity: 1; }
  80% { transform: translateY(20px) scaleY(1.5); opacity: 0; }
  100% { transform: translateY(0) scaleY(1); opacity: 0; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(15deg); }
  50% { transform: rotate(25deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container, .location-container, .promo-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .promo-visual {
    margin-top: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.5s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h1 span {
    font-size: 2rem;
  }
  
  .promo h2 {
    font-size: 3rem;
  }
}
