/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #000;
  font-family: 'Rajdhani', sans-serif;
  color: #fff;
}

/* STRUCTURE DE PAGE */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* HEADER */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: rgb(0, 0, 0);
  padding: 0px 20px;
  position: relative;
}

/* BURGER À GAUCHE */
.burger-btn {
  justify-self: start;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.burger-btn span {
  height: 3px;
  background-color: #fff;
  transition: 0.1s ease;
  border-radius: 2px;
}

/* LOGO AU CENTRE */
.logo-img {
  height: 150px;
  object-fit: cover;
  justify-self: center; 
}

/* ANIMATION BURGER */
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MENU BURGER */
.burger-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 90px;
  left: 10px;
  background: #111;
  border: 1px solid #333;
  padding: 15px 20px;
  z-index: 100;
}

.burger-menu ul {
  list-style: none;
}

.burger-menu li {
  margin-bottom: 10px;
}

.burger-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}
.burger-menu a:hover {
  color: #f39c12;
}

/* FOOTER */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

.section-title{
  margin-left: 10px;
}

.spotify-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 20px;
}

.spotify-card {
  background-color: #111;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.spotify-card:hover {
  transform: translateY(-5px);
}

.spotify-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.spotify-link {
  text-decoration: none;
  color: inherit;
}

.album-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #f1f1f1;
}

.album-meta {
  font-size: 0.85rem;
  color: #aaa;
}



@media (max-width: 768px) {
  .hero-video video {
    transform: scale(1.2);
  }
}