/* ============================================
   KARIN CLERCQ — Site 2026
   Style: blanc, élégant, aéré
   Typo: Cormorant Garamond + Raleway
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

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

/* ---------- Variables ---------- */
:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --near-black: #1a1a1a;
  --grey-dark: #4a4a4a;
  --grey-mid: #8a8a8a;
  --grey-light: #e0e0e0;
  --grey-bg: #f5f5f3;
  --bordeaux: #8b2942;
  --bordeaux-light: #a8455a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 70px;
  --transition: 0.3s ease;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--near-black);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { font-size: 1rem; color: var(--grey-dark); }

a { color: var(--near-black); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--bordeaux); }

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

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-light);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar .logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--near-black);
}
.navbar .logo span { color: var(--bordeaux); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-dark);
}
.nav-links a:hover, .nav-links a.active { color: var(--bordeaux); }

.lang-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
}
.lang-selector a {
  color: var(--grey-mid);
  font-weight: 500;
}
.lang-selector a.active { color: var(--near-black); font-weight: 700; }
.lang-selector span { color: var(--grey-light); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--near-black);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--grey-light);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero-content .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.85);
}
.hero-content .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.9);
}

/* ---------- Bento Grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 3rem;
}
.bento-card {
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.bento-card:hover img { transform: scale(1.05); }
.bento-card .card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.bento-card .card-title {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}
.bento-card .card-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Bento sizes */
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

@media (max-width: 768px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento-large, .bento-wide { grid-column: span 2; }
  .bento-tall { grid-row: span 1; }
}

/* ---------- Section headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  margin-bottom: 0.5rem;
}
.section-header .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Discographie ---------- */
.discography {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.album-card {
  text-align: center;
  transition: var(--transition);
}
.album-card:hover { transform: translateY(-4px); }
.album-card .cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.album-card .cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.album-card:hover .cover img { transform: scale(1.05); }
.album-card .album-num {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  text-transform: uppercase;
}
.album-card .album-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0.25rem 0;
}
.album-card .album-year {
  font-size: 0.85rem;
  color: var(--grey-mid);
}
.album-card .album-credit {
  font-size: 0.75rem;
  color: var(--grey-light);
  margin-top: 0.25rem;
}

/* ---------- Concert cards ---------- */
.concert-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.concert-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-radius: 10px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.concert-item:hover {
  border-left-color: var(--bordeaux);
  transform: translateX(4px);
}
.concert-item.upcoming { border-left-color: var(--bordeaux); }
.concert-date {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  min-width: 100px;
  color: var(--near-black);
}
.concert-date .day { font-size: 2rem; display: block; line-height: 1; }
.concert-date .month { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-mid); }
.concert-info { flex: 1; }
.concert-info .event { font-weight: 600; font-size: 1.05rem; }
.concert-info .venue { font-size: 0.9rem; color: var(--grey-mid); }
.concert-link a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--bordeaux);
}

@media (max-width: 768px) {
  .concert-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ---------- Presse ---------- */
.presse-section { margin-bottom: 3rem; }
.presse-section h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-light);
}
.presse-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.presse-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
}
.presse-list a {
  color: var(--near-black);
  border-bottom: 1px solid transparent;
}
.presse-list a:hover {
  color: var(--bordeaux);
  border-bottom-color: var(--bordeaux);
}
.presse-list .source {
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.05rem;
}

/* ---------- Bouton ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--near-black);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--bordeaux);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--near-black);
  border: 1px solid var(--grey-light);
}
.btn-outline:hover {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}
.btn-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(5px);
}
.btn-white:hover {
  background: var(--white);
  color: var(--near-black);
}

/* ---------- Newsletter ---------- */
.newsletter-box {
  background: var(--grey-bg);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-box h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.newsletter-box p {
  margin-bottom: 1.5rem;
}
.newsletter-box iframe {
  min-height: 550px;
}

/* ---------- Boutique ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card .product-info {
  padding: 1.5rem;
  text-align: center;
}
.product-card .product-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.product-card .product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
}
.product-card .product-price del {
  color: var(--grey-mid);
  font-weight: 400;
  margin-right: 0.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--near-black);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  text-align: center;
}
.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.footer .social-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer .social-links a:hover { color: var(--white); }
.footer .footer-contact {
  margin-bottom: 1.5rem;
}
.footer .footer-contact a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer .footer-contact a:hover { color: var(--white); }
.footer .copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  padding: calc(var(--nav-height) + 3rem) 0 2rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
}
.page-header .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

/* ---------- Embeds ---------- */
.embed-container {
  position: relative;
  width: 100%;
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}
.embed-container iframe {
  width: 100%;
  border: none;
}

/* Streaming links */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.streaming-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--off-white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.streaming-links a:hover {
  background: var(--near-black);
  color: var(--white);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ---------- Siestes ---------- */
.sieste-concept {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.sieste-concept h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.sieste-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.sieste-feature {
  text-align: center;
}
.sieste-feature .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.sieste-feature h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.sieste-feature p {
  font-size: 0.9rem;
  color: var(--grey-mid);
}

/* ---------- Archives dépliables ---------- */
.archive-year {
  margin-bottom: 1rem;
}
.archive-year summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-light);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.archive-year summary::before {
  content: '+';
  color: var(--bordeaux);
  font-weight: 700;
}
.archive-year[open] summary::before { content: '−'; }
.archive-year .archive-content {
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  color: var(--grey-dark);
}
.archive-year .archive-content p {
  padding: 0.25rem 0;
}
