/* Morning View Therapy - Custom Styles */
/* Tailwind base styles are loaded via CDN */

/* Custom color variables for Tailwind theme extension */
:root {
    --color-sage: #8FA998;
    --color-sage-light: #B5C9BE;
    --color-sage-dark: #6B8578;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom gradient for hero section */
.hero-gradient {
    background: linear-gradient(135deg, #F5F2ED 0%, #FAF8F5 100%);
}

/* Custom gradient for CTA section */
.cta-gradient {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
}

/* Hero decorative element */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143, 169, 152, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Smooth transitions for interactive elements */
.transition-smooth {
    transition: all 250ms ease;
}

/* Custom underline animation for nav links */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-sage);
    transition: width 250ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .mobile-nav {
        transition: left 250ms ease;
    }
}
