/*Theme Name: Lallyb1_1
Author: Lallyb1
Description: dontknow
Version: 1.2
*/

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 95, 162, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}
.logo-gif {
  width: 24px;    
  height: 24px;
  vertical-align: middle;  
  margin-left: 4px;        
}

/* MENU DESKTOP */
.desktop-menu {
  display: flex;
  gap: 25px;
}

.desktop-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* MENU MOBILE */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 100%;
  height: calc(100svh - 70px);
  background: #ff5fa2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

/* SECTIONS CENTRÉES */
.hero,
.music-page,
.about-page {
  min-height: calc(100svh - 70px);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* HERO */
.hero {
  background-image: url('https://lallyb1.com/wp-content/uploads/2026/01/Capture-decran-2025-09-14-221100.png');
  background-size: cover;
  background-position: center;
}

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

.hero h2 {
  font-size: 1.6rem;
  margin-top: 10px;
  opacity: 0.9;
}

.hero button {
  margin-top: 30px;
  background: #fff;
  color: #ff5fa2;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* POPUP */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.popup-content h3 {
  color: #ff5fa2;
  margin-bottom: 15px;
}

.popup-content audio {
  width: 100%;
}

.popup-gif {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ff5fa2;
}

body.popup-open {
  overflow: hidden;
}

/* ABOUT PAGE */
.text-bubble {
  background: rgba(255,255,255,0.95);
  border-radius: 30px;
  padding: 40px 50px;
  max-width: 700px;
  width: 100%;
  margin: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.text-bubble h1 {
  font-size: 2.4rem;
  color: #ff5fa2;
  margin-bottom: 20px;
}

.text-bubble p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #111;
}

.text-bubble a {
  color: #ff5fa2;
  font-weight: 600;
  text-decoration: none;
}

/* MUSIC PAGE */
.music-page h1 {
  font-size: 2.6rem;
  color: #ff5fa2;
  margin-bottom: 30px;
}

/*Windows 94 frONT PAGE ==========*/
.win94-window {
  width: 90%;
  max-width: 360px;
  margin: 20px auto;
  background: #c0c0c0;
  border: 2px solid #808080;
  box-shadow: inset -2px -2px 0 #000, inset 2px 2px 0 #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.win94-titlebar {
  background: linear-gradient(to right, #00ff00, #ffff00, #ff00ff);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-family: Tahoma, sans-serif;
  font-size: 0.9rem;
}

.win94-buttons {
  display: flex;
  gap: 4px;
}

.win94-buttons .btn {
  width: 18px;
  height: 18px;
  background: #c0c0c0;
  border: 1px solid #000;
  box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  cursor: pointer;
}

.win94-content {
  padding: 8px;
  background: #c0c0c0;
}

.win94-window .music-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: 2px inset #808080;
  border-radius: 4px;
}

.win94-window .music-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* WINDOWS 95 MUSIC PAGE=*/
.win95-window {
  width: 90%;
  max-width: 380px;
  margin: 20px auto;
  background: #c0c0c0;
  border: 2px solid #808080;
  box-shadow: inset -2px -2px 0 #000, inset 2px 2px 0 #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.win95-titlebar {
  background: linear-gradient(to right, #00ff66, #00cc55);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-family: Tahoma, sans-serif;
  font-size: 0.9rem;
}

.win95-buttons {
  display: flex;
  gap: 4px;
}

.win95-buttons .btn {
  width: 18px;
  height: 18px;
  background: #c0c0c0;
  border: 1px solid #000;
  box-shadow: inset -1px -1px 0 #808080, inset 1px 1px 0 #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  cursor: pointer;
}

.win95-window .music-video {
  width: 100%;
  aspect-ratio: 16/9;
  border: 2px inset #808080;
  border-radius: 4px;
}

.win95-window .music-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* MOVING GIF */
#movingGif {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
  z-index: 9999;
  pointer-events: none;
  isolation: isolate;
}

/* FOOTER */
.site-footer {
  background: #ff5fa2;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .desktop-menu { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.4rem; }
  .hero h2 { font-size: 1.4rem; }

  #movingGif { width: 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.2rem; }

  .text-bubble { padding: 30px 20px; }

  .win94-window, .win95-window { max-width: 320px; }
  .win94-titlebar, .win95-titlebar { font-size: 0.8rem; }
  #movingGif { width: 40px; }
}

/* Bouton principal front-page */
#openPlayer {
  margin-top: 30px;
  background: #fff;
  color: #ff5fa2;
  border: none;
  border-radius: 30px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 5px 0 #ff5fa2, 0 6px 10px rgba(0,0,0,0.2);
}

#openPlayer:hover,
#openPlayer:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #ff5fa2, 0 4px 6px rgba(0,0,0,0.2);
}

.media-wrapper {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 15px;
  position: relative;
}
