/* =============================================
   Bloom Hair Studio - Warm & Elegant Design
   Accent: Soft Pink (#db2777)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Playfair+Display:wght@700&amp;display=swap');

:root {
    --accent: #db2777;
    --accent-dark: #be185d;
    --light-bg: #fdf4f0;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    line-height: 1.6;
    color: #3f2a2a;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    tracking: -0.025em;
}

h1, h2 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Section Headers */
.section-header {
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 700;
    color: #3f2a2a;
}

/* Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(219 39 119 / 0.1);
}

/* Form Styling */
input, textarea {
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(219, 39, 119, 0.15);
}

/* Buttons */
.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
}