
/* ---------------- RESET ---------------- */
*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;width:100%;}

/* ---------------- LAYOUT ---------------- */
.wrapper{
  height:100vh;
  width:100%;
  display:flex;
  overflow:hidden;
}

/* ---------------- LEFT ---------------- */
.left{
  flex:1;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  text-align:left;
  padding:80px 6vw;
  background:url("/bg-nola.jpg") center/cover no-repeat;
}

.left::before{
  content:""; position:absolute; inset:0;
  pointer-events:none;
}

.left *{ position:relative; z-index:2; }

/* LOGO */
.left img{
  width:200px;
  margin-bottom:25px;
}

/* BRAND NAME */
.left h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(46px,5vw,72px);
  color:#fff;
  margin-bottom:25px;
}

/* SLOGAN */
.tagline{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(22px,3vw,32px);
  color:white;
  max-width:380px;
  margin-bottom:40px;
}

/* BUTTON PLANITY */
.planity-btn{
  display:inline-block;
  background:rgba(255,255,255,0.85);
  color:#000;
  padding:14px 36px;
  border-radius:999px;
  font-family:'Outfit',sans-serif;
  text-decoration:none;
  font-weight:600;
 
  backdrop-filter:blur(4px);
}
.planity-btn br{
  display: none;
}
.planity-btn:hover{
   background:rgba(255,255,255,1);
}




/* ---------------- RIGHT ---------------- */
.right{
  flex:1;
  background:#EB5A2E;
  color:white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:60px 40px;
}

/* OPENING TITLE */
.right .opening{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(32px,4vw,54px);
  margin-bottom:14px;
}

/* COUNTDOWN */
#countdown{
  font-family:'Syne',sans-serif;
  font-weight:700;
  font-size:clamp(32px,6vw,60px);
  margin-bottom:40px;
}

/* RECRUTE TITLE */
.right h2{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(28px,4vw,42px);
  margin-bottom:20px;
}

/* CTA BUTTON RECRUTEMENT */
.recruit-btn{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  color:#EB5A2E;
  padding:14px 30px;
  border-radius:999px;
  font-weight:600;
  font-family:'Outfit',sans-serif;
  text-decoration:none;
  transition:.3s;
}
.recruit-btn:hover{transform:scale(1.05);}
.recruit-btn img{
  height:20px;
}

@media(max-width:900px){
  .wrapper{flex-direction:column;}
  .left,.right{padding:80px 30px;}
}


/* Bouton recrutement (CTAs plus visibles) */
.recruit-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  color:#EB5A2E;
  padding:16px 36px;
  border-radius:999px;
  font-weight:600;
  font-family:'Outfit',sans-serif;
  text-decoration:none;
  font-size:17px;
  border:1px solid rgba(255,255,255,0.2);
  transition:all .25s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.recruit-btn svg,
.recruit-btn img{
  height:20px;
  width:auto;
  display:block;
  opacity:0.85;
  transition:.25s;
}

.recruit-btn:hover{
  transform:scale(1.05);
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.recruit-btn:hover svg,
.recruit-btn:hover img{
  opacity:1;
}

/* Ajout d'un état focus mobile accessible */
.recruit-btn:focus{
  outline:3px solid rgba(255,255,255,0.6);
  outline-offset:3px;
}


@media(max-width:900px){
  html, body {
    height: 100%;
    background: #EB5A2E;
  }

  .planity-btn {
    font-size: 12px;
    padding: 5px 20px;
    background: rgb(255 255 255 / 57%);
  
    backdrop-filter: none;
  }
  .planity-btn br{
    display: block;
  }
   .planity-btn span{
    font-size: 11px
  }
  .left h1{
    margin-bottom: 15px;
  }
  .tagline{
    margin-bottom: 20px;
  }
  .wrapper {
     height: 100vh;
    height: 100dvh; /* iOS / modern */
    display: flex;
    flex-direction: column; /* Important */
    overflow: hidden;
  }
  .left{
     flex: none;               
    height: calc(100% - 320px);
    padding:10px 30px 70px;
   
  }
  .right{
      flex: none;               
    padding: 40px 30px;
    height: 320px;
  }
}



