/* =========================
   Base fonts — Desktop/Laptop
   (Let Tailwind handle sizing)
   ========================= */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}
h1, h2 {
    font-family: 'Playfair Display', serif;
}
p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* =========================
   Cards and hover effects
   ========================= */
.faq-card, .pricing-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.2s ease;
}
.faq-card:hover, .pricing-card:hover {
    transform: translateY(-2px);
}

/* =========================
   Scroll anchor adjustment
   ========================= */
#pricing {
    scroll-margin-top: 7rem;
}

/* =========================
   Mobile Font Fix
   ========================= */
@media only screen and (max-width: 736px) {
    html { font-size: 80%; }
    body { font-family: 'Montserrat', sans-serif; }
    h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        font-family: 'Playfair Display', serif;
    }
    h2 {
        font-size: clamp(1.3rem, 5vw, 2rem);
        font-family: 'Playfair Display', serif;
    }
    p { font-size: clamp(0.9rem, 3.5vw, 1.1rem); }
    .text-sm { font-size: 0.9rem; }
}

@media only screen and (max-width: 450px) and (orientation: portrait) {
    h1 {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
        font-family: 'Playfair Display', serif;
    }
    h2 {
        font-size: clamp(1.2rem, 4.5vw, 1.7rem);
        font-family: 'Playfair Display', serif;
    }
   /* p { font-size: clamp(0.85rem, 3vw, 1rem); } */
    p { font-size: 0.85rem; }
    .card-title { font-size: 1rem; }
    .card-text  { font-size: 0.85rem; }
    .card-body p { font-size: 0.85rem; }
    .btn-sm { font-size: 0.8rem; }
}
/* Portrait — iPhone Pro (393px) */
@media (max-width: 450px) and (orientation: portrait) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.3rem !important; }
    p  { font-size: 0.85rem !important; }
}
/* =========================
   Optional: lists, links
   ========================= */
ul, ol { margin-left: 1.25rem; }
a { color: #dc2626; text-decoration: none; }
a:hover { text-decoration: underline; }
