/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Krona One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
}

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

.cookie-btn {
    background: #ffffff;
    color: #8b1edf;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #f0f0f0;
}

.cookie-btn.decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.decline:hover {
    background: #ffffff;
    color: #8b1edf;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Header */
.header {
    background: #000000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Krona One', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #8b1edf;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b1edf;
}

/* Buttons */
.cta-button, .submit-button, .price-button {
    background: #8b1edf;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Krona One', sans-serif;
}

.cta-button:hover, .submit-button:hover, .price-button:hover {
    background: #7a1bc7;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ffffff;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #111111;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.target-group {
    margin-bottom: 40px;
}

.target-group h3 {
    color: #8b1edf;
    margin-bottom: 15px;
}

/* Learning Section */
.learning {
    padding: 100px 0;
    background: #000000;
}

.learning-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.learning-text {
    flex: 1;
}

.learning-image {
    flex: 1;
}

.learning-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: #111111;
    text-align: center;
}

.courses h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.courses-subtitle {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #cccccc;
}

.course-packages {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.course-package {
    background: #222222;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    max-width: 350px;
    text-align: left;
    transition: transform 0.3s ease;
}

.course-package:hover {
    transform: translateY(-5px);
}

.course-package.featured {
    background: #8b1edf;
    transform: scale(1.05);
}

.course-package h3 {
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.course-package p {
    margin-bottom: 30px;
    text-align: center;
    color: #cccccc;
}

.course-package.featured p {
    color: #ffffff;
}

.course-package ul {
    list-style: none;
    margin-bottom: 30px;
}

.course-package li {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.course-package.featured li {
    border-bottom-color: rgba(255,255,255,0.2);
    color: #ffffff;
}

.course-package li:before {
    content: "✓";
    color: #8b1edf;
    font-weight: bold;
    margin-right: 10px;
}

.course-package.featured li:before {
    color: #ffffff;
}

.price-button {
    width: 100%;
    text-align: center;
}

/* Partnership Section */
.partnership {
    padding: 100px 0;
    background: #000000;
}

.partnership-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.partnership-text {
    flex: 1;
}

.partnership-image {
    flex: 1;
}

.partnership-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.partnership-text ul {
    list-style: none;
    margin: 30px 0;
}

.partnership-text li {
    padding: 8px 0;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

.partnership-text li:before {
    content: "▶";
    color: #8b1edf;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #111111;
    text-align: center;
}

.contact h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #cccccc;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #222222;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #8b1edf;
}

.form-group select option {
    background: #222222;
    color: #ffffff;
}

.submit-button {
    width: 100%;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-info h3 {
    color: #8b1edf;
    margin-bottom: 10px;
}

.footer-info p {
    color: #cccccc;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b1edf;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #666666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .about-content, .learning-content, .partnership-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .course-packages {
        flex-direction: column;
        gap: 30px;
    }
    
    .course-package {
        max-width: 100%;
    }
    
    .course-package.featured {
        transform: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .about, .learning, .courses, .partnership, .contact {
        padding: 60px 0;
    }
    
    .cta-button, .submit-button, .price-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}