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

:root {
    --primary: #FCCE3F;
    --primary-dark: #E7B82F;
    --text-dark: #111111;
    --text-light: #333333;
    --background-light: #FFFFFF;
    --background-dark: #1A1A1A;
    --grey-light: #F5F5F5;
    --grey: #E0E0E0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

section {
    padding: 80px 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
    transition: all 0.3s ease;
    border: none;
}

.primary {
    background-color: var(--primary);
    color: var(--text-dark);
}

.primary:hover {
    background-color: var(--primary-dark);
}

.secondary {
    background-color: var(--grey-light);
    color: var(--text-dark);
}

.secondary:hover {
    background-color: var(--grey);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    min-width: 120px;
}

/* Header */
header {
    background-color: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    text-align: center;
}

/* Hero Section */
.hero {
    background-color: var(--background-dark);
    color: white;
    text-align: center;
    padding: 120px 0;
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Courses Section */
.courses {
    background-color: var(--background-light);
}

.courses h2,
.pricing h2,
.about h2,
.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    background-color: var(--background-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-card h3 {
    padding: 20px 15px 10px;
    font-size: 1.2rem;
}

.course-card p {
    padding: 0 15px 20px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background-color: var(--primary);
}

.pricing-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--background-light);
    padding: 0 0 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.pricing-image {
    height: 150px;
    overflow: hidden;
}

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

.pricing-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
    text-align: center;
}

.pricing-card p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.pricing-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.price {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    margin-top: auto;
}

/* About Section */
.about {
    background-color: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
}

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

/* Contact Section */
.contact {
    background-color: var(--background-light);
}

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

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

input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--grey);
    background-color: var(--grey-light);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

/* Footer */
footer {
    background-color: var(--primary);
    padding: 50px 0;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .course-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .courses h2,
    .pricing h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}