/* ========================================
   Royal Dental Whittier - 6 Layout Variants
   CSS-only body class overrides
   Mobile collapses to single column
   ======================================== */

/* ---- Layout 1: Classic (default) ---- */
/* No overrides needed - this is the existing layout */

/* ---- Layout 2: Modern ---- */
/* Centered text, no hours card, larger headline, 3-col services */
@media (min-width: 1024px) {
  .layout-modern #home .grid { display: block; text-align: center; }
  .layout-modern #home .grid > div:last-child { display: none; }
  .layout-modern #home h1 { font-size: 5rem; }
  .layout-modern #home p { max-width: 640px; margin-left: auto; margin-right: auto; }
  .layout-modern #home .inline-flex { margin-left: auto; margin-right: auto; }
  .layout-modern #home .flex.gap-4 { justify-content: center; }
  .layout-modern #home .grid-cols-3 { justify-content: center; }
  .layout-modern .service-card { text-align: center; }
}

/* ---- Layout 3: Split ---- */
/* Shorter hero, 2-col wide service cards */
@media (min-width: 1024px) {
  .layout-split #home { min-height: 80vh; }
  .layout-split #home .grid { grid-template-columns: 1fr 1fr; }
  .layout-split .service-card { flex-direction: row; text-align: left; }
}

/* ---- Layout 4: Elegant ---- */
/* Centered, serif emphasis, more whitespace */
@media (min-width: 1024px) {
  .layout-elegant section { padding-top: 6rem; padding-bottom: 6rem; }
  .layout-elegant #home .grid { display: block; text-align: center; }
  .layout-elegant #home .grid > div:last-child { display: none; }
  .layout-elegant h1, .layout-elegant h2, .layout-elegant h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
  }
  .layout-elegant #home h1 { font-size: 4.5rem; font-weight: 500; }
  .layout-elegant #home p { max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1.125rem; line-height: 1.9; }
  .layout-elegant #home .inline-flex { margin-left: auto; margin-right: auto; }
  .layout-elegant #home .flex.gap-4 { justify-content: center; }
  .layout-elegant .service-card { border: 1px solid rgba(0,0,0,0.06); }
}

/* ---- Layout 5: Compact ---- */
/* Short hero, tight spacing, dense info, 4-col services */
@media (min-width: 1024px) {
  .layout-compact #home { min-height: 70vh; }
  .layout-compact #home .py-24 { padding-top: 4rem; padding-bottom: 4rem; }
  .layout-compact #home h1 { font-size: 3.5rem; }
  .layout-compact section { padding-top: 3rem; padding-bottom: 3rem; }
  .layout-compact h2 { font-size: 1.75rem; }
  .layout-compact .service-card { padding: 1.25rem; }
}

/* ---- Layout 6: Bold ---- */
/* Full-width, massive headline, strong accents */
@media (min-width: 1024px) {
  .layout-bold #home h1 { font-size: 6rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; }
  .layout-bold .service-card {
    border: 2px solid var(--color-primary, #2577eb);
    border-radius: 0.5rem;
  }
  .layout-bold .service-card:hover {
    background-color: var(--color-primary-light, #dbeffe);
  }
  .layout-bold section h2 { font-size: 2.75rem; font-weight: 800; }
  .layout-bold a[href="#book"],
  .layout-bold a[href="/#book"] {
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
  }
}
