:root {
    --dark-teal: #1b4d4d;
    --mid-teal: #2a7474;
    --light-teal: #40a8a8;
    --rust-brown: #9b4e25;
    --light-rust: #c66c3a;
    --off-white: #f5f5f5;
    --dark-gray: #333333;
    --light-gray: #e0e0e0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    margin-bottom: 1rem;
    color: var(--dark-teal);
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--dark-teal);
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.centered {
    text-align: center;
}

.offset-right {
    margin-left: 10%;
}

.offset-left {
    margin-right: 10%;
}

.underline {
    height: 3px;
    width: 70px;
    background: var(--rust-brown);
    margin-bottom: 1.5rem;
}

.centered .underline {
    margin: 0 auto 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--dark-teal);
    background: transparent;
    color: var(--dark-teal);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--dark-teal);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--off-white);
}

.btn:hover::after {
    height: 100%;
}

.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 100% 50px;
}

.wave-divider.top {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23f5f5f5'%3E%3C/path%3E%3C/svg%3E");
}

.wave-divider.bottom {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23f5f5f5'%3E%3C/path%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.diagonal-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    background-repeat: no-repeat;
    background-size: 100% 80px;
}

.diagonal-divider.top {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 0L0 0 598.97 114.72 1200 0z' fill='%23f5f5f5'%3E%3C/path%3E%3C/svg%3E");
}

.diagonal-divider.bottom {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 0L0 0 598.97 114.72 1200 0z' fill='%23f5f5f5'%3E%3C/path%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.header {
    background-color: var(--dark-teal);
    color: var(--off-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    color: var(--off-white);
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--off-white);
    font-weight: 600;
    padding-bottom: 0.3rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-rust);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--light-rust);
}

.main-nav a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, var(--dark-teal), var(--mid-teal));
    color: var(--off-white);
    padding: 7rem 0;
    position: relative;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-15px) rotate(-3deg);
}

.about {
    background-color: var(--off-white);
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(15px) rotate(2deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1.5;
    min-width: 300px;
}

.benefits {
    background-color: var(--off-white);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.programs {
    background-color: var(--dark-teal);
    color: var(--off-white);
    position: relative;
}

.programs .section-header h2 {
    color: var(--off-white);
}

.programs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-card {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.program-image {
    flex: 1;
    min-width: 250px;
}

.program-content {
    flex: 2;
    padding: 2rem;
    min-width: 300px;
}

.program-content h3 {
    color: var(--off-white);
    margin-bottom: 1rem;
}

.program-details {
    margin-top: 1.5rem;
}

.program-details li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.program-details li::before {
    content: '•';
    color: var(--light-rust);
    position: absolute;
    left: 0;
    top: 0;
}

.calendar {
    background-color: var(--off-white);
}

.calendar-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.calendar-day {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--mid-teal);
}

.calendar-day h3 {
    color: var(--dark-teal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.calendar-day ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.calendar-day ul li::before {
    content: '✓';
    color: var(--mid-teal);
    position: absolute;
    left: 0;
    top: 0;
}

.checklist {
    background-color: var(--dark-teal);
    color: var(--off-white);
    position: relative;
}

.checklist .section-header h2 {
    color: var(--off-white);
}

.checklist-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.checklist-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.checkbox {
    width: 25px;
    height: 25px;
    border: 2px solid var(--light-rust);
    border-radius: 5px;
    margin-right: 1rem;
    position: relative;
}

.checklist-item:hover .checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-rust);
    font-weight: bold;
}

.gallery {
    background-color: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonials {
    background-color: var(--dark-teal);
    color: var(--off-white);
    position: relative;
}

.testimonials .section-header h2 {
    color: var(--off-white);
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-image {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 3;
    padding: 2rem;
    min-width: 300px;
}

.testimonial-content h3 {
    color: var(--off-white);
    margin-bottom: 1rem;
}

.contact {
    background-color: var(--off-white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-email, .contact-hours {
    margin-top: 2rem;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-teal);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--mid-teal);
    box-shadow: 0 0 0 2px rgba(42, 116, 116, 0.2);
}

.footer {
    background-color: var(--dark-gray);
    color: var(--off-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.footer-item {
    padding: 1.5rem;
}

.logo-block {
    grid-column: 1;
    grid-row: 1;
    background-color: rgba(27, 77, 77, 0.3);
    border-radius: 10px;
}

.nav-block {
    grid-column: 2;
    grid-row: 1;
    background-color: rgba(155, 78, 37, 0.3);
    border-radius: 10px;
}

.programs-block {
    grid-column: 1;
    grid-row: 2;
    background-color: rgba(155, 78, 37, 0.3);
    border-radius: 10px;
}

.legal-block {
    grid-column: 2;
    grid-row: 2;
    background-color: rgba(27, 77, 77, 0.3);
    border-radius: 10px;
}

.footer h3 {
    color: var(--off-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo h2 {
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.footer-nav li, .footer-programs li, .footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-nav a, .footer-legal a {
    color: var(--off-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    opacity: 1;
    color: var(--light-rust);
}

.copyright {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .offset-right, .offset-left {
        margin-left: 0;
        margin-right: 0;
    }
    
    .program-card, .testimonial-card {
        flex-direction: column;
    }
    
    .testimonial-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 1rem 0.5rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-block, .programs-block, .legal-block {
        grid-column: 1;
    }
    
    .nav-block {
        grid-row: 2;
    }
    
    .programs-block {
        grid-row: 3;
    }
    
    .legal-block {
        grid-row: 4;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .benefit-item, .calendar-day, .checklist-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 375px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid, .calendar-grid, .checklist-grid {
        grid-template-columns: 1fr;
    }
} 