@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Comfortaa:wght@400;500;700&display=swap');

:root {
    --color-black: #1a1a1a;
    --color-purple: #7b2cbf;
    --color-purple-light: #9d4edd;
    --color-purple-dark: #5a189a;
    --color-yellow: #ffd60a;
    --color-yellow-light: #ffee80;
    --color-gray: #f0f0f0;
    --color-white: #ffffff;
    --font-primary: 'Comfortaa', cursive;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--color-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-yellow);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background-color: var(--color-purple);
    color: var(--color-white);
}

.primary-btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-3px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    padding: 1rem 0;
    z-index: 1000;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--color-yellow);
    font-size: 1.8rem;
    margin-bottom: 0;
}

.tagline {
    color: var(--color-purple-light);
    font-size: 0.9rem;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: var(--color-white);
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-yellow);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--color-yellow);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

main {
    margin-top: 80px;
}

.hero {
    display: flex;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, var(--color-purple-dark) 0%, var(--color-black) 100%);
    color: var(--color-white);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 4rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 30%, var(--color-purple-dark) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hexagon-layout {
    padding: 5rem 2rem;
    background-color: var(--color-white);
}

.hexagon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.hexagon {
    position: relative;
    overflow: hidden;
    background-color: var(--color-gray);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    aspect-ratio: 1/1;
}

.hexagon:hover {
    transform: translateY(-10px);
}

.hexagon h2 {
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.hexagon p {
    color: var(--color-black);
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs {
    padding: 5rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
}

.programs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-yellow);
}

.diagonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1440px;
    margin: 0 auto;
    transform: skewY(-3deg);
}

.program-card {
    background-color: var(--color-purple-dark);
    border-radius: 10px;
    overflow: hidden;
    transform: skewY(3deg);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: skewY(3deg) translateY(-10px);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    color: var(--color-yellow);
    padding: 1.5rem 1.5rem 0.5rem;
}

.program-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.duration-price {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-yellow-light);
}

.benefits {
    padding: 5rem 2rem;
    background: linear-gradient(to right, var(--color-white), var(--color-gray));
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-purple);
}

.staggered-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.benefit-item {
    background-color: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-item:nth-child(odd) {
    transform: translateY(30px);
}

.benefit-item:nth-child(odd):hover {
    transform: translateY(20px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.benefit-item h3 {
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.testimonials {
    padding: 5rem 2rem;
    background-color: var(--color-black);
    color: var(--color-white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-yellow);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    margin-bottom: 3rem;
    background-color: var(--color-purple-dark);
    border-radius: 15px;
    overflow: hidden;
}

.testimonial.reverse {
    flex-direction: row-reverse;
}

.testimonial img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 2rem;
    border: 5px solid var(--color-yellow);
}

.testimonial-content {
    padding: 2rem;
    flex: 1;
}

.testimonial-content h3 {
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-dark) 100%);
    color: var(--color-white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-yellow);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.5);
}

.contact-info h3 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.working-hours {
    margin-top: 2rem;
}

.working-hours h4 {
    color: var(--color-yellow);
    margin-bottom: 1rem;
}

.contact-form {
    flex: 2;
    padding: 2rem;
}

.contact-form h3 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
}

.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: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--color-yellow);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    flex: 1;
}

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-purple);
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--color-white);
}

.footer-section ul li a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1200px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-content {
        padding: 4rem 2rem;
    }

    .hero-image {
        height: 50vh;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media screen and (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .benefit-item:nth-child(odd) {
        transform: translateY(0);
    }

    .benefit-item:nth-child(odd):hover {
        transform: translateY(-10px);
    }

    .testimonial, 
    .testimonial.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .programs h2,
    .benefits h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2rem;
    }

    .diagonal-grid {
        transform: none;
    }

    .program-card {
        transform: none;
    }

    .program-card:hover {
        transform: translateY(-10px);
    }

    .hexagon {
        clip-path: none;
        border-radius: 10px;
    }
}

@media screen and (max-width: 375px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .duration-price {
        flex-direction: column;
    }

    .duration-price span {
        margin-bottom: 0.5rem;
    }
}