<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----- GLOBAL ----- */
body {
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url('/images/partenaire-surf-kitesurf.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #e0f7fa;
    font-family: 'Poppins', sans-serif;
    color: #222;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-position: top;
    }
}

/* Barre de navigation */
nav {
    background: white;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    background: var(--secondary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    position: relative;
}

nav a:hover {
    background: var(--hover-color);
}

/* Étiquette chantier pour rubriques inaccessibles */
nav a.inactive::after {
    content: '🚧 à venir';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffc107;
    color: #111;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: bold;
    transform: rotate(-10deg);
    z-index: 1;
}

/* Menu déroulant */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    width: 180px;
    padding: 10px 0;
}

nav ul li:hover &gt; ul {
    display: block;
}

nav ul li.active &gt; ul {
    display: block;
}

nav ul li ul li {
    display: block;
    text-align: left;
}

nav ul li ul li a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    background: white;
    font-weight: 400;
    border-radius: 0;
}

nav ul li ul li a:hover {
    background: var(--primary-color);
    color: white;
}

@media screen and (max-width: 768px) {
    nav ul li:hover &gt; ul {
        display: none !important;
    }

    nav ul li ul {
        position: static;
        box-shadow: none;
        background: none;
        width: 100%;
        padding: 0;
    }

    nav ul li ul li {
        padding: 10px;
        text-align: left;
    }

    nav ul li.active ul {
        display: block;
    }
}

/* === STRUCTURE DES SECTIONS PRINCIPALES === */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.highlight-section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(112, 107, 107, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.highlight-section h2 {
    font-size: 1.6rem;
    color: #0077b6;
    margin-bottom: 20px;
    text-align: center;
}

.highlight-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.highlight-section ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

@media (max-width: 768px) {
    .highlight-section {
        padding: 20px;
    }

    .highlight-section h2 {
        font-size: 1.4rem;
    }

    .highlight-section ul li {
        font-size: 1rem;
    }
}
.blob-title {
    display: inline-block;
    animation: fade-in-title 2s ease-in-out;
    margin-left: 6px;
    vertical-align: middle;
}

.blob-in-title {
    height: 40px;
    width: auto;
    vertical-align: middle;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    animation: pulse-logo 2s ease-in-out infinite;
}

@keyframes fade-in-title {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse-logo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
/* ----- FOOTER ----- */
footer {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 2px solid #00bcd4;
    font-size: 1rem;
    color: #333;
}

footer .socials {
    margin-top: 10px;
}

footer .socials a {
    margin: 0 10px;
    font-size: 1.8rem;
    color: #00bcd4;
    transition: transform 0.2s, color 0.3s;
    text-decoration: none;
}

footer .socials a:hover {
    color: #ff5722;
    transform: scale(1.2);
}

/* ----- NAVBAR ----- */
.hero-header {
    background: linear-gradient(135deg, #ff7f50, #00bcd4);
    padding: 10px 0;
    color: white;
    animation: fade-in 2s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-logo h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    animation: slide-in 6s ease-in-out infinite alternate;
}

@keyframes slide-in {
    from {
        letter-spacing: 0px;
        transform: scale(1);
    }
    to {
        letter-spacing: 3px;
        transform: scale(1.05);
    }
}

.main-navbar {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
}

.navbar-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar-links a {
    text-decoration: none;
    color: #0077b6;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s;
}

.navbar-links a:hover {
    background-color: #0077b6;
    color: white;
}

/* ---- MENU BURGER RESPONSIVE ---- */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    display: block;
    background-color: #0077b6;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    position: relative;
}

.nav-toggle-label span::before {
    top: -8px;
    position: absolute;
}

.nav-toggle-label span::after {
    top: 8px;
    position: absolute;
}

@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        align-items: center;
        display: none;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-toggle-label {
        display: flex;
    }

    .nav-toggle:checked + .nav-toggle-label + .navbar-links {
        display: flex;
    }
}

.ribbon-vertical {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    background: repeating-linear-gradient(
        45deg,
        #FFD700 0px,
        #FFD700 30px,
        #000 30px,
        #000 60px
    );
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.construction-note {
    position: fixed;
    top: 15px;
    right: 15px;
    background-color: #ffcc00;
    color: #111;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 10;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

html {
    scroll-behavior: smooth;
}
</pre></body></html>