*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:white;
    font-family:'Montserrat',sans-serif;
}
/* a laisser pour le SEO */
h1 {
    position: absolute;
    left: -9999px;
}

iframe{
	border-radius:12px;
	margin-top:20px;
}

a{
	color:inherit;
	text-decoration:none;
}

section{
	scroll-margin-top: 90px;
	padding:100px 8%;
}

h1,h2,h3{
  font-family:'Oswald',sans-serif;
  letter-spacing:2px;
  text-transform:uppercase;
}

h2{
 text-align:center;
  font-size:3rem;
  margin-bottom:40px;
  color:#f5c542;
}

p{
  line-height:1.8;
  color:#ddd;
}	
img{
  max-width:100%;
  display:block;
}

nav{
	position:fixed;
	top:0;
	width:100%;
	z-index:1000;
	backdrop-filter:blur(8px);
	background:rgba(0,0,0,0.5);
	padding:20px 8%;
	display:flex;
	justify-content:center;
	align-items:center;
}

nav .logo{
  font-family:'Oswald',sans-serif;
  font-size:2rem;
  color:#f5c542;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 30px;
	background: #111;
	position: sticky;
	top: 0;;
    z-index: 9999;
}

.menu {
    display: flex;
    gap: 25px;
    list-style: none;
	 z-index: 10000;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
	 z-index: 10000;
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    padding: 12px 16px;
    min-width: 48px;
    min-height: 48px;
	 z-index: 10000;
    }

.logo-img{
height:60px;
width:auto;
display:block;
}

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero video{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  min-width:100%;
  min-height:100%;
  object-fit:cover;
  filter:brightness(0.35);
}

.hero-logo{
	max-width:500px;
	width:80%;
	height:auto;
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.hero h1{
  font-size:7rem;
  color:#f5c542;
  text-shadow:0 0 20px rgba(0,0,0,0.8);
}

.hero p{
	font-size:1.4rem;
	max-width:700px;
	margin-top:20px;
	color:#eee;
}


.bio{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:60px;
	align-items:center;
}

.bio img{
	border-radius:20px;
	height:600px;
	object-fit:cover;
}


.concerts {
    padding: 60px 20px;
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
}

.concerts h2 {
    text-align: center;
    margin-bottom: 30px;
}

.concert-grid {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CARTE */
.concert-card {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;

    background: #1c1c1c;
    padding: 15px 20px;
    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.25s;
}

.concert-card:hover {
    transform: translateY(-3px);
    background: #222;
}

/* DATE */
.date {
    text-align: center;
}

.day {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
}

.month {
    display: block;
    color: #ff4d4d;
    font-weight: bold;
}

.year {
    display: block;
    opacity: 0.6;
    font-size: 0.85rem;
}

/* CONCERT */
.event {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0 10px;
}

/* VILLE */
.city {
    text-align: right;
    opacity: 0.8;
    font-weight: 500;
}	

.info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.btn{
  margin-top:40px;
  display:inline-block;
  padding:15px 35px;
  border:2px solid #f5c542;
  color:#f5c542;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:2px;
}

.btn:hover{
  background:#f5c542;
  color:black;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.gallery-item {
    background: black;          /* le vide devient noir */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;              /* toutes les cases ont la même hauteur */
    overflow: hidden;
}

.gallery-grid img{
   max-width: 100%;
    max-height: 100%;
    object-fit: contain;        /* garde l'image entière */
  border-radius:15px;
}

.gallery-img {
    cursor: pointer;
    transition: 0.2s;
}

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

/* fond noir plein écran */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* image agrandie */
.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.press-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.press-card{
  background:#181818;
  padding:30px;
  border-radius:20px;
  border-left:5px solid #f5c542;
}

footer{
  padding:40px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.1);
  color:#888;
}

.videos {
  max-width: 1000px;
  margin: 40px auto;
  color: white;
  font-family: Arial, sans-serif;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
}

.past-container {
text-align: center;
  max-width: 700px;
  margin: 40px auto;
  color: white;
  font-family: Arial, sans-serif;
}

.past-list {
  display: flex;
  flex-direction: column;
  gap: 12px;   /* 🔥 solution moderne */
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
}


.btn-past {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg, #ff4d4d, #b30000);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-past:hover {
  background: #222;
  transform: scale(1.03);
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {

  background: #0f0f0f;
  color: white;
  max-width: 500px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  font-family: Arial, sans-serif;
}
.concerts-passes-container {
    text-align: center;
    margin: 30px 0;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

.contact {
	text-align:center;	
}

.contact a{
	display:inline-block;
	padding:12px 20px;
	background:#ff4d4d;
	color:white;
	text-decoration:none;
	border-radius:8px;
	font-family:Arial; 
}

.social-links {
	font-size: 34px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: 0.2s;
    color: white;
}



/* Instagram */
.social-links a[href*="instagram"] {
    background: #E1306C;
}

/* Spotify */
.social-links a[href*="spotify"] {
    background: #1DB954;
}

}

.social-links a:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

 .dog-deco {
     display: block;
    margin: 60px auto;
    width: 200px;
    max-width: 70%;
    opacity: 0.95;
    transform: rotate(-3deg);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.press-area {
  max-width: 700px;
  margin: 60px auto;
  padding: 20px;
  background: #0f0f0f;
  color: white;
  border-radius: 16px;
  font-family: Arial, sans-serif;
}

.press-area h2 {
  margin-bottom: 10px;
}

.press-area p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.downloads {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.downloads a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #1c1c1c;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.downloads a:hover {
  background: #2a2a2a;
}
/* 📱 mobile */

@media (max-width: 768px) {
	
	section {
	padding: 25px 15px;
	}

	h2 {
	margin: 12px 0 8px 0;
	font-size: 1.6rem;
	}

	p {
	margin: 3px 0;
	line-height: 1.4;
	}	

	nav ul{
	display:none;
	}

	h2{
	font-size:2.2rem;
	}

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

	.hero h1{
	font-size:4rem;
	}

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

	.modal-content {
	margin: 30% 10px;
	}

	.past-list {
	max-height: 250px;
	}

	.concert-card {
	grid-template-columns: 1fr;
	text-align: center;
	gap: 8px;
	}

	.city {
	text-align: center;
	}

	.menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 70px;
	right: 20px;
	width: 220px;
	background: rgba(20,20,20,0.95);
	border-radius: 12px;
	padding: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.4);
	}

	.menu.active {
	display: flex;
	}

	.menu li {
	padding: 10px 0;
	text-align: center;
	}
	
	.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	font-size: 2.6rem;
	line-height: 1;
	background: rgba(255,255,255,0.1);
	border-radius: 12px;
	border: none;
	color: white;
	cursor: pointer;
	}
}
