        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* ===== NAVBAR ===== */
        .navbar {
         /*   background-color: #1a1a2e;
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
         */




            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #e94560;
            padding: 0;
            font-family: 'Segoe UI', system-ui, sans-serif;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            color: #e94560;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .nav-menu a {
            color: #eaeaea;
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-menu a:hover {
            background-color: #e94560;
            color: #fff;
            transform: translateY(-2px);
        }

        .nav-menu a.active {
            background-color: #e94560;
            color: #fff;
        }



/*************************** Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/img_000.png') center/cover no-repeat;
    color: white;
    padding: 100px;
    text-align: center;
}

/*************************** Texte */
h1 {
  font-weight: bold;
  color: #f00303;
  text-align: center;
}

h2 {
  font-weight: bold;
  color: #f00303;
  text-align: center;
}

h3 {
  font-weight: initial;
  text-align: left;
  color: #f00303;
  text-decoration-color: #b02a37;
}

h4 {
  font-weight: initial;
  text-align: left;
  text-decoration-color: #b02a37;
}

h5 {
  font-weight: initial;
  text-align: left;
}

h6 {
  font-weight: initial;
  text-align: left;
}

/******************************/

.float {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
/***********************************************/   



        /* Bouton Login distinct */
        .nav-menu .login-btn {
            background-color: transparent;
            border: 2px solid #e94560;
            color: #e94560;
            font-weight: 600;
        }

        .nav-menu .login-btn:hover {
            background-color: #e94560;
            color: #fff;
        }

        /* ===== MENU BURGER (mobile) ===== */
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background-color: #eaeaea;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* ===== RESPONSIVE ===== */
        @media screen and (max-width: 768px) {
            .burger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background-color: #1a1a2e;
                width: 100%;
                text-align: center;
                transition: 0.4s;
                gap: 0;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu a {
                padding: 15px;
                width: 90%;
                margin: 0 auto;
                justify-content: center;
            }

            /* Animation burger en X */
            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }
            .burger.active span:nth-child(2) {
                opacity: 0;
            }
            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }
        }

        /* ===== CONTENU DEMO ===== */
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        section {
            margin-bottom: 60px;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 12px;
        }

        h2 {
            color: #1a1a2e;
            margin-bottom: 15px;
        }

/*************************************************************/
.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #e94560;
  padding: 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.875rem;
  color: #a0a0a0;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e94560;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #b8b8b8;
  padding: 0.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: #fff;
  background: #e94560;
  border-color: #e94560;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
}
/******************************************************************/       

.news-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #0066cc;
    padding-bottom: 0.5rem;
}

.news-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.news-image-wrapper {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    text-align: center;
}

.news-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-subtitle {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.news-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.news-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Accessibilité */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .news-title {
        font-size: 1.25rem;
    }
    
    .news-headline {
        font-size: 1.1rem;
    }
    
    .news-content {
        padding: 1rem;
    }
}

/*************************************************************************************/