/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h2 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-brand p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B4513;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #8B4513;
    color: white;
}

.btn-primary:hover {
    background: #A0522D;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede7e0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(139, 69, 19, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 30%, rgba(135, 206, 235, 0.08) 2px, transparent 2px),
        radial-gradient(circle at 10% 70%, rgba(139, 69, 19, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 15%, rgba(135, 206, 235, 0.1) 2.5px, transparent 2.5px),
        radial-gradient(circle at 25% 85%, rgba(135, 206, 235, 0.06) 1.8px, transparent 1.8px);
    background-size: 80px 80px, 60px 60px, 100px 100px, 70px 70px, 90px 90px, 85px 85px, 75px 75px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.2rem;
    color: #8B4513;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header h1 {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: #8B4513;
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-section {
    background: #f8f6f3;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.story-section h3 {
    color: #8B4513;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.emphasis {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
    line-height: 1.5;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f6f3;
    border-radius: 10px;
}

.credential-item h4 {
    color: #8B4513;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.credential-item p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}

.about-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-video {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: none;
    opacity: 0.95;
}

.video-placeholder {
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: #f8f6f3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border: 2px dashed #8B4513;
}

.video-placeholder p {
    color: #8B4513;
    font-weight: 500;
    margin-bottom: 1rem;
}

.video-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.therapy-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


/* Approach Section */
.approach {
    padding: 80px 0;
    background: #f8f6f3;
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(139, 69, 19, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 75%, rgba(135, 206, 235, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 10%, rgba(139, 69, 19, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(135, 206, 235, 0.09) 2.5px, transparent 2.5px),
        radial-gradient(circle at 75% 40%, rgba(139, 69, 19, 0.06) 1.8px, transparent 1.8px),
        radial-gradient(circle at 45% 70%, rgba(135, 206, 235, 0.07) 2px, transparent 2px),
        radial-gradient(circle at 90% 20%, rgba(135, 206, 235, 0.05) 1.2px, transparent 1.2px);
    background-size: 90px 90px, 70px 70px, 110px 110px, 85px 85px, 95px 95px, 80px 80px, 65px 65px;
    pointer-events: none;
    z-index: 1;
}

.approach-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.approach-text {
    max-width: 800px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.approach-text h2 {
    color: #2c2c2c;
    margin-bottom: 2rem;
}

.passions-section h3 {
    color: #8B4513;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.approach-methods {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f6f3;
    border-radius: 10px;
}

.approach-methods h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.approach-methods ul {
    list-style: none;
    padding-left: 0;
}

.approach-methods li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.approach-methods li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #8B4513;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #f8f6f3;
}

.contact-text p {
    color: #f8f6f3;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-text .btn-primary {
    background: #f8f6f3;
    color: #8B4513;
}

.contact-text .btn-primary:hover {
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-item h4 {
    color: #f8f6f3;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: #8B4513;
    margin-bottom: 0.2rem;
}

.footer-brand p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .approach-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .section-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-text h1 {
        font-size: 2.5rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .nav {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

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

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}
