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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #ffd93d;
    --accent-color: #6bcf7f;
    --dark-color: #2d3436;
    --text-color: #2d3436;
    --salsa-color: #ff6b6b;
    --bachata-color: #4ecdc4;
    --kizomba-color: #a8e6cf;
}

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

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

/* Header & Navigation */
.navbar {
    background: linear-gradient(90deg, var(--dark-color), rgba(45, 52, 54, 0.95));
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

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

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--dark-color);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.association-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Cours Section */
.cours {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.cours h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.cours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cours-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.cours-card:hover::before {
    opacity: 1;
}

.cours-card:hover {
    transform: translateY(-5px);
}

.cours-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cours-icon.salsa {
    background: linear-gradient(135deg, var(--salsa-color), #ff4757);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.cours-icon.bachata {
    background: linear-gradient(135deg, var(--bachata-color), #48dbfb);
    color: white;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.cours-icon.kizomba {
    background: linear-gradient(135deg, var(--kizomba-color), #81ecec);
    color: white;
    box-shadow: 0 5px 15px rgba(168, 230, 207, 0.3);
}

.cours-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cours-details {
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

.tarifs h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.lieu h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}



/* Evenements Section */
.evenements {
    padding: 4rem 0;
}

.evenements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.evenements-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.event-card:hover {
    transform: translateX(10px);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-weight: bold;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
}

.event-date .month {
    font-size: 1rem;
}

.event-info {
    padding: 2rem;
    flex: 1;
}

.event-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.event-details {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.facebook-link {
    text-align: center;
    background: linear-gradient(135deg, #1877f2, #0e5fc0);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.facebook-link h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.facebook-link p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.fb-notice {
    font-size: 0.9rem;
    margin-top: 1.5rem !important;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.fb-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1877f2;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.fb-icon {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    background: #1877f2;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Facebook Link */
.hero-facebook {
    margin-top: 2rem;
}

.hero-fb-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid white;
    transition: all 0.3s;
    font-weight: 600;
}

.hero-fb-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
}
