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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid #7c3aed;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #fff;
}

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

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

.cookie-btn.accept {
    background: #7c3aed;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #6d28d9;
}

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

.cookie-btn.decline:hover {
    background: #fff;
    color: #000;
}

.cookie-link {
    color: #7c3aed;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 20px 0;
}

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

.logo {
    font-family: 'Goldman', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

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

.hero-title {
    font-family: 'Goldman', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

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

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

.about-image {
    flex: 1;
}

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

.about-text {
    flex: 1;
}

.about-title {
    font-family: 'Goldman', cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.about-description {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.about-btn {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: #7c3aed;
}

.courses-title {
    font-family: 'Goldman', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.courses-subtitle {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.course-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.course-title {
    font-family: 'Goldman', cursive;
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.course-description {
    line-height: 1.7;
    opacity: 0.9;
}

/* Success Section */
.success {
    padding: 100px 0;
    background: #111;
}

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

.success-text {
    flex: 1;
}

.success-image {
    flex: 1;
}

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

.success-title {
    font-family: 'Goldman', cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.success-description {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.success-btn {
    display: inline-block;
    background: #7c3aed;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000;
}

.contact-title {
    font-family: 'Goldman', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.contact-btn {
    width: 100%;
    background: #7c3aed;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #7c3aed;
    padding: 60px 0 40px;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-address {
    text-align: center;
    opacity: 0.8;
    font-style: normal;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about-content,
    .success-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .course-card {
        padding: 30px 20px;
    }
    
    .about-title,
    .success-title {
        font-size: 1.8rem;
    }
    
    .courses-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about,
    .courses,
    .success,
    .contact {
        padding: 60px 0;
    }
    
    .course-card {
        padding: 25px 15px;
    }
    
    .logo {
        font-size: 20px;
    }
}