body {
    overflow-x: hidden;
    font-family: 'Urbanist',sans-serif;
    color: white;
    background: black;
}

#menu-toggle {
	display: none
}


/* LOGO MANGOMANGO PAGE D'ACCUEIL */

.neon-text {
    visibility: hidden;
    margin: 0;
    margin-bottom: 30px;
	margin-top: -100px;
    margin-left: 0px;
    font-family: 'Anton','Impact','Arial Black',sans-serif;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 2px;
    color: #fa0;
    opacity: 0.8;
    animation: slideUp 1s ease-out 0.1s forwards;
}

@keyframes slideUp {
    from {
        visibility: visible;
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        visibility: visible;
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* LOGO MANGOMANGO AUTRES PAGES */

.neon2-text {
	text-align: center;
    font-family: 'Anton','Impact','Arial Black',sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 2px;
    color: #fa0 !important;
    opacity: 0.7;
	transition: opacity 0.3s ease;
}

.neon2-text:hover {
    opacity: 1;
}

/* TITRES */
main h1 {
    margin-bottom: 10px;
    font-size: 48px;
}

main p {
    margin: 0;
    font-size: 20px;
}

/* OVERLAY INDEX */

.accueil-hero {
    display: flex;
    z-index: 1;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: url('img/video-fallback.jpg') center center / cover no-repeat;
}

.accueil-hero::before {
    content: "";
	visibility: hidden;
    z-index: -1;
    position: absolute;
    top: 300px;
    right: 0;
    bottom: 280px;
    left: 0;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(0px);
	
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 0;
}

.social {
    display: inline-block;
    width: 38px;
    height: 38px;
    opacity: 0.4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    background-size: contain;
    transition: transform 0.3s ease,opacity 0.6s ease;
    transform-origin: center center;
}

.social:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social.facebook {
    background-size: 80%;
}

.social.youtube {
    background-size: 110%;
}

.social.spotify {
    background-size: 80%;
}

.social.deezer {
    background-size: 105%;
}

.social.apple {
    background-size: 85%;
}

.social.facebook {
    background-image: url('../img/icons/facebook.svg');
}

.social.instagram {
    background-image: url('../img/icons/instagram.svg');
}

.social.youtube {
    background-image: url('../img/icons/youtube.svg');
}

.social.spotify {
    background-image: url('../img/icons/spotify.svg');
}

.social.deezer {
    background-image: url('../img/icons/deezer.svg');
}

.social.apple {
    background-image: url('../img/icons/applemusic.svg');
}

/* Vidéo plein écran */

#bg-video {
    z-index: -1;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: black; /* utile pour éviter les bandes blanches */
    transform: translate(-50%, -50%);
    object-fit: cover;
}


/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    width: 100%;
    background: transparent;
    position: relative;
    z-index: 1000;
}

/* NAVIGATION */

.hamburger-label {
	display: none;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 15px 0;
    font-family: 'Urbanist',sans-serif;
    letter-spacing: 0;
    list-style: none;
    will-change: transform;
}

nav li {
    display: flex;
    position: relative;
    align-items: center;
    gap: 15px;
    animation: fadeInDown 0.6s ease-out forwards;
    transform: translateZ(0);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fa0;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav.nav-autre {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    margin-right: 50px;
	margin-bottom: 0px;
}

nav.nav-autre li {
    animation: none;
    transform: none;
}

nav.nav-autre ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
	align-items: center;
}

nav.nav-autre a {
    text-decoration: none;
    font-family: 'Urbanist',sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fa0;
    animation: none;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

nav.nav-autre a:hover {
    opacity: 1;
}

/* ESPACE PRO*/

.espace-pro {
    padding: 100px 20px;
    min-height: 100vh;
    text-align: center;
    color: white;
    background: url('../img/fond_pro.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}
.espace-pro h1 {
    margin-bottom: 20px;
    font-size: 36px;
}

.fichiers-a-telecharger {
    margin: 40px auto;
    padding: 0;
    max-width: 600px;
    list-style: none;
}

.fichiers-a-telecharger li {
    margin: 12px 0;
}

.fichiers-a-telecharger a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fa0;
    border-radius: 30px;
    text-decoration: none;
    color: #fa0;
    transition: background-color 0.3s,color 0.3s;
}

.fichiers-a-telecharger a:hover {
    color: black;
    background-color: #fa0;
}

/* PAGE CONCERTS */

.hero {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: auto;
    overflow: hidden;
    text-align: center;
    background: url('img/concerts-bg.jpg') center/cover no-repeat;
}

.hero::before {
    content: "";
    z-index: 1;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    inset: 0;
    backdrop-filter: blur(2px);
}

.hero h1 {
    z-index: 2;
    position: relative;
    font-family: 'Urbanist',sans-serif;
    font-size: 4rem;
    letter-spacing: 2px;
    color: #fa0;
}

.concerts-container {
    margin: auto;
    padding: 60px 20px;
    max-width: 1000px;
}

.concert-card {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 6px solid #fa0;
    border-radius: 8px;
    background: #1c1c1c;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s,box-shadow 0.3s;
}

.concert-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}

.concert-title {
    margin-bottom: 5px;
    font-family: 'Urbanist',sans-serif;
    font-size: 1.8rem;
    color: #fa0;
}

.concert-meta {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ddd;
}

.concert-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
}


/* VERSION SMARTPHONE */

@media screen and (max-width:768px) {
	
	header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 20px;
	}
	
	html, body {
	  overflow-x: hidden;
	  width: 100%;
	}
	
	.hamburger-label {
	  display: block;
	  font-size: 2rem;
	  color: #fa0;
	  cursor: pointer;
	  padding-right: 60px;
	  margin-left: auto; 
	  flex-shrink: 0;
	  z-index: 1002;
	}
	
	.social {
        width: 32px;
        height: 32px;
    }
	
	/* LOGO PAGES */
    .neon2-text {
        margin-top: 20px;
        margin-left: 0px;
        text-align: center;
        font-size: 1.4rem;
		
    }
	
	.logo {
		display: flex;
		align-items: center;
		flex-shrink: 0;
	}
	
	/* NAVIGATION */

    nav ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    nav li {
        opacity: 1;
        animation: none;
        transform: none;
    }

    nav a {
        visibility: visible !important;
        font-size: 1rem;
        opacity: 1 !important;
        animation: none !important;
    }
	
	  nav.nav-autre {
		position: absolute;
		top: 10px;
		right: 0;
		width: 100%;
	  }
	
	nav.nav-autre ul {
		display: none;
	}
	
    .nav-autre ul {
        display: none;
        z-index: 999;
        position: absolute;
        top: 30px;
        right: 0;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        background-color: rgba(0, 0, 0, 0.95);
    }
	
	.nav-autre li {
        padding: 10px 0;
        text-align: center;
    }
	
	.nav-autre a {
        font-size: 1.2rem;
    }
	
	#menu-toggle:checked ~ .nav-autre ul {
        display: flex;
		flex-direction: column;
    }

	.menu-toggle {
		display: none;
	}
	
	/* PAGE CONCERTS */
	
    .hero h1 {
        padding: 20px;
        font-size: 2rem;
    }

    .concerts-container {
        padding: 30px 15px;
    }

    .concert-card {
        padding: 15px;
    }

    .concert-title {
        font-size: 1.4rem;
    }

    .concert-meta {
        font-size: 0.95rem;
    }

    .concert-description {
        font-size: 0.9rem;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-video-container iframe {
        height: auto;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
}
