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

:root {
    --primary-bg: #f9f7f4;
    --secondary-bg: #4a4a4a;
    --accent-beige: #e8e3d8;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: opacity 0.3s;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.6;
}

/* Announcement Banner */
.announcement-banner {
    background-color: var(--accent-beige);
    padding: 0.75rem 0;
    text-align: center;
}

.announcement-banner p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.site-logo {
  width: 150px; /* Specific width */
  height: auto; /* Maintain aspect ratio */
      display: flex; flex-direction: column;
    text-align: center;
}
/* Hero Section */
.hero {
    min-height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    position: relative; overflow: hidden;

  }
  
.hero-content {
    padding: 2rem 1rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero-link {
    font-size: 0.9rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.hero-link:hover {
    opacity: 0.6;
}

.hero-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
.section {
    min-height: 100vh;
}

.content-section {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Office Image */
.office-image {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 20px;
}

.office-image img {
    width: 100%;
    height: auto;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
}

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

.mission-box {
    text-align: left;
}

.mission-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.mission-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.service-card {
    text-align: center;
    padding: 2rem 1rem;
}

.service-label {
    font-size: 0.75rem;
    text-transform: lowercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1200&h=400&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 4rem;
}

.cta-overlay {
    padding: 2rem;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 0 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
}

/* About Page */
.about-hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.letter-section {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.letter-content {
    text-align: left;
    margin-top: 2rem;
}

.letter-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Programs Page */
.programs-hero-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.programs-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-section {
    padding: 4rem 0;
    text-align: center;
}

.vision-text {
    max-width: 800px;
    margin: 2rem auto 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.programs-list-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    padding: 3rem 0;
}

.programs-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.programs-list {
    list-style: none;
    text-align: left;
}

.programs-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #e0e0e0;
}

.programs-list li:before {
    content: "• ";
    color: var(--text-dark);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Placeholder Section */
.placeholder-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

.placeholder-card {
    text-align: center;
    padding: 2rem;
}

.placeholder-label {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.placeholder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.placeholder-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page */
.contact-intro {
    text-align: center;
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-intro p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem 0;
}

.contact-locations h3,
.contact-form-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.location-block {
    margin-bottom: 2rem;
}

.location-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.location-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.location-block a {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    background-color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

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

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

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.submit-button {
    background-color: var(--secondary-bg);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #333;
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-location h4 {
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.footer-location p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .hero-image {
        height: 300px;
    }

    .section-title,
    .page-title {
        font-size: 1.8rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-overlay h2 {
        font-size: 1.8rem;
    }

    .about-hero-image,
    .programs-hero-image {
        height: 300px;
    }

    .programs-list-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-locations {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .placeholder-section {
        grid-template-columns: 1fr;
    }
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-image {
        height: 250px;
    }

    .section-title,
    .page-title {
        font-size: 1.5rem;
    }

    .cta-section {
        height: 300px;
    }

    .cta-overlay h2 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .announcement-banner,
    .cta-section,
    .footer {
        display: none;
    }
}
