@import url('https://fonts.googleapis.com/css2?family=Futura:wght@400;500;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #4CAF50;
    --secondary-color: #E53935;
    --background-color: #FFFFFF;
    --text-color: #333333;
    --accent-color: #2E7D32;
    --light-green: #81C784;
    --light-red: #EF9A9A;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --gray-dark: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 4rem 1rem;
    position: relative;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo-container {
    z-index: 1001;
}

.logo {
    height: 60px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navigation {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.header:hover .navigation {
    right: 0;
}

.nav-list {
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.8rem 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--light-red);
    padding-left: 10px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background-color: var(--gray-light);
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin-top: 2rem;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 1;
}

.about {
    padding: 6rem 1rem 4rem;
}

.about-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    padding: 0 1rem;
}

.achievements {
    background-color: var(--gray-light);
    padding: 6rem 1rem 4rem;
    position: relative;
}

.achievements-diagonal-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: white;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.achievements-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.achievement-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.schedule {
    padding: 6rem 1rem 4rem;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.filter-button {
    padding: 0.7rem 1.2rem;
    background-color: var(--gray-medium);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active, .filter-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.schedule-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.schedule-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.schedule-day, .schedule-time {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 4px;
    margin: 1rem 0 0 1rem;
}

.schedule-time {
    background-color: var(--secondary-color);
    margin-left: 0.5rem;
}

.schedule-title {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
}

.schedule-description {
    padding: 0 1rem 1.5rem;
    color: var(--gray-dark);
}

.contact {
    background-color: var(--gray-light);
    padding: 6rem 1rem 4rem;
    position: relative;
}

.contact-diagonal-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: white;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    margin-bottom: 2rem;
}

.contact-email {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
}

.contact-form-container {
    flex: 1;
}

.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: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-medium);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--light-red);
    position: absolute;
    left: 0;
    bottom: -5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-red);
    padding-left: 5px;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.thankyou {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.thankyou h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thankyou p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.home-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.home-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.policy-page {
    max-width: 900px;
    margin: 100px auto 50px;
    padding: 2rem;
}

.policy-page h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
}

.policy-page h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.policy-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    text-align: left;
}

.policy-page h2:after {
    left: 0;
    transform: none;
}

.policy-page p, .policy-page ul {
    margin-bottom: 1.5rem;
}

.policy-page ul {
    padding-left: 1.5rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .achievements-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    section {
        padding: 5rem 2rem;
    }
    
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        margin-top: 0;
        padding-right: 2rem;
    }
    
    .hero-image {
        margin-bottom: 0;
    }
    
    .about-container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .about-image {
        margin-bottom: 0;
    }
    
    .contact-container {
        flex-direction: row;
        gap: 3rem;
    }
    
    .contact-info {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .navigation {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
    }
    
    .nav-list {
        display: flex;
        gap: 1.5rem;
    }
    
    .nav-link {
        color: var(--text-color);
        border-bottom: none;
        padding: 0;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        padding-left: 0;
    }
    
    .achievements-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}