/* Reset général */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #111;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: white;
    transition: 0.3s ease;
}

a:hover {
    opacity: 0.5;
}

/* Header */
header {
    position: relative;
    text-align: center;
    padding: 20px;
}

.logo-luca-usan-haut {
    width: 150px;
    margin: 20px 0;
}

.pages-haut {
    display: flex;
    justify-content: center;
    font-weight: 500;
    gap: 50px;
    font-size: 1.2em;
    margin-top: 10px;
}

.icon-insta-haut {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 30px;
    transition: transform 0.3s;
}

.icon-insta-haut:hover {
    transform: scale(1.1);
}

/* Titres */
.title {
    text-align: center;
    font-weight: 900;
    font-size: 60px;
    margin-top: 10%;
    margin-bottom: 5%;
    opacity: 0.3;
    text-shadow: 5px 5px black;
}

.title::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    background-color: #ffffff;
    margin: 10px auto 0;
    opacity: 0.3;
}

.subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-left: 100px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.subtitle-2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 100px;
    margin-left: 100px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.sub-subtitle {
    margin-left: 100px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.sub-subtitle-2 {
    margin-top: 100px;
    margin-left: 100px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Vidéos */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Galeries */
.gallery {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2vmin;
    padding: 0 14px;
}

.gallery::after {
    content: " ";
    display: block;
    flex-grow: 10;
}

.gallery li {
    list-style-type: none;
    height: 400px;
    flex-grow: 1;
}

.gallery a {
    display: block;
    height: 100%;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02);
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: #191919;
    padding: 40px 20px;
    margin-top: 10%;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.pages-bas {
    display: flex;
    gap: 50px;
    font-size: 1em;
}

.logo-luca-usan-bas {
    width: 100px;
    margin: 20px 0;
}

.icon-insta-bas {
    position: relative;
    width: 30px;
    transition: transform 0.3s;
}

.icon-insta-bas:hover {
    transform: scale(1.1);
}

copyright {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 50px;
    }

    .subtitle,
    .subtitle-2 {
        font-size: 20px;
        margin-left: 20px;
    }

    .gallery {
        padding: 0 10px;
    }

    .gallery li {
        height: 250px;
    }
}

/* Lightbox2 override styles (optionnel) */
.lb-data .lb-caption {
    color: white !important;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}
