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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2196F3;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: white;
    color: #2196F3;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-link {
    color: white;
    text-decoration: underline;
}

/* Header */
.header {
    background: #2196F3;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Krona One', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: url('./images/hero.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 2rem 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Krona One', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #2196F3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

/* About Section */
.about {
    background: white;
    padding: 80px 2rem;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.about p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Courses Section */
.courses {
    background: #2196F3;
    padding: 80px 2rem;
}

.courses h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.courses-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.courses-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
    font-family: 'Krona One', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.course-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.course-btn {
    background: #2196F3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

/* Events Section */
.events {
    background: #1a1a1a;
    padding: 80px 2rem;
}

.events h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 2rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.events-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
}

.event-image {
    flex: 1;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content h3 {
    font-family: 'Krona One', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.event-date {
    color: #2196F3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.event-btn {
    background: #2196F3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.event-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: white;
    padding: 80px 2rem;
}

.contact h2 {
    font-family: 'Krona One', sans-serif;
    font-size: 2rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #666;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2196F3;
}

.submit-btn {
    background: #2196F3;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2196F3;
    color: white;
    padding: 40px 2rem 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Krona One', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 240px 1rem 60px;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about {
        flex-direction: column;
        text-align: center;
        padding: 60px 1rem;
        gap: 2rem;
    }
    
    .courses {
        padding: 60px 1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events {
        padding: 60px 1rem;
    }
    
    .event-card {
        flex-direction: column;
        gap: 0;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .contact {
        padding: 60px 1rem;
    }
    
    .footer {
        padding: 30px 1rem 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .about h2,
    .courses h2,
    .events h2,
    .contact h2 {
        font-size: 1.5rem;
    }
    
    .course-card,
    .event-content {
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}