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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #1a1a2e;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav .logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f5c542;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul a:hover {
    color: #f5c542;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #f5c542;
}

.hero-content .tagline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #f5c542;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 197, 66, 0.4);
}

/* About */
.about {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.about > p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: #555;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #f5c542;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.value-card p {
    color: #666;
}

/* Programme */
.programme {
    padding: 5rem 2rem;
    background: #1a1a2e;
    text-align: center;
    color: #fff;
}

.programme h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #f5c542;
}

.coming-soon {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact a {
    color: #0f3460;
    font-weight: 600;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #aaa;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
    }

    nav {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }

    nav ul {
        gap: 1rem;
    }
}
