/* ============================================
   RESPONSIVE.CSS — Media Queries
   Wedding Wow Creations | Luxury Wedding Planning
   ============================================ */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
  }

  .hero-text .eyebrow {
    justify-content: center;
  }

  .hero-text .eyebrow::before {
    display: block;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-collage {
    display: none;
  }

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

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

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

  .inquiry-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .floating-sidebar {
    display: none;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}


/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {

  section {
    padding: 60px 0;
  }

  /* Navbar */
  #navbar {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Navbar pill narrower on mobile */
  #navbar {
    width: calc(100% - 24px);
    padding: 10px 16px;
    top: 10px;
  }

  /* About: show collage as simple stacked block on mobile */
  .about-img-collage {
    display: block;
    margin-bottom: 0;
  }

  .about-img-main {
    height: 280px;
    border-radius: 16px;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 12px;
    border: none;
    box-shadow: none;
    aspect-ratio: 16/9;
  }

  .about-heart-badge {
    display: none;
  }

  /* Services: 2 columns on mobile */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-img-arch {
    max-width: 140px;
  }

  .service-title {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .service-desc {
    font-size: 0.72rem;
  }

  /* Why: 1 column */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials: 1 column */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Blog: 1 column */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-img {
    height: 200px;
  }

  /* FAQ: 1 column */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Process: vertical stack, single column */
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    width: 100%;
    max-width: 320px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .process-circle {
    width: 140px;
    height: 140px;
  }

  .process-desc {
    max-width: 260px;
  }

  /* Process quote banner: stack vertically */
  .process-quote-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .process-quote-photos {
    height: 180px;
  }

  .process-quote-text {
    padding: 24px 20px;
  }

  .process-quote-content {
    font-size: 0.95rem;
  }

  /* Gallery featured: single column */
  .gallery-featured {
    grid-template-columns: 1fr;
  }

  .gallery-featured-img {
    height: 220px;
  }

  .gallery-featured-info {
    padding: 24px 20px;
  }

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

  .gallery-featured-meta {
    gap: 10px;
  }

  /* Gallery category grid: 2 columns */
  .gallery-cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-cat-name {
    font-size: 0.85rem;
  }

  .gallery-cat-sub {
    font-size: 0.65rem;
  }

  /* Gallery filters: wrap nicely */
  .gallery-filters {
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 7px 14px;
    font-size: 0.72rem;
  }

  /* Inquiry: single column, full width form */
  .inquiry-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-left: 0;
  }

  .inquiry-form {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact: 1 column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer: 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Footer ballpit: keep on mobile, reduce opacity for readability */
  #footer-ballpit {
    display: block;
    opacity: 0.45;
    /* dimmer so text stays readable */
    pointer-events: none;
  }

  footer {
    padding: 48px 0 0;
  }

  footer::before {
    display: none;
  }

  /* Footer text needs contrast above ballpit */
  footer .container {
    position: relative;
    z-index: 2;
  }

  .footer-grid {
    position: relative;
    z-index: 2;
  }

  .footer-bottom {
    position: relative;
    z-index: 2;
  }

  /* Hero stats */
  .hero-stats {
    gap: 20px;
  }

  /* About features: 1 column */
  .about-features {
    grid-template-columns: 1fr;
  }

  /* Section header font sizes */
  .section-header {
    margin-bottom: 36px;
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* Quick bar: 2 columns */
  .quick-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-bar-item:nth-child(2) {
    border-right: none;
  }

  .quick-bar-item:nth-child(3) {
    border-right: 1px solid var(--cream-dark);
  }

  .quick-bar-item:nth-child(3),
  .quick-bar-item:nth-child(4) {
    border-top: 1px solid var(--cream-dark);
  }
}


/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {

  /* Gallery: 1 column */
  .gallery-cats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter-btn {
    padding: 6px 12px;
    font-size: 0.68rem;
  }

  /* Services: 1 column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Hero buttons */
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-center-content {
    padding: 140px 16px 80px;
  }

  /* Inquiry form padding */
  .inquiry-form {
    padding: 20px 12px;
  }

  /* Process circle smaller */
  .process-circle {
    width: 120px;
    height: 120px;
  }

  /* Footer grid 1 col already, reduce padding */
  footer {
    padding: 36px 0 0;
  }

  .footer-grid {
    gap: 24px;
    padding-bottom: 32px;
  }

  /* About section */
  .about-img-main {
    height: 220px;
  }

  /* Blog image shorter */
  .blog-img {
    height: 160px;
  }

  /* Section padding tighter */
  section {
    padding: 48px 0;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Navbar even more compact */
  #navbar {
    width: calc(100% - 16px);
    padding: 8px 14px;
  }

  .nav-logo-mark {
    font-size: 1.6rem;
  }

  .nav-logo-name {
    font-size: 0.8rem;
  }

  .nav-logo-tagline {
    display: none;
  }

  /* Gallery featured stacked */
  .gallery-featured-img {
    height: 180px;
  }

  /* Process quote photos shorter */
  .process-quote-photos {
    height: 140px;
  }
}