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

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

html{
  scroll-behavior:smooth;
}

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

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

/* =========================================
VARIABLES
========================================= */

:root{
  --green1:#179b47;
  --green2:#34d26a;
  --green3:#6dff9b;

  --gold:#d6b36a;
  --gold2:#f3ddb0;

  --white:#fff;
}

/* =========================================
PAGE WRAPPER
========================================= */

.page-inscriptions{
  overflow-x:hidden;
}

/* =========================================
HEADER FIXED SPACE (IMPORTANT)
========================================= */

.hero{
  padding-top:210px;
}

/* =========================================
HEADER (compat HTML menu1.css)
========================================= */

.main-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;

  display:flex;
  justify-content:center;

  padding:14px 20px;
}

.nav-container{
  width:100%;
  max-width:1350px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:10px 20px;

  border-radius:18px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(18px);
}

/* NAV */
.navbar{
  display:flex;
  gap:25px;
  align-items:center;
}

.navbar a{
  color:rgba(255,255,255,0.75);
  transition:0.25s;
}

.navbar a:hover{
  color:#fff;
}

/* CTA */
.nav-cta{
  padding:10px 18px;
  border-radius:999px;

  background:rgba(52,210,106,0.15);
  border:1px solid rgba(52,210,106,0.35);

  color:#b7ff73;
}

/* BURGER */
.burger{
  display:none;
}

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

.hero{
  position:relative;
  min-height:calc(100vh - 90px);

  padding:120px 24px 70px;

  overflow:hidden;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.30),
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.82),
      rgba(0,0,0,0.96)
    ),
    radial-gradient(
      circle at top right,
      rgba(52,210,106,0.15),
      transparent 35%
    ),
    url('images/img1.jpg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* effet lumière */
.hero::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  top:-250px;
  right:-200px;

  background:radial-gradient(circle, rgba(52,210,106,0.15), transparent 70%);
  filter:blur(40px);
  border-radius:50%;
}

/* container */
.container{
  position:relative;
  z-index:2;
  max-width:1320px;
  margin:auto;
}

/* =========================================
TOP TAG
========================================= */

.topbar{
  display:flex;
  justify-content:center;
  margin-bottom:60px;
}

.tag{
  display:inline-flex;
  padding:12px 18px;

  border-radius:100px;

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);

  font-size:0.9rem;
}

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

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:55px;
}

/* =========================================
TEXT LEFT
========================================= */

.eyebrow{
  color:var(--gold2);
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;

  margin-bottom:20px;
}

h1{
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:0.94;
  font-weight:900;

  margin-bottom:28px;

  background:linear-gradient(to bottom,#fff,#f5f5f5,#d6b36a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.subtitle{
  max-width:700px;
  color:rgba(255,255,255,0.8);
  line-height:1.8;
  margin-bottom:40px;
}

/* =========================================
BUTTON
========================================= */

.btn-main{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:18px 34px;
  border-radius:999px;

  background:linear-gradient(135deg,#179b47,#34d26a,#6dff9b);
  color:#fff;

  font-weight:800;

  transition:0.3s;
}

.btn-main:hover{
  transform:translateY(-4px);
}

/* =========================================
STATS
========================================= */

.stats{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

.stat h2{
  font-size:2.2rem;
  font-weight:900;
}

.stat p{
  color:rgba(255,255,255,0.7);
}

/* =========================================
GLASS CARD
========================================= */

.glass-card{
  padding:30px;
  border-radius:28px;

  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);

  backdrop-filter:blur(15px);
}

/* =========================================
INFO BLOCKS
========================================= */

.info{
  display:flex;
  gap:16px;
  padding:18px 0;

  border-bottom:1px solid rgba(255,255,255,0.08);
}

.info:last-child{
  border:none;
}

.icon{
  width:50px;
  height:50px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:14px;

  background:rgba(52,210,106,0.15);
}

/* =========================================
SMALL BUTTONS
========================================= */

.small-buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.small-btn{
  padding:10px 14px;
  border-radius:10px;

  background:linear-gradient(135deg,#179b47,#34d26a);
  color:#fff;

  font-size:0.8rem;
}

/* =========================================
DISTANCES
========================================= */

.distances{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.distance{
  padding:25px;
  border-radius:22px;

  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);

  text-align:center;
}

.distance .number{
  font-size:1.8rem;
  font-weight:900;
  margin-bottom:10px;
}

.distance p{
  color:rgba(255,255,255,0.7);
}

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

@media(max-width:768px){

  .hero{
    padding:110px 16px 50px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  h1{
    font-size:2.4rem;
  }

  .btn-main{
    width:100%;
  }

  .stats{
    justify-content:center;
  }

  .glass-card{
    padding:20px;
  }

  .distances{
    grid-template-columns:1fr;
  }
  @media (max-width: 850px){

  .burger{
    display:flex;
    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    border-radius:12px;

    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.12);

    position:relative;
    z-index:10000;
  }

  .burger span{
    position:absolute;
    width:18px;
    height:2px;
    background:#fff;
    border-radius:2px;
  }

  .burger span:nth-child(1){ top:14px; }
  .burger span:nth-child(2){ top:21px; }
  .burger span:nth-child(3){ top:28px; }

}
}

/* iPhone fix */
@supports (-webkit-touch-callout: none){
  .hero{
    min-height:100svh;
  }
  
}