/* =============================================
   IGLESIA CRISTO VIVIENTE - Landing Page
   ============================================= */

/* CSS Variables - Brand Colors */
:root {
  /* Brand */
  --brand-primary: #064c53;
  --brand-primary-light: #009dad;
  --brand-primary-dark: #043a40;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-app: #d6e0e0;
  --bg-dark: #064c53;
  --bg-overlay: rgba(6, 76, 83, 0.95);

  /* Text */
  --text-primary: #242424;
  --text-secondary: #6b7280;
  --text-muted: #9e9e9e;
  --text-light: #ffffff;

  /* Borders */
  --border-primary: #e5e7eb;
  --border-secondary: #d1d5db;

  /* Accents */
  --accent-primary: #009dad;
  --accent-success: #059669;

  /* Spacing */
  --section-padding: 120px;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts — SF Pro on Apple devices, system sans-serif elsewhere */
  --font-display:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   ANIMATIONS
   ============================================= */

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) {
  transition-delay: 0.05s;
}
.animate-on-scroll:nth-child(3) {
  transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(4) {
  transition-delay: 0.15s;
}
.animate-on-scroll:nth-child(5) {
  transition-delay: 0.2s;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Gradient shift */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Shine effect */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-medium);
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.navbar-scrolled .nav-logo,
.navbar-scrolled .nav-link {
  color: var(--text-primary);
}

.navbar-scrolled .nav-link-cta {
  background: var(--brand-primary);
  color: var(--text-light) !important;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-scrolled .nav-link:hover {
  background: var(--bg-secondary);
}

.nav-link-cta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.nav-link-cta:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.navbar-scrolled .nav-link-cta:hover {
  background: var(--brand-primary-dark) !important;
}

/* Nav social - hidden on desktop, shown in mobile menu */
.nav-social {
  display: none;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all var(--transition-fast);
}

.navbar-scrolled .nav-toggle span {
  background: var(--text-primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  background: var(--brand-primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 58, 64, 0.85) 0%,
    rgba(6, 76, 83, 0.75) 50%,
    rgba(3, 43, 47, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--accent-primary), #4dd4e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-light);
  border: none;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 157, 173, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title-light {
  color: var(--text-light);
}

.text-accent {
  color: var(--accent-primary);
}

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

.about {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: 16px;
  transition: all var(--transition-medium);
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--accent-primary)
  );
  border-radius: 12px;
  color: var(--text-light);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text strong {
  font-size: 1rem;
  color: var(--text-primary);
}

.feature-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* About visual */
.about-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.visual-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 28px;
  background: linear-gradient(
    to top,
    rgba(4, 58, 64, 0.95) 0%,
    rgba(4, 58, 64, 0.8) 40%,
    transparent 100%
  );
}

.visual-verse {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.visual-reference {
  display: block;
  font-size: 1rem;
  color: var(--accent-primary);
  font-weight: 500;
}

.visual-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--accent-primary);
  border-radius: 24px;
  opacity: 0.3;
  z-index: -1;
}

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

.gallery {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* =============================================
   SCHEDULE SECTION
   ============================================= */

.schedule {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
  z-index: 0;
}

.schedule-bg {
  position: absolute;
  inset: 0;
}

.schedule-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 58, 64, 0.92) 0%,
    rgba(3, 43, 47, 0.95) 100%
  );
}

.schedule > .container {
  position: relative;
  z-index: 1;
}

.schedule-header {
  text-align: center;
  margin-bottom: 60px;
}

.schedule-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.schedule-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px;
  transition: all var(--transition-medium);
}

.schedule-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.schedule-card-featured {
  background: var(--bg-primary);
  border: none;
}

.schedule-card-featured:hover {
  background: var(--bg-primary);
}

.schedule-card-featured .card-day,
.schedule-card-featured .card-info h3,
.schedule-card-featured .card-info p {
  color: var(--text-primary);
}

.schedule-card-featured .card-time {
  color: var(--text-secondary);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-primary);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
}

.card-day {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.card-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.card-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.card-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

.location {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

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

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.address-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--accent-primary)
  );
  border-radius: 16px;
  color: var(--text-light);
}

.address-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-text strong {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.address-text span {
  color: var(--text-secondary);
}

.location-map {
  position: relative;
}

.map-wrapper {
  position: relative;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.map-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--accent-primary);
  border-radius: 24px;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* =============================================
   APP PROMO SECTION
   ============================================= */

.app-promo {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  text-align: center;
}

.app-promo-content {
  max-width: 600px;
  margin: 0 auto;
}

.app-promo-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.app-stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-primary);
  border-radius: 16px;
  transition: all var(--transition-medium);
}

.store-badge-disabled {
  opacity: 0.6;
  cursor: default;
}

.store-badge svg {
  flex-shrink: 0;
  color: var(--text-primary);
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.store-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.store-text strong {
  font-size: 1rem;
  color: var(--text-primary);
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-primary);
  border-radius: 16px;
  transition: all var(--transition-medium);
}

.contact-method:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.method-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--accent-primary)
  );
  border-radius: 16px;
  color: var(--text-light);
}

.method-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.method-text strong {
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Social links */
.contact-social h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: 16px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition-medium);
}

.social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-youtube:hover {
  background: #ff0000;
  color: white;
}

.social-youtube:hover svg {
  fill: white;
}

.social-instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
}

.social-instagram:hover svg {
  fill: white;
}

.social-facebook:hover {
  background: #1877f2;
  color: white;
}

.social-facebook:hover svg {
  fill: white;
}

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

.footer {
  background: var(--brand-primary);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  width: 44px;
  height: 44px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 1024px) {
  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .schedule-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-visual {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    height: 240px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: var(--brand-primary-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu .nav-link {
    color: var(--text-light);
    padding: 16px 32px;
    width: auto;
    text-align: center;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
    transition:
      opacity var(--transition-fast),
      transform var(--transition-fast);
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
  }

  .nav-menu li:has(.nav-link-cta) {
    margin-top: 12px;
  }

  .nav-menu .nav-link-cta {
    background: none;
    color: var(--text-light) !important;
    opacity: 0.8;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span {
    background: var(--text-light);
  }

  .nav-social {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-social a {
    color: rgba(255, 255, 255, 0.6);
    transition:
      color var(--transition-fast),
      transform var(--transition-fast);
  }

  .nav-social a:hover {
    color: var(--text-light);
    transform: scale(1.15);
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-item {
    height: 160px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 300px;
  }

  .app-stores {
    flex-direction: column;
    align-items: center;
  }

  /* Prevent long email from overflowing */
  .method-text strong {
    font-size: 0.95rem;
    word-break: break-all;
  }

  /* Footer links wrap nicely */
  .footer-links {
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .schedule-card {
    padding: 24px;
  }

  .card-day {
    font-size: 2.5rem;
  }

  .visual-card {
    padding: 0;
    min-height: 300px;
  }

  .visual-verse {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  /* Stack contact methods tighter */
  .contact-method {
    padding: 16px;
    gap: 14px;
  }

  .method-icon {
    width: 44px;
    height: 44px;
  }

  .method-text strong {
    font-size: 0.85rem;
  }

  /* Smaller address icon */
  .address-icon {
    width: 44px;
    height: 44px;
  }

  .map-wrapper {
    height: 250px;
  }
}
