body {
    margin: 0;
    background: #000;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

.hero {
    background: url("Images/BleuRose.jpeg") center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    animation: fadeIn 2s ease-out;
}

.animated-title {
    font-size: 3rem;
    color: #c81396;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
    animation: pulse 4s infinite ease-in-out;
}

.slogan {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
}

.gallery-section {
    padding: 3rem;
}

.gallery {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* cartes cliquables restaurées sans effets de lien */

.card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px #3C6CA8;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: auto;
}

.text {
    padding: 1rem;
}

.text h3 {
    color: #c81396;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.text p {
    color: white;
    text-decoration: none;
}

/* annule les couleurs de lien par défaut pour les cartes */
a.card:link,
a.card:visited,
a.card:hover,
a.card:active {
    text-decoration: none;
    color: inherit;
}

/* animations */

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 10px #fff, 0 0 20px #eab2bb; }
    50% { text-shadow: 0 0 20px #3C6CA8, 0 0 40px #eab2bb; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* header et footer */

.site-header {
    background-color: #000;
    padding: 1rem 2rem;
    text-align: center;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.nav a {
    color: var(--rose);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--bleu);
}

.site-footer {
    background-color: #111;
    color: var(--blanc);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.footer-links li {
    margin: 0.3rem 0;
}

.footer-links a {
    color: var(--bleu);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.video-link {
    color: #c81396; /* couleur rose accordée avec ton titre */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-link:hover,
.video-link:focus {
    color: #3C6CA8; /* bleu complémentaire */
    text-decoration: underline;
    outline: none;
}


