/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette */
  --color-primary: #d4af37;
  --color-primary-dark: #b8941f;
  --color-secondary: #2c3e50;
  --color-accent: #e8d5b7;
  --color-dark: #1a1a1a;
  --color-light: #f8f5f0;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.language-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  padding: 8px 16px;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 20px;
  transition: all var(--transition-fast);
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ========================================
   STICKY NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  z-index: 999;
  transition: all var(--transition-fast);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

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

.nav-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  margin: 3px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-light) 100%);
  background-image: url('images/hero-rings.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-names {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--color-secondary);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.countdown-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 36px;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.5;
    top: 16px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--spacing-xl) 0;
}

.section-dark {
  background: var(--color-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

/* ========================================
   INVITACIÓN SECTION
   ======================================== */
.invitacion-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.ornament-top,
.ornament-bottom {
  font-size: 2rem;
  color: var(--color-primary);
  margin: 1rem 0;
}

.invitacion-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.padres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.padres-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.padres-nombres {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.padrinos {
  text-align: center;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.padrinos-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.padrinos-nombres {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
}

.invitacion-closing {
  font-size: 1.1rem;
  color: var(--color-text);
  font-style: italic;
}

/* ========================================
   CRONOGRAMA/TIMELINE
   ======================================== */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-icon {
  font-size: 3rem;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.timeline-content {
  flex: 1;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.timeline-time {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.3rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: var(--color-text-light);
}

/* ========================================
   LOCATION SECTIONS (Ceremonia/Banquete)
   ======================================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.location-grid.reverse {
  direction: rtl;
}

.location-grid.reverse > * {
  direction: ltr;
}

.location-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.location-image:hover img {
  transform: scale(1.05);
}

.location-info {
  padding: 2rem;
}

.location-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.location-time {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-address {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-location {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 30px;
  transition: all var(--transition-fast);
  font-weight: 600;
  margin-bottom: 2rem;
}

.btn-location:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ========================================
   RSVP FORM
   ======================================== */
.rsvp-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.btn-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.success-message {
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 8px;
  text-align: center;
}

.success-message p {
  color: #155724;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ========================================
   REGALOS SECTION
   ======================================== */
.gift-icon {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
}

.regalos-text {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.bank-details {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.bank-label {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.bank-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.bank-info span {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--color-light);
  border-radius: 5px;
}

.btn-copy {
  padding: 0.5rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-copy:hover {
  background: var(--color-primary-dark);
}

.bank-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-secondary);
}

/* ========================================
   PLAYLIST SECTION
   ======================================== */
.playlist-form {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

.form-row input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-add {
  padding: 0.875rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-add:hover {
  background: var(--color-primary-dark);
}

.songs-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.song-item {
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideIn 0.3s ease;
}

.song-info {
  flex: 1;
}

.song-title {
  font-weight: 600;
  color: var(--color-secondary);
}

.song-artist {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   TABS (Información Práctica)
   ======================================== */
.tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 0.875rem 2rem;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.tab-content {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

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

.info-block {
  margin-bottom: 2rem;
}

.info-block h4 {
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.info-block p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--color-white);
  font-size: 3rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  user-select: none;
  transition: color var(--transition-fast);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-primary);
}

/* ========================================
   STORY TIMELINE
   ======================================== */
.story-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.story-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 5px;
}

.story-item h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.story-item p {
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.footer-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer-date {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-love {
  font-style: italic;
  opacity: 0.8;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
  }
}

/* Mobile (320px - 768px) */
@media (max-width: 768px) {
  .language-toggle {
    top: 15px;
    right: 15px;
    padding: 6px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  /* Mobile Navigation */
  .nav-container {
    padding: 1rem;
  }

  .nav-brand {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    transition: left var(--transition-fast);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  /* Hero */
  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-names {
    font-size: 2.5rem;
  }

  .hero-date {
    font-size: 1.3rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.75rem;
  }

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

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

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

  /* Invitación */
  .invitacion-content {
    padding: 2rem 1.5rem;
  }

  .invitacion-text {
    font-size: 1.1rem;
  }

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

  /* Timeline */
  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-icon {
    font-size: 2.5rem;
    min-width: 70px;
    height: 70px;
  }

  /* Location Grid */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-image {
    min-height: 300px;
  }

  .location-info {
    padding: 1rem;
  }

  /* Forms */
  .rsvp-form,
  .playlist-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row .form-group {
    min-width: 100%;
  }

  .btn-add {
    width: 100%;
  }

  /* Tabs */
  .tab-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tab-btn {
    width: 100%;
  }

  .tab-content {
    padding: 2rem 1.5rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero-names {
    font-size: 2rem;
  }

  .countdown {
    gap: 0.75rem;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .padrinos-nombres {
    font-size: 1.4rem;
  }

  .bank-info {
    flex-direction: column;
  }

  .bank-info span {
    font-size: 0.9rem;
    word-break: break-all;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .language-toggle,
  .scroll-indicator,
  .cta-button,
  .btn-location,
  .btn-submit,
  .btn-copy,
  .btn-add {
    display: none;
  }

  .hero {
    background-attachment: scroll;
  }

  body {
    font-size: 12pt;
  }
}
