/* ==========================================================================
   Responsive Styles - Golden Wedding Theme
   ========================================================================== */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  h1 { font-size: 3.5rem; }
}

/* Desktop (1200px - 1919px) - Default styles apply */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  section { padding: 60px 0; }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  body { padding-top: 80px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  section { padding: var(--section-padding-mobile); }

  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }

  /* Navbar Mobile */
  .navbar-premium { padding: 0.75rem 0; }
  .navbar-premium .navbar-brand { font-size: 1.25rem; }

  /* Stats Bar Mobile */
  .stats-bar .stat-number { font-size: 1.75rem; }
  .stats-bar .stat-label { font-size: 0.8rem; }

  /* Cards Mobile */
  .premium-card { padding: 1.5rem; margin-bottom: 1.5rem; }

  /* Buttons Mobile */
  .btn-gold, .btn-gold-outline {
    padding: 10px 24px;
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  /* Footer Mobile */
  .footer-premium { padding: 3rem 0 1.5rem; }
  .footer-premium .col-lg-3 { margin-bottom: 2rem; }

  /* Floating Buttons Mobile */
  .floating-buttons { bottom: 80px; }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.75rem;
    z-index: var(--z-floating-buttons);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-medium);
  }

  .mobile-sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-sticky-cta .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  h1 { font-size: 1.75rem; }
  .premium-card { padding: 1.25rem; }
  .floating-btn { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* Touch Target Minimum Size - only for interactive elements in content */
.btn, .floating-btn, .back-to-top, .mobile-sticky-cta .btn {
  min-height: 44px;
}
