﻿
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary: #4a9d8f;
    --secondary: #7e9cb6;
    --accent: #f8b195;
    --light: #f5f7fa;
    --dark: #2d3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    color: var(--dark);
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 4s ease-in-out infinite;
}

.animate-breathe {
    animation: breathe 6s ease-in-out infinite;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .scroll-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #3a8277;
    }

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button hover effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: left 0.5s;
        z-index: -1;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

/* Card hover effect */
.service-card {
    transition: all 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

/* Navigation */
nav {
    transition: all 0.3s ease;
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

    .mobile-menu.active {
        transform: translateX(0);
    }

/* Hero section */
.hero-bg {
    background: linear-gradient(135deg, rgba(74, 157, 143, 0.9), rgba(126, 156, 182, 0.9)), url('/images/sarah.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Booking form */
.booking-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-step {
    display: none;
}

    .form-step.active {
        display: block;
        animation: fadeInUp 0.5s ease-out;
    }

.progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-step {
    height: 100%;
    background: var(--primary);
    width: 33.33%;
    transition: width 0.5s ease;
}

    .progress-step.step-2 {
        width: 66.66%;
    }

    .progress-step.step-3 {
        width: 100%;
    }

/* Testimonial carousel */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
}

/* Calendar */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .calendar-day:hover {
        background: #e2e8f0;
    }

    .calendar-day.selected {
        background: var(--primary);
        color: white;
    }

    .calendar-day.disabled {
        color: #cbd5e0;
        cursor: not-allowed;
    }

        .calendar-day.disabled:hover {
            background: transparent;
        }

/* Time slots */
.time-slot {
    padding: 10px 15px;
    border-radius: 8px;
    background: var(--light);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

    .time-slot:hover {
        background: #e2e8f0;
    }

    .time-slot.selected {
        background: var(--primary);
        color: white;
    }

    .time-slot.unavailable {
        color: #cbd5e0;
        cursor: not-allowed;
    }

        .time-slot.unavailable:hover {
            background: var(--light);
        }

