/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@300;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #111;
    color: #eee;
}

/* Navigation */
.nav {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: #000;
    position: sticky;
    top: 0;
}

.nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.nav a.active {
    color: #00e5ff;
}
/* Texte néon net et lumineux */
.logo {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    
    /* Couleur interne nette */
    color: #e6faff; /* très clair bleu-blanc */

    /* Contour blanc fin & net */
    -webkit-text-stroke: 1px #ffffff;
    text-stroke: 1px #ffffff;
    
    /* Glow néon externe */
    text-shadow:
        0 0 2px #e6faff,
        0 0 6px #e6faff,
        0 0 12px #00e5ff,
        0 0 25px #00c8ff,
        0 0 45px #0098ff;
    
    transition: 0.3s ease;
    animation: neonPulse 2.5s infinite alternate;
    cursor: pointer;
}


/* Hero */
.hero {
    height: 90vh;
    background: url('img/bg-streetart.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-content h2 {
    font-size: 50px;
    color: #fff;
    text-shadow: 0 0 10px #00e5ff;
}
.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #00e5ff;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
}

/* Gallery */

/* Mode collage freestyle */
.gallery {
    position: relative;
    height: 1600px;
}

.gallery-item {
    position: absolute;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.gallery-item:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 10;
}



/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    justify-content: center;
    align-items: center;
}
#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

/* About */
.about {
    padding: 40px;
}
.about form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}
.about input, .about textarea {
    margin-bottom: 15px;
    padding: 10px;
}
.about button {
    background: #00e5ff;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
}
.status {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.status.loading {
    background-color: #f0f0f0;
    color: #666;
}

.status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Effet Néon sur le titre */
.logo {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    color: #00e5ff; /* votre bleu fluo */
     /* Contour net et précis */
    -webkit-text-stroke: 1.2px #ffffff;
    text-stroke: 1.2px #ffffff;
     /* Espacement des lettres pour les rendre nettes */
    letter-spacing: 2px;

    text-shadow:
        0 0 0px rgba(255,255,255,0), /* on élimine le flou interne */
        0 0 12px #00e5ff,
        0 0 28px #00c8ff,
        0 0 55px #0098ff,
        0 0 80px #0070ff;
    transition: 0.3s ease;
    animation: neonPulse 2.5s infinite alternate;
    cursor: pointer;
}

/* Survol : glow renforcé, contour toujours net */
.logo:hover {
    color: #ffffff;
    -webkit-text-stroke: 1px #e6faff;
    text-stroke: 1px #e6faff;

    text-shadow:
        0 0 3px #ffffff,
        0 0 10px #00e5ff,
        0 0 20px #00d5ff,
        0 0 40px #00b2ff,
        0 0 80px #0090ff,
        0 0 120px #0060ff;

    transform: scale(1.06);
}

/* Animation pulsante */
@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 5px #00e5ff,
            0 0 10px #00e5ff,
            0 0 20px #00e5ff,
            0 0 40px #00bbff;
    }
    100% {
        text-shadow:
            0 0 10px #00e5ff,
            0 0 20px #00e5ff,
            0 0 40px #00bbff,
            0 0 60px #0099ff;
    }
}
