/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

:root {
    /* Color palette */
    --primary-sky: #A7C7E7;    /* Soft sky blue */
    --primary-water: #B8E0D2;  /* Pastel aqua */
    --primary-earth: #D4B59D;  /* Soft earth brown */
    --secondary-sky: #EAF2F6;  /* Light sky */
    --secondary-water: #E8F4F1; /* Light aqua */
    --secondary-earth: #F2E6DD; /* Light earth */
    --text-dark: #4A4A4A;
    --text-light: #FFFFFF;
}

/* Typography */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rouge Script', cursive;
    font-weight: 400;
}

.home-title {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    letter-spacing: 2px;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.75rem; }
h3 { font-size: 3rem; }
h4 { font-size: 2.25rem; }
h5 { font-size: 1.875rem; }
h6 { font-size: 1.5rem; }

.display-4 {
    font-size: 6.75rem;
    font-weight: 400;
    font-family: 'Rouge Script', cursive;
}

/* Navbar styles */
.navbar {
    background-color: var(--secondary-sky) !important;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(167, 199, 231, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 50px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Treatment Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--secondary-sky);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 1.5rem;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Treatment Header */
.treatment-header {
    padding-top: 120px;
    background-color: var(--primary-sky);
}

.treatment-header h1 {
    font-size: 7.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    background-color: var(--secondary-water);
    border-radius: 15px;
    padding: 2rem;
}

.form-control {
    border: 2px solid var(--primary-water);
    border-radius: 8px;
    padding: 0.8rem;
}

.form-control:focus {
    border-color: var(--primary-sky);
    box-shadow: 0 0 0 0.2rem rgba(167, 199, 231, 0.25);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-sky);
    border-color: var(--primary-sky);
    color: #4A4A4A;
    font-weight: 500;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-water);
    border-color: var(--primary-water);
    color: #2A2A2A;
    transform: translateY(-2px);
}

.card .btn-primary {
    background-color: var(--primary-sky);
    border-color: var(--primary-sky);
    color: #4A4A4A;
}

.card .btn-primary:hover {
    background-color: var(--primary-water);
    border-color: var(--primary-water);
    color: #2A2A2A;
}

.contact-form .btn-primary {
    background-color: var(--primary-sky);
    border-color: var(--primary-sky);
    color: #4A4A4A;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-water);
    border-color: var(--primary-water);
    color: #2A2A2A;
}

/* Contact Section */
.contact-info i {
    color: var(--primary-earth);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--primary-earth) !important;
}

footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 4.5rem;
    }

    .hero-section h1 {
        font-size: 4.5rem;
    }

    .hero-section h2 {
        font-size: 2.25rem;
    }

    .treatment-header h1 {
        font-size: 5.25rem;
    }

    h1 { font-size: 3.375rem; }
    h2 { font-size: 2.8125rem; }
    h3 { font-size: 2.25rem; }
    h4 { font-size: 1.6875rem; }
    h5 { font-size: 1.40625rem; }
    h6 { font-size: 1.125rem; }

    .treatment-header {
        padding-top: 80px;
    }

    .card {
        margin-bottom: 1.5rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .map-container {
        margin-bottom: 2rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-float i {
    text-decoration: none;
}

/* Studio Section */
.studio-description {
    max-width: 800px;
    margin: 0 auto;
}

.studio-content {
    text-align: left;
    padding: 2rem;
    background-color: var(--secondary-sky);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--secondary-water);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-earth);
    margin-top: 0.25rem;
}

.benefit-item p {
    margin: 0;
    margin-left: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .studio-content {
        padding: 1.5rem;
    }

    .benefit-item {
        padding: 0.75rem;
    }
}

.laura-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.laura-photo:hover {
    transform: scale(1.05);
}

.laura-photo-container {
    padding: 20px;
}

.laura-bio {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991.98px) {
    .laura-photo {
        width: 200px;
        height: 200px;
    }
} 