@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;700&family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --color-black: #121212;
    --color-dark-gray: #2D2D2D;
    --color-gray: #555555;
    --color-light-gray: #888888;
    --color-purple: #6A3EA1;
    --color-light-purple: #9B6FD3;
    --color-dark-purple: #46287A;
    --color-white: #F9F9F9;
    --font-primary: 'Unbounded', cursive;
    --font-secondary: 'Ubuntu', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--color-purple);
    transition: var(--transition);
}

a:hover {
    color: var(--color-dark-purple);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--color-black);
    color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-container h1 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.slogan {
    font-size: 0.9rem;
    color: var(--color-light-purple);
    font-style: italic;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-purple);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--color-light-purple);
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem 5%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
}

.hero-content {
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-light-gray);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-purple);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-purple);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-light-purple);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.diagonal-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-black) 100%);
    color: var(--color-white);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    margin: 4rem 0;
}

.section-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.programs-section {
    padding: 5rem 0;
    text-align: center;
}

.programs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.hexagon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.hexagon-item {
    width: 300px;
    height: 350px;
    position: relative;
    margin-bottom: 2rem;
}

.hexagon-content {
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    padding: 2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hexagon-content:hover {
    background-color: var(--color-purple);
    transform: scale(1.05);
}

.hexagon-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.hexagon-content h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hexagon-content p {
    font-size: 0.9rem;
}

.wave-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.wave-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23121212' fill-opacity='1' d='M0,96L60,112C120,128,240,160,360,165.3C480,171,600,149,720,128C840,107,960,85,1080,90.7C1200,96,1320,128,1380,144L1440,160L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.wave-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23121212' fill-opacity='1' d='M0,160L60,144C120,128,240,96,360,90.7C480,85,600,107,720,128C840,149,960,171,1080,165.3C1200,160,1320,128,1380,112L1440,96L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3path%3E%3C/svg%3E");
    background-size: cover;
    transform: rotate(180deg);
}

.benefits-section h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    border-left: 3px solid var(--color-purple);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.benefit-card h3 {
    color: var(--color-light-purple);
    margin-bottom: 1rem;
}

.stories-section {
    padding: 7rem 0;
    background-color: var(--color-white);
}

.stories-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
}

.story-card.reverse {
    grid-template-columns: 1fr 300px;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-purple);
}

.story-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
}

.contact-section h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3, .contact-form-container h3 {
    color: var(--color-light-purple);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.map-placeholder {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-dark-gray);
    font-family: var(--font-secondary);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-purple);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background-color: var(--color-dark-purple);
    transform: translateY(-3px);
}

.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 5%;
}

.footer-logo h3 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--color-light-purple);
    font-style: italic;
}

.footer-navigation h4, .footer-policy h4, .footer-contact h4 {
    color: var(--color-light-purple);
    margin-bottom: 1.5rem;
}

.footer-navigation ul, .footer-policy ul {
    list-style: none;
}

.footer-navigation li, .footer-policy li {
    margin-bottom: 0.8rem;
}

.footer-navigation a, .footer-policy a {
    color: var(--color-light-gray);
}

.footer-navigation a:hover, .footer-policy a:hover {
    color: var(--color-light-purple);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: var(--color-light-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

@media screen and (max-width: 1200px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-grid, .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .hexagon-container {
        gap: 1rem;
    }
}

@media screen and (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 4rem 5%;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .story-card, .story-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    .header {
        padding: 1rem 5%;
    }
    
    .logo-container h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .diagonal-section, .wave-section {
        padding: 4rem 0;
    }
    
    .about-section h2, .programs-section h2, .benefits-section h2, .stories-section h2, .contact-section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hexagon-item {
        width: 250px;
        height: 280px;
    }
}

@media screen and (max-width: 375px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
    
    .about-section h2, .programs-section h2, .benefits-section h2, .stories-section h2, .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .hexagon-item {
        width: 220px;
        height: 250px;
    }
    
    .hexagon-content {
        padding: 1.5rem;
    }
    
    .hexagon-content img {
        width: 60px;
        height: 60px;
    }
}