/* CSS Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #2d4a5e;
    --color-primary-light: #3d6178;
    --color-text: #3d4348;
    --color-text-light: #6b7280;
    --color-background: #ffffff;
    --color-cream: #f5f5f3;
    --color-button: #a8bdb8;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-primary);
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 60px;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 2px;
}

.nav-menu a.active {
    color: var(--color-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) saturate(0.9);
}

.hero-content {
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background-color: rgba(45, 74, 94, 0.1);
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* About Section */
.about {
    padding: 120px 60px;
    background-color: var(--color-background);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Circle Button */
.circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.circle-btn:hover {
    background-color: rgba(45, 74, 94, 0.05);
}

/* Therapy Section */
.therapy {
    padding: 80px 60px;
    background-color: var(--color-background);
}

.therapy-intro {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.therapy-image {
    width: 100%;
}

.therapy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Approach Section */
.approach {
    padding: 80px 60px;
    background-color: var(--color-background);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.approach-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.approach-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-style: italic;
    margin-bottom: 30px;
}

.approach-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
    text-align: right;
}

/* Image Grid Section */
.image-grid {
    padding: 60px;
    background-color: var(--color-background);
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.grid-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Online Therapy Section */
.online-therapy {
    padding: 80px 60px;
    background-color: var(--color-background);
}

.online-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.online-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.online-content h2 .italic {
    font-style: italic;
}

.online-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: center;
}

.online-image-small img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
}

.online-image-large img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 80px 60px;
    background-color: var(--color-background);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-form-wrapper h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-style: italic;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid var(--color-text);
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    align-self: flex-start;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: var(--color-button);
    color: var(--color-primary);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #98ada8;
}

/* Hours Section */
.hours {
    padding: 80px 60px;
    background-color: var(--color-cream);
}

.hours-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hours-content h2 {
    font-size: 3rem;
    letter-spacing: 0.3em;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-row {
    display: flex;
    gap: 60px;
    align-items: baseline;
}

.hours-row .day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-text-light);
    min-width: 150px;
}

.hours-row .time {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
}

/* Footer */
.footer {
    background-color: #3d6272;
    color: #ffffff;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    max-width: 280px;
    height: auto;
}

.footer-menu {
    text-align: center;
}

.footer-menu h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-menu nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 20px 60px;
    background-color: #3d6272;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }

    .nav-menu {
        gap: 40px;
    }

    .about-container,
    .approach-container,
    .online-container,
    .contact-container,
    .hours-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .grid-cta {
        grid-column: span 2;
    }

    .about-content,
    .approach-content {
        padding: 0;
    }

    .approach-content p {
        text-align: left;
    }

    .about, .therapy, .approach, .online-therapy, .contact, .hours, .image-grid {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background-color: var(--color-background);
        padding: 100px 40px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-cta {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .circle-btn {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }

    .hours-row {
        flex-direction: column;
        gap: 5px;
    }

    .hours-content h2 {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }

    .about, .therapy, .approach, .online-therapy, .contact, .hours, .image-grid {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-content h2,
    .approach-content h2,
    .online-content h2,
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
}
