/* ============================================
   ADAM DAZED - CSS Statique (Ginger Style)
   Converti depuis React/Tailwind
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  /* Couleurs */
  --background: #f3d440;
  --foreground: #000000;
  --primary: #f3d440;
  --secondary: #000000;
  --border: #000000;
  
  /* Layout */
  --max-width: 1200px;
  --padding: 2rem;
  
  /* Transitions */
  --transition: 200ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Navigation Header --- */
.nav-header {
  position: sticky;
  top: 0;
  background-color: var(--background);
  padding: 1.5rem 2rem;
  z-index: 100;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #666666;
  transition: color var(--transition);
  text-transform: lowercase;
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

/* Menu hamburger mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid #000000;
  color: #000000;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* --- Main Container --- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-container {
  flex: 1;
  padding: 0 var(--padding) var(--padding);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* --- Logo Section --- */
.logo-section {
  text-align: center;
  margin-bottom: 3rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 auto;
  font-family: 'Courier New', monospace;
  color: #000000;
  letter-spacing: 0.1em;
}

@keyframes glitch {
  0%, 90%, 100% {
    transform: translate(0);
  }
  91% {
    transform: translate(-2px, 2px);
  }
  92% {
    transform: translate(2px, -2px);
  }
  93% {
    transform: translate(-1px, 1px);
  }
  94% {
    transform: translate(1px, -1px);
  }
}

@keyframes glitch-1 {
  0%, 88%, 100% {
    transform: translate(0);
    opacity: 0.8;
  }
  89% {
    transform: translate(-3px, 2px);
    opacity: 1;
  }
  90% {
    transform: translate(3px, -2px);
    opacity: 0.5;
  }
}

@keyframes glitch-2 {
  0%, 85%, 100% {
    transform: translate(0);
    opacity: 0.8;
  }
  86% {
    transform: translate(2px, -2px);
    opacity: 1;
  }
  87% {
    transform: translate(-2px, 2px);
    opacity: 0.6;
  }
}

@keyframes flicker {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.95;
  }
}

@keyframes chromatic {
  0%, 100% {
    text-shadow: 
      2px 2px 0 #ff00ff,
      -2px -2px 0 #00ffff,
      0 0 20px #00ff00;
  }
  50% {
    text-shadow: 
      -2px -2px 0 #ff00ff,
      2px 2px 0 #00ffff,
      0 0 30px #00ff00;
  }
}

/* --- Hero Section --- */
.hero-banner {
  margin-bottom: 2rem;
}

.hero-content {
  width: 100%;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000000;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
}

/* --- Video Container --- */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 2rem;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --- CTA Section --- */
.cta-section {
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-button {
  background: #000000;
  color: #f3d440;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
}

.cta-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* --- Tour Section --- */
.tour-section {
  text-align: center;
  margin-bottom: 3rem;
}

.tour-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tour-message {
  font-size: 1rem;
  opacity: 0.9;
}

/* --- Section Divider --- */
.section-divider {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 3rem 0;
}

/* --- Content Box --- */
.content-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border: 20px solid #000000;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Page Title --- */
.page-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

/* --- Page Content --- */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

/* --- Bio Page Styles --- */
.bio-artist-name {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.bio-photo {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.bio-divider {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 3rem auto;
  max-width: 400px;
}

.bio-section {
  max-width: 400px;
  margin: 0 auto;
}

.bio-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.bio-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bio-list {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.bio-list li {
  margin-bottom: 0.5rem;
}

.bio-contact {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.9;
}

/* --- Merch Grid --- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.merch-item {
  text-align: center;
  transition: transform var(--transition);
}

.merch-item:hover {
  transform: translateY(-5px);
}

.merch-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.merch-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.merch-price {
  font-size: 1rem;
  opacity: 0.9;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(0, 0, 0, 0.2);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid transparent;
  color: #333;
  border-radius: 8px;
  font-family: inherit;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-button {
  width: 100%;
  background: white;
  color: var(--background);
  padding: 1.25rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.form-button:hover {
  background: #000000;
  color: #f3d440;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.form-button:active {
  transform: translateY(-1px);
}

/* --- Contact Information --- */
.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
}

.contact-item {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.75rem;
  }
  
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  :root {
    --padding: 1rem;
  }
  
  .nav-header {
    padding: 1rem;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-content {
    min-height: 300px;
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button {
    width: 100%;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .merch-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bio-artist-name {
    font-size: 2.5rem;
  }
  
  .bio-section-title {
    font-size: 1.5rem;
  }
  
  .bio-text {
    font-size: 1rem;
  }
  
  .bio-list {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
}

/* --- Mobile Small (max 480px) --- */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.125rem;
  }
  
  .nav-link {
    font-size: 1rem;
  }
}

