/* Light Work - Shared Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #f5f3ee;
    --text-dark: #3a3a3a;
    --text-light: #666666;
    --accent-blue: #6ba3e8;
    --footer-dark: #3a3a3a;
    --border-color: #d4cfc4;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--cream);
    font-size: 1.125rem;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--cream);
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Baskervville', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.7;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a,
.nav-dropdown > span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-menu a:hover,
.nav-dropdown:hover > span {
    color: var(--text-dark);
}

.nav-menu a.active {
    color: var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
}

/* Dropdown menu for Offerings */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
}

.dropdown-menu a:hover {
    background: var(--cream);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.875rem;
    }
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    padding-top: calc(5rem + 80px); /* Account for fixed nav */
}

/* Typography */
h1, h2, h3 {
    font-family: 'Baskervville', Georgia, serif;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

h1 .italic {
    font-style: italic;
}

h2 {
    font-size: 2.375rem;
    margin-bottom: 3rem;
    margin-top: 5rem;
}

h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 500;
}

.intro {
    font-size: 1.8125rem;
    line-height: 1.8;
    margin-bottom: 5rem;
    max-width: 700px;
    font-family: 'Baskervville', Georgia, serif;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 5rem 0;
}

/* Sections */
.section {
    margin-bottom: 3.75rem;
}

.section-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3.75rem;
    margin-bottom: 2.5rem;
}

.section-label {
    font-weight: 400;
    color: var(--text-dark);
    font-family: 'Baskervville', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
}

.section-text {
    line-height: 1.8;
}

.section-text ul {
    list-style: none;
    margin-top: 1rem;
}

.section-text li {
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.section-text li:before {
    /* content: "•"; */
    position: absolute;
    left: 0;
}

.subsection {
    margin-top: 2rem;
}

.subsection-title {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* About Photo */
.about-photo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.about-page-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
}

/* CTA Buttons - Updated to "lighter and more magical" */
.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border: 1px solid rgba(200, 180, 140, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(200, 180, 140, 0.15);
}

.cta-button:hover {
    background: rgba(255, 252, 245, 0.95);
    box-shadow: 0 4px 20px rgba(200, 180, 140, 0.3);
    border-color: rgba(200, 180, 140, 0.5);
    transform: translateY(-2px);
}

/* Tagline Section */
.tagline {
    text-align: center;
    font-family: 'Baskervville', Georgia, serif;
    font-size: 2.375rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 5rem 0 2.5rem;
}

.tagline-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.tagline-closing {
    text-align: center;
    font-family: 'Baskervville', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 2rem auto 5rem;
}

/* Footer */
footer {
    background-color: var(--footer-dark);
    color: #cccccc;
    padding: 3.75rem 2.5rem;
    margin-top: 7.5rem;
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
}

.footer-section h4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section .cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin-top: 1rem;
}

.footer-section .cta-button:hover {
    background: white;
    color: var(--text-dark);
    border-color: white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.footer-brand {
    text-align: center;
    margin-top: 3.75rem;
    font-family: 'Baskervville', Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.container > *:nth-child(2) {
    animation-delay: 0.1s;
}

.container > *:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2.5rem 2rem;
        padding-top: calc(4rem + 70px);
    }

    h1 {
        font-size: 2.625rem;
    }

    h2 {
        font-size: 2rem;
        margin-top: 3.75rem;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-text li {
        padding-left: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
