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

:root {
    --primary-color: #8B7355;
    --secondary-color: #D4A574;
    --accent-color: #C19A6B;
    --text-dark: #2C2416;
    --text-light: #5C4F3D;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F1EB;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-cream), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-style: italic;
    box-shadow: 0 4px 20px var(--shadow);
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px var(--shadow);
    border: 3px solid var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

/* Offerings Section */
.offerings {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.offerings h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: normal;
}

.offering-card {
    background-color: var(--white);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px var(--shadow);
}

.offering-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.offering-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.offering-subtitle {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.offering-image-placeholder {
    margin: 1.5rem 0;
}

.offering-image-placeholder .image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--bg-cream), var(--secondary-color));
}

.offering-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow);
}

.offering-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
}

/* Private Sessions Section */
.sessions {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.sessions h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.sessions-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.sessions-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.session-item {
    font-size: 1.3rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bullet {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Stay Connected Section */
.connect {
    padding: 80px 0;
    background-color: var(--bg-cream);
    text-align: center;
}

.connect h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.connect p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
    font-family: 'Arial', sans-serif;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow);
    background-color: var(--primary-color);
    color: var(--white);
}

.social-icon {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.contact > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.contact-icon {
    font-size: 1.5rem;
}

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

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .about-text p {
        text-align: left;
    }

    .offerings h2,
    .sessions h2,
    .connect h2,
    .contact h2 {
        font-size: 2rem;
    }

    .offering-card {
        padding: 1.5rem;
    }

    .offering-card h3 {
        font-size: 1.5rem;
    }

    .sessions-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about,
    .offerings,
    .sessions,
    .connect,
    .contact {
        padding: 60px 0;
    }

    .offering-image-placeholder .image-placeholder {
        height: 200px;
    }

    .offering-image {
        height: 200px;
    }
}
