/* Custom CSS for Camille Carbon Osteopath Website */

:root {
    --sage: #B8956A;
    --sage-dark: #8B6340;
    --accent: #D4B896;
    --bg-beige: #FAF6F1;
    --bg-alt: #FDF9F5;
    --text-dark: #2C2C2C;
    --footer: #3A2C1C;
}

/* Font Classes */
.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Colors */
.text-sage {
    color: var(--sage);
}

.text-sage-dark {
    color: var(--sage-dark);
}

.text-accent {
    color: var(--accent);
}

.bg-sage {
    background-color: var(--sage);
}

.bg-sage-dark {
    background-color: var(--sage-dark);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-footer {
    background-color: var(--footer);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, var(--bg-beige), #f0ebe1);
    position: relative;
    overflow: hidden;
}


/* Sections Background */
.section-bg {
    background-color: var(--bg-beige);
}

.section-bg-alt {
    background-color: var(--bg-alt);
}

/* Section Titles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Navigation */
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--sage-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--sage);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-mobile {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--sage-dark);
}

/* Buttons */
.btn-primary {
    background-color: var(--sage);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 144, 112, 0.3);
}

.btn-primary-mobile {
    background-color: var(--sage);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary-mobile:hover {
    background-color: var(--sage-dark);
}

.btn-primary-hero {
    background-color: var(--sage);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary-hero:hover {
    background-color: var(--sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 144, 112, 0.3);
}

.btn-secondary-hero {
    border: 2px solid var(--sage);
    color: var(--sage-dark);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background-color: var(--sage);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 144, 112, 0.2);
}

.btn-cta-primary {
    background-color: white;
    color: var(--sage-dark);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: white;
    color: var(--sage-dark);
    transform: translateY(-3px);
}

/* Badges */
.badge {
    background-color: rgba(212, 184, 150, 0.2);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(212, 184, 150, 0.3);
}

.badge-alt {
    background-color: rgba(143, 175, 143, 0.1);
    color: var(--sage-dark);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(143, 175, 143, 0.2);
}

/* Specialty Cards */
.specialty-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.specialty-icon {
    background-color: rgba(143, 175, 143, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.specialty-icon i,
.specialty-icon svg {
    color: var(--sage-dark);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* Indication Items */
.indication-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: white;
    border-radius: 0.5rem;
    border-left: 4px solid var(--sage);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.indication-item:hover {
    background-color: rgba(143, 175, 143, 0.05);
}

/* Session Cards */
.session-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient for sage-light */
.from-sage-light {
    --tw-gradient-from: #b8cfb8;
    --tw-gradient-to: rgb(184 207 184 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}