:root{
  --container: 1400px;
  --gutter: clamp(18px, 4vw, 70px);
  --panel: rgba(255,255,255,.03);
  --border: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.22);
  --accent: #e24b4b;
}

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

html,body{ height:100%; margin:0; padding:0; }

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

.container{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

/* =========================
   HERO
========================= */

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

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.75) 40%,
      rgba(0,0,0,0.90) 100%
    );
  background-size:120px 120px, cover;
  animation:dots 60s linear infinite;
  pointer-events:none;
}

@keyframes dots{
  from{ background-position:0 0; }
  to{ background-position:600px 600px; }
}


/* =========================
   NAV
========================= */
.nav{
  position:absolute;
  left:0; right:0;
  top:90px;
  padding:0 var(--gutter);
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:10;
}
.nav-left{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-right{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Brand gradient  */
.brand{
  font-size:54px;
  font-weight:300;
  letter-spacing:6px;
  line-height:1;
  text-decoration:none;

  background: linear-gradient(
    90deg,
    hsl(0, 96%, 9%) 0%,
    #c5bcbb 33%,
    #ffffffdd 33%,
    #d1c8c8 38%,
    #f7fbf9d1 38%,
    #0b3b20 100%
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
}

.brand:hover{ text-decoration:none; }

.icon-btn{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  opacity:.85;
}
.icon-btn:hover{ opacity:1; }

#searchBtn svg{
  width:22px;
  height:22px;
  display:block;
  stroke:#fff;
  stroke-width:2;
  fill:none;
  opacity:.95;
}

.menuGlyph{
  font-size:30px;
  line-height:1;
  display:block;
  transform:translateY(-1px);
}

.search-wrap{ position:relative; display:flex; align-items:center; }

.search-panel{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:50;
  display:none;
}
.search-panel.open{ display:block; }

.search-panel input{
  background:rgba(0,0,0,0.95);
  border:1px solid rgba(255,255,255,0.6);
  color:#fff;
  padding:10px 14px;
  width:280px;
  outline:none;
}

.menuBtn{
  font-size:26px;
  font-weight:600;
  margin-top:-3px;
}


/* =========================
   OFFCANVAS MENU
========================= */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:998;
}
.menu-overlay.active{ opacity:1; pointer-events:auto; }

.offcanvas{
  position:fixed;
  top:0;
  right:-360px;
  width:360px;
  max-width:90vw;
  height:100vh;
  background:#000;
  border-left:1px solid rgba(255,255,255,.12);
  padding:28px 26px;
  transition:right .25s ease;
  z-index:999;

  display:flex;
  flex-direction:column;
}
.offcanvas.active{ right:0; }

.close-btn{
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: .85;
  z-index: 10;
}
.close-btn:hover{ opacity:1; }

.offcanvas-links{
  margin-top:60px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.offcanvas-links a{
  color:#fff;
  text-decoration:none;
  letter-spacing:2px;
  font-size:14px;
  opacity:.85;
}
.offcanvas-links a:hover{ opacity:1; }

/* social icons bottom */
.offcanvas-footer{
  margin-top:auto;
  display:flex;
  gap:12px;
  padding-top:20px;
}
.offcanvas-footer a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  background:rgba(0,0,0,.35);
  color:#fff !important;
  text-decoration:none !important;
  opacity:.85;
  transition:opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.offcanvas-footer a:hover{
  opacity:1;
  border-color:rgba(255,255,255,.6);
  transform:translateY(-1px);
}
.offcanvas-footer svg{ width:18px; height:18px; fill:currentColor; }


/* =========================
   TILES
========================= */
.tiles{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:70vh;
  display:flex;
}

.tile{
  flex:1;
  position:relative;
  background-size:cover;
  background-position:center;
  filter:grayscale(100%);
  transition:transform .5s ease, filter .5s ease;
}

.tile:hover{
  filter:grayscale(0%);
  transform:scale(1.03);
  z-index:2;
}

.artists{ background-image:url("images/IMG_7504.JPG"); }
.instruments{ background-image:url("images/IMG_7502.JPG"); }
.genres{ background-image:url("images/IMG_7503.JPG"); }

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.text{
  position:absolute;
  bottom:60px;
  left:clamp(18px, 3vw, 50px);
  z-index:2;
}
.text span{ opacity:.6; font-size:14px; }
.line{ width:60px; height:2px; background:#fff; margin:10px 0; }
.text h2{ font-size:48px; font-weight:300; color:#bfb0b0; }
.tile:hover .text h2{ color:#fff; }


/* =========================
   FEATURE SECTIONS
========================= */
.feature-section{
  background:#000;
  padding:120px 0;
}

.feature-inner{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:80px;
  align-items:center;
}

.feature-section--reverse .feature-inner{
  grid-template-columns:0.9fr 1.1fr;
}

.feature-content{ color:#fff; }

.feature-kicker{
  font-size:12px;
  letter-spacing:2px;
  color:rgba(255,255,255,.6);
  margin-bottom:18px;
}

.feature-title{
  font-size:48px;
  font-weight:300;
  margin-bottom:24px;
  color:var(--accent);
}

.feature-text{
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.8);
  margin-bottom:32px;
}

.feature-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.feature-links a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  letter-spacing:1px;
  opacity:.75;
  border-bottom:1px solid rgba(255,255,255,.25);
  width:fit-content;
}
.feature-links a:hover{
  opacity:1;
  border-color:rgba(255,255,255,.6);
}

/* slider inside feature */
.feature-image.slider{
  position:relative;
  overflow:hidden;
  height:420px;
  background:#000;
}

.feature-image.slider .slides{
  display:flex;
  height:100%;
  transition:transform .7s ease;
}
.feature-image.slider .slides img{
  flex:0 0 100%;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  background:#000;
  display:block;
}

/* responsive features */
@media (max-width: 900px){
  .feature-inner{ grid-template-columns:1fr; gap:50px; }
  .feature-title{ font-size:36px; }
}


/* =========================
   NEWS
========================= */
.news-section{
  background:#000;
  padding:110px 0 90px;
  border-top:1px solid rgba(255,255,255,.08);
}

.news-inner{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
}

.news-head{ margin-bottom:36px; }

.news-kicker{
  letter-spacing:6px;
  font-size:12px;
  opacity:.6;
  margin-bottom:10px;
}

.news-title{
  font-size:46px;
  font-weight:300;
  margin-bottom:12px;
}

.news-sub{
  opacity:.75;
  max-width:720px;
  line-height:1.6;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:22px;
}

.news-card{
  display:block;
  text-decoration:none;
  color:#fff;
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:14px;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.news-card:hover{
  transform:translateY(-4px);
  border-color:var(--border-strong);
  background:rgba(255,255,255,.05);
}

.news-img{
  width:100%;
  aspect-ratio:16 / 11;
  background:#111;
}
.news-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.news-info{
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px 16px 0;
}

.news-tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:6px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  opacity:.95;
}

.news-date{ font-size:12px; opacity:.65; }

.news-card-title{
  padding:10px 16px 18px;
  font-size:18px;
  font-weight:600;
  line-height:1.35;
}

@media (max-width:1000px){
  .news-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:650px){
  .news-grid{ grid-template-columns:1fr; }
  .news-title{ font-size:36px; }
}


/* =========================
   EVENTS
========================= */
.events-section{
  background:#000;
  padding:110px 0 30px;  
   border-top:1px solid rgba(255,255,255,.08);   
}

.events-inner{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
}

.events-head{ margin-bottom:40px; }

.events-kicker{
  font-size:12px;
  letter-spacing:6px;
  opacity:.6;
  margin-bottom:10px;
}

.events-title{
  font-size:46px;
  font-weight:300;
  margin-bottom:12px;
}

.events-sub{
  max-width:720px;
  opacity:.75;
  line-height:1.6;
}

.events-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
}

.event-card{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:14px;
  padding:26px;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.event-card:hover{
  transform:translateY(-4px);
  border-color:var(--border-strong);
  background:rgba(255,255,255,.05);
}

.event-status{
  display:inline-block;
  font-size:11px;
  letter-spacing:1px;
  padding:6px 10px;
  border-radius:6px;
  margin-bottom:14px;
  background:var(--accent);
  color:#fff;
}

.event-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.event-meta{
  font-size:13px;
  opacity:.65;
  margin-bottom:14px;
}

.event-desc{
  font-size:14px;
  line-height:1.6;
  opacity:.85;
}

@media (max-width:1000px){
  .events-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:650px){
  .events-grid{ grid-template-columns:1fr; }
  .events-title{ font-size:36px; }
}


/* =========================
   EVENTS GALLERY (slider)
========================= */
.events-gallery{
  background:#000;
  padding: 0 0 100px; 
  border-top:none;    
}

.events-gallery-inner{
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
}

.events-slider{
  position:relative;
  overflow:hidden;
  height:420px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:#000;
  margin-top:-20px; 
}

.events-slides{
  display:flex;
  height:100%;
  transition:transform .8s ease;
}

.events-slides img{
  flex:0 0 100%;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* footer */
.footer{
  background:#121212;
  border-top:1px solid rgba(255,255,255,.08);
  padding:70px 0 30px;
}

.footer-main{
  width:min(1100px,92vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  position:relative;
}

/* vertical separator */
.footer-main::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  background:rgba(255,255,255,.15);
  transform:translateX(-50%);
}

/* LEFT */
.footer-left{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.footer-brand{
  font-size:20px;
  letter-spacing:4px;
  opacity:.9;
}

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

.footer-links a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  letter-spacing:1.5px;
  opacity:.7;
}

.footer-links a:hover{
  opacity:1;
}

/* RIGHT */
.footer-right{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-end;
}

.footer-title{
  font-size:20px;
  letter-spacing:3px;
  opacity:.6;
}

.footer-social{
  display:flex;
  gap:14px;
}

.footer-social a{
  width:36px;
  height:36px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  opacity:.8;
}

.footer-social a:hover{
  opacity:1;
}

/* BOTTOM */
.footer-bottom{
  margin-top:50px;
  text-align:center;
  font-size:12px;
  opacity:.55;
}

/* MOBILE */
@media (max-width:800px){
  .footer-main{
    grid-template-columns:1fr;
    gap:50px;
  }

  .footer-main::after{
    display:none;
  }

  .footer-right{
    align-items:flex-start;
  }
}
/* =========================
   INNER PAGES
========================= */
.hero--small{ height:260px; }
.hero--small .tiles{ display:none; }






/* =========================
   FINAL MOBILE FIX
========================= */
@media (max-width: 600px){

  /* ===== GLOBAL SAFETY ===== */
  body{
    padding-bottom: env(safe-area-inset-bottom);
  }

  .container{
    width: calc(100% - 36px);
  }

  /* ===== HERO ===== */
  .hero{
    height: 100svh; 
  }

  /* ===== NAV ===== */
  .nav{
    position:absolute;
    top: 18px;
    left:0;
    right:0;
    padding: 0 18px;
    z-index: 20;
  }

  .nav-left{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
  }

  .brand{
    font-size: 32px;
    letter-spacing: 2px;
    line-height:1.05;
    max-width: calc(100vw - 120px);
    display:block;
  }

  /* keep icons ALWAYS visible */
  .nav-right{
    position:absolute;
    right:18px;
    top:10px;
    display:flex;
    align-items:center;
    gap:10px;
  }

  .icon-btn,
  .menuBtn{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .menuBtn{
    font-size:28px;
    background:none;
    border:none;
    color:#fff;
  }

  .tiles{
    height: 58svh;
    display:flex;
    flex-direction: row;
  }

  .tile{
    flex:1;
  }

  .text{
    bottom: 26px;
    left: 18px;
  }

  .text h2{
    font-size: 30px;
    white-space: nowrap;
  }

  .text span{
    font-size: 12px;
  }

  .line{
    width: 44px;
  }


  /* ===== FEATURE SECTIONS (MOBILE = TEXT TOP, IMAGE BOTTOM) ===== */


  .feature-section{
    padding: 70px 0;
  }


  .feature-inner{
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
    align-items: stretch !important;
  }


  .feature-content{
    order: 1 !important;
  }
  .feature-image{
    order: 2 !important;
  }

  /* IMAGE */
  .feature-image,
  .feature-image.slider{
    width: 100% !important;
    height: auto !important;      
    aspect-ratio: 16 / 10;           
    border-radius: 18px !important
    
}

  .feature-image img,
  .feature-image.slider .slides img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
  }

  /* texte clean */
  .feature-title{ font-size: 34px !important; }
  .feature-text{ font-size: 15px !important; line-height: 1.65 !important; }
  /* ===== NEWS ===== */
  .news-grid{
    grid-template-columns:1fr;
  }

  .news-title{
    font-size: 34px;
  }

  /* ===== EVENTS ===== */
  .events-grid{
    grid-template-columns:1fr;
  }

  .events-title{
    font-size: 34px;
  }

  /* ===== FOOTER ===== */
  .footer-main{
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-main::after{
    display:none;
  }

  .footer-right{
    align-items:flex-start;
  }
}
