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

:root {
    --primary-purple: #6B4C9A;
    --secondary-purple: #8B6FB5;
    --primary-blue: #4A7BA7;
    --light-purple: #E8DFF5;
    --light-blue: #D6E9F5;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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


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

/* Section Backgrounds */
.section-white {
    padding: 60px 20px;
    background-color: white;
}

.section-purple {
    padding: 60px 20px;
    background-color: var(--light-purple);
}

.section-blue {
    padding: 60px 20px;
    background-color: var(--light-blue);
}

/* Card Base Styles */
.card {
    padding: 40px;
    border-radius: 12px;
    outline: 4px dotted var(--primary-purple);
    outline-offset: 6px;
}

.card-white {
    background-color: white;
}

.card-purple {
    background-color: var(--light-purple);
}

.card-blue {
    background-color: var(--primary-blue);
    color: white;
}

.card-purple-bg {
    background-color: var(--primary-purple);
    color: white;
}

.card-outline-white {
    outline-color: white;
    outline-offset: -12px;
}

.card p {
    margin-bottom: 15px;
}

/* Heading Styles */
.heading-purple {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 20px;
}

.heading-blue {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.heading-white {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.heading-center {
    text-align: center;
}

.heading-large {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.subheading-purple {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.subheading-blue {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Grid Layouts */
.grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 450px));
    gap: 30px;
}

/* Grid Items */
.grid-item {
    flex: 1;
    min-width: 250px;
}

.grid-item-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
}

.grid-item-purple {
    background-color: var(--light-purple);
    padding: 30px;
    border-radius: 12px;
    outline: 4px dotted var(--primary-purple);
    outline-offset: 6px;
}

.grid-item-white {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
}

.standard-image {
    width: 100%;
    /* max-height: 300px; */
    object-fit: cover;
    margin-top: 20px;
    border-radius: 8px;
    outline: 3px dotted var(--primary-purple);
    outline-offset: 6px;
}

.float-image {
    width: 400px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    margin-left: 20px;
    float: right;
    border-radius: 8px;
    outline: 3px dotted var(--primary-purple);
    outline-offset: 6px;
}

/* Header */
header {
    background-color: var(--light-purple);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-purple);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    margin: 0px auto;
    align-items: center;
    gap: 20px;
}

.header-left {
    flex: 1;
}

header h1 {
    color: var(--primary-purple);
    font-size: 1.8rem;
}

.contact-info {
    flex: 1;
    text-align: right;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--light-blue);
    padding: 60px 20px;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 12px;
    outline: 4px dotted var(--primary-purple);
    outline-offset: 6px;
}

.hero-text h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    margin: 10px 0;
}

/* Philosophy Section Specific */
.philosophy ul {
    list-style-position: inside;
    margin-top: 20px;
}

.philosophy li {
    margin: 10px 0;
    padding-left: 20px;
}

/* Schedule Section Specific */
.schedule p {
    margin-bottom: 30px;
}

.schedule-column h3 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.schedule-column ul {
    list-style: none;
}

.schedule-column li {
    margin: 8px 0;
}

/* Program Section Specific */
.program-card {
    flex: 1;
    min-width: 300px;
}

.program-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Learning Item Specific */
.learning-item h3 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

/* Grow Card Special Styling */
.grow-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.grow-card {
    padding: 50px;
    outline-offset: 8px;
    text-align: left;
}

/* Info Box Special Styling */
.info-box-card ul {
    list-style-position: inside;
    max-width: 800px;
    margin: 0 auto;
}

.info-box-card li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.info-box-card h2 {
    text-align: center;
}

/* Art Section Specific */
.art p {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--light-purple);
    margin-bottom: 15px;
}

.footer-section p {
    margin: 5px 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.4rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        text-align: center;
        margin-top: 15px;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
