/* css/styles.css */

:root {
    --brand-brown: #653617;
    --brand-tan: #cccc99;
    --brand-cream: #f2eec4;
    --brand-gold: #c39428;
    --brand-rust: #94460f;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--brand-brown);
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--brand-brown);
}

.text-gold { color: var(--brand-gold) !important; }
.text-rust { color: var(--brand-rust) !important; }
.bg-cream { background-color: #fdfdf9; } /* Very light cream for sections */

/* Buttons */
.btn-primary {
    background-color: var(--brand-rust);
    border-color: var(--brand-rust);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #7a3a0c;
    border-color: #7a3a0c;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--brand-rust);
    border-color: var(--brand-rust);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--brand-rust);
    color: #fff;
}

/* Hero Section */
.hero-section {
    /* Warm gradient overlay */
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%), url('../images/vhc-hero.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px 0;
}

/* 1. Default (Mobile) - Loads first on phones */
.hero-section {
    /* The Gradient Overlay + Mobile Image */
    background-image: 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%), 
        url('../images/vhc-hero-mobile.webp'); /* Your Portrait/Square Crop */
    
    background-size: cover;
    background-position: center bottom; /* Anchors image to bottom so heads aren't cut off */
    padding: 80px 0;
}

/* 2. Desktop Override - Triggers on screens wider than 992px */
@media (min-width: 992px) {
    .hero-section {
        background-image: 
            linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%), 
            url('../images/vhc-hero-desktop.webp'); /* Your Wide Crop */
        
        background-position: center right; /* Anchors couple to the right */
        padding: 120px 0 100px 0;
    }
}

/* Form Card */
.booking-card {
    background: white;
    border-top: 6px solid var(--brand-gold);
    box-shadow: 0 15px 35px rgba(101, 54, 23, 0.15);
    border-radius: 8px;
    padding: 35px;
}

/* Trust Badges (15 Years / 10k Procedures) */
.trust-badge {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--brand-tan);
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s;
    height: 100%;
}
.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Compassion Section icons */
.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--brand-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--brand-brown);
}

/* Modal Styling */
.modal-header {
    background-color: var(--brand-brown);
    color: white;
}

