/* =========================================================
   NIRVANANAS — BASE STYLE (2026 MODE)
   Clean / Responsive / One-page / CRT compatible
   ========================================================= */


/* =========================
   RESET
   ========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family: Inter, sans-serif;
  background:#050505;
  color:#fff;
  overflow-x:hidden;
  line-height:1.5;
}


/* =========================
   NAVIGATION
   ========================= */

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 60px;

  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);

  z-index:1000;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:20px;
  text-transform:uppercase;
  font-size:.9rem;
  letter-spacing:1px;
}

.logo{
  font-family: Oswald, sans-serif;
  letter-spacing:3px;
}


/* =========================
   SECTIONS
   ========================= */

.section{
  padding:140px 10%;
}


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

.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  min-height:100vh;
  gap:40px;
}

.hero-left h1{
  font-size:6rem;
  font-family: Oswald, sans-serif;
  line-height:1;
}

.hero-right img{
  width:100%;
  height:100vh;
  object-fit:cover;
  display:block;
}


/* =========================
   SPLIT SECTION
   ========================= */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.big-text{
  font-size:3rem;
  font-family: Oswald, sans-serif;
}


/* =========================
   FULL IMAGE SECTION
   ========================= */

.full-image {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 4rem;
  font-family: Oswald, sans-serif;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .full-image {
    height: auto; /* la hauteur suit l'image naturellement */
  }

  .full-image img {
    height: auto; /* plus de rognage */
    object-fit: contain; /* ou retire object-fit complètement */
  }

  .overlay-text {
    font-size: 2rem;
    bottom: 20px;
    left: 20px;
  }
}


/* =========================
   TOUR
   ========================= */

.tour h2{
  font-size:3rem;
  margin-bottom:40px;
}

#tourContainer div{
  padding:25px 0;
  border-bottom:1px solid #222;
  font-size:1.5rem;
}


/* =========================
   VIDEOS GRID
   ========================= */

.videos h2{
  font-size:3rem;
  margin-bottom:40px;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:10px;
}

/* wrapper qui force un ratio 16:9 quel que soit le nombre de vidéos
   (1, 2, 3 ou 4 à venir) sans avoir à retoucher le CSS */
.video-wrapper{
  position:relative;
  width:100%;
  padding-top:56.25%;
}

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


/* =========================
   MEDIA GRID
   ========================= */

.media h2{
  font-size:3rem;
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.grid img{
  width:100%;
  height:250px;
  object-fit:cover;
  cursor:pointer;
  transition:transform .3s ease;
}

.grid img:hover{
  transform:scale(1.05);
}


/* =========================
   EPK BUTTONS
   ========================= */

.epk a{
  display:inline-block;
  margin-right:20px;
  padding:15px 25px;

  background:white;
  color:black;

  text-decoration:none;
  font-weight:bold;
  transition:0.2s;
}

.epk a:hover{
  opacity:0.8;
}


/* =========================
   MODE TOGGLE BUTTON
   ========================= */

#modeToggle{
  position:fixed;
  top:90px;
  right:20px;

  z-index:9999999;

  padding:10px 14px;

  font-family: Inter, sans-serif;
  font-size:12px;
  letter-spacing:2px;

  background:rgba(0,0,0,0.7);
  color:white;

  border:1px solid rgba(255,255,255,0.3);

  cursor:pointer;

  transform:none !important;
  filter:none !important;
  animation:none !important;
}


/* =========================
   ABOUT SECTION
   ========================= */

.about {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  flex: 1 1 45%;
  min-width: 0;        /* empêche le débordement flex */
}

.about > div {
  flex: 1 1 45%;
  min-width: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    gap: 20px;
  }

  .about img {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .about > div {
    flex: none;
    width: 100%;
  }
}


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

@media (max-width: 768px) {
  .full-image {
    height: auto;
  }

  .full-image img {
    height: auto;
    object-fit: unset;
  }

  .overlay-text {
    font-size: 2rem;
    bottom: 20px;
    left: 20px;
  }
}

/* =====================================
   SOCIAL
   ===================================== */

.footer-social{
    padding:120px 5% 80px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:60px;
}

.footer-social a{
    color:white;
    text-decoration:none;
    font-size:.8rem;
    letter-spacing:3px;
    text-transform:uppercase;
    transition:.3s;
}

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


/* =====================================
   FOOTER
   ===================================== */

.footer-lennon{
    background:white;
    color:black;

    padding:100px 5% 60px;
}

.footer-title{

    font-family:Oswald, sans-serif;

    font-size:clamp(2.5rem,8vw,7rem);

    line-height:1;

    letter-spacing:-2px;

    text-transform:uppercase;

    text-align:center;

    margin-bottom:80px;

    color:black;
}

.footer-block a{
    color:black;
    text-decoration:none;
}

.footer-label{
    color:#000;
}

.footer-social{
    background:#050505;
}

.footer-social a{
    color:white;
}

.footer-contacts{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
    margin-bottom:80px;
}

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

.footer-label{
    text-transform:uppercase;
    font-size:.7rem;
    letter-spacing:2px;
    opacity:.5;
}

.footer-block a{
    color:black;
    text-decoration:none;
    font-size:1rem;
}

.footer-block a:hover{
    opacity:.6;
    color:red;
}

.footer-meta{
    display:flex;
    justify-content:space-between;
    font-size:.75rem;
    opacity:.4;
    text-transform:uppercase;
    letter-spacing:2px;
}