@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --light-gray: #e8e7e7;
  --dark-gray: #b3b3b3;
  --darker-gray: #949493;
  --button-hover: #ea615d;
  --button: #f2403a;
}

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

body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

h1 {
  font-family: 'Winky Rough', sans-serif; 
  font-size: 4rem;
}

h4 {
  text-transform: uppercase;
  padding-bottom: 20px;
}

a {
  color: var(--dark-gray);
  text-decoration: none;
}

input {
  border: none;
  font-size: 1rem;
  padding: 5px 10px 5px 0;
  margin-left: 20px;
  border-bottom: 1px solid var(--dark-gray);
  outline: none;
}

.search-mobile {
  display: none;
}

::placeholder {
  color: var(--light-gray);
}

.btn {
  text-transform: uppercase;
  font-weight: bold;
  background: var(--button);
  color: #fff;
  padding: 10px 20px;
  margin: 10px 20px;
  border-radius: 3px;
}

.btn:hover {
  background-color: var(--button-hover);
}

.logo {
  width: 22px;
}

.dots {
  display: flex;
}

.dot {
  width: 4px;
  height: 4px;
  background: var(--dark-gray);
}

.dot:nth-child(2) {
  margin: 0 10px;
}

.container {
/*   max-width: 1200px;
  margin: auto;
  overflow: hidden; */
  padding: 0 30px;
}

.navbar .container {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

.navbar ul {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar li {
  padding: 0 20px;
}

.navbar ul li a:hover {
  color: #000;
}

.section-a {
  height: 700px;
  max-width: 100%;
  position: relative;
  margin: auto;
  border-bottom: 1px solid var(--light-gray);
}

.section-a .container,
.section-c .container,
.section-d .container {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  align-items: center;
  justify-content: center;
}

.section-a .container .mobile {
  display: none;
}

.section-a .container .full {
  position: absolute;
  height: 100%;
  top: 0;
  left: 60%;
  animation: anime 3s ease;
}

@keyframes anime {
  0% {
    left: 50%;
    opacity: 0;
  }
  100% {
    left: 60%;
    opacity: 1;
  }
}

.section-b {
  height: 100%;
}

.section-b .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}

.section-b .container p {
  line-height: 1.4;
  margin: 30px 0;
}

.section-b .container a {
  display: flex;
  align-items: center;
  color: var(--button);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: bold;
}

.section-b .container a .line {
  width: 40px;
  height: 2px;
  background: var(--button);
  margin-right: 20px;
  transition: width 0.3s ease-in-out;
}

.section-b .container a:hover {
  color: var(--button-hover);
}

.section-b .container a:hover .line {
  width: 60px;
  background: var(--button-hover);
}

.section-a p,
.section-c p,
.section-d p {
  color: var(--dark-gray);
  padding-left: 20px;
  margin-top: 60px;
  margin-bottom: 40px;
  border-left: 2px solid var(--light-gray);
}

.section-a,
.section-b,
.section-c {
  margin-bottom: 50px;
}

.section-c .container img {
  width: 100%;
}

.section-d {
  background: url("https://res.cloudinary.com/day8wgyhj/image/upload/v1745016287/image_banner_du_mur_zcy9uz.jpg")
    no-repeat center/cover;
  height: 700px;
  position: relative;
  margin-top: 10px;
}

.section-d .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
}

.section-d p {
  color: #fff;
  border-left: 2px solid #fff;
}

.section-d h1 {
  color: #fff;
}

#table-container {
  overflow-x: auto;  /* Active le scroll horizontal si besoin */
  max-width: 100%;   /* Pour que ça ne dépasse pas du parent */
}

#contact {
    width: 100%;
    background-color: #f9f9f9;
    padding: 3rem 1rem;
  }

/*   .contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  } */

  .contact-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-info a {
    color: #0077cc;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .map-wrapper {
    margin-top: 2rem;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
  }

/* MEDIA QUERIES  */

@media (max-width: 1440px) {
  .section-a .container img {
    right: 0;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  h1 {
    font-size: 3rem;
  }

  .navbar .container {
    margin: 10px auto;
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  
  .navbar .container {
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    align-items: center;
    justify-content: center;
  }

  .search-full {
    display: none;
  }

  .search-mobile {
    display: block;
  }

  .search-mobile img {
    width: 20px;
  }

  .section-a p,
  .section-c p {
    color: #000;
  }

  .section-a .container .full, .section-b .container .full {
    display: none;
  }

  .section-a .container .mobile {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    animation: anime 1s ease;
    z-index: -1;
  }

  @keyframes anime {
    0% {
      bottom: -20px;
      opacity: 0;
    }
    100% {
      bottom: 0;
      opacity: 1;
    }
  }

  .section-a .container {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .section-b .container,
  .section-c .container {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .section-d .container {
    display: flex;
}
}


/* @import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic); */

/* Override UGG site */
#main {width: 100%; padding:0;}
.content-asset p {margin:0 auto;}
.breadcrumb {display:none;}

/* Helpers */
/**************************/
.margin-top-10 {padding-top:10px;}
.horaires-escalade h4, .horaires-escalade h3 {
  padding-top:15px;
  text-align: center;}
.margin-bot-10 {padding-bottom:10px;}

/* Typography */
/**************************/
/* font-family: 'Winky Rough', sans-serif; font-family: "Roboto", sans-serif; */
#parallax-world-of-ugg h1 {
/*   font-family:'Oswald', sans-serif;  */
  font-family: 'Winky Rough', sans-serif;
  font-size:24px; 
  font-weight:400; 
  text-transform: uppercase; 
  color:black; 
  padding:0; 
  margin:0;}
#parallax-world-of-ugg h2 {
/*   font-family:'Oswald', sans-serif;  */
  font-family: 'Winky Rough', sans-serif;
  font-size:70px; 
  letter-spacing:10px; 
  text-align:center; 
  color:white; 
  font-weight:400; 
  text-transform:uppercase; 
  z-index:10; 
  opacity:.9;}
#parallax-world-of-ugg .title h3 {
/*   font-family:'Oswald', sans-serif;  */
  font-size:14px; 
  line-height:0; 
  font-weight:400; 
  letter-spacing:8px; 
  text-transform: uppercase; 
  color:black;}
#parallax-world-of-ugg p {
/*   font-family:'Source Sans Pro', sans-serif;  */
  font-weight:400;
  font-size:14px;
  line-height:24px;
}
.first-character {
  font-weight:400;
  float: left;
  font-size: 84px;
  line-height: 64px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px; 
  font-family: 'Winky Rough', sans-serif;
/*   font-family: 'Source Sans Pro', sans-serif; */
}

.sc {color: #3b8595;}
.ny {color: #3d3c3a;}
.atw {color: #c48660;}

/* Section - Title */
/**************************/
#parallax-world-of-ugg .title {background: white; padding: 60px; margin:0 auto; text-align:center;}
#parallax-world-of-ugg .title h1 {font-size:35px; letter-spacing:8px;}

/* Section - Block */
/**************************/
#parallax-world-of-ugg .block {background: white; padding: 60px; width:820px; margin:0 auto; text-align:justify;}
#parallax-world-of-ugg .block-gray {background: #f2f2f2;padding: 60px;}
#parallax-world-of-ugg .section-overlay-mask {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: black; opacity: 0.70;}

/* Section - Parallax */
/**************************/
#parallax-world-of-ugg .parallax-one {padding-top: 200px; padding-bottom: 200px; overflow: hidden; position: relative; width: 100%; background-image: url(https://res.cloudinary.com/day8wgyhj/image/upload/v1745031227/paysage_avec_au_premier_plan_des_enfant_qui_font_une_Via_ferrata_k92bbm.jpg); background-attachment: fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; background-repeat: no-repeat; background-position: top center;}
#parallax-world-of-ugg .parallax-two {padding-top: 200px; padding-bottom: 200px; overflow: hidden; position: relative; width: 100%; background-image: url(https://res.cloudinary.com/day8wgyhj/image/upload/v1745031226/groupe_d_enfant_qui_grimpe_en_ext%C3%A9rieur_encadr%C3%A9_par_plusieurs_moniteurs_edp56a.jpg); background-attachment: fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; background-repeat: no-repeat; background-position: center center;}
#parallax-world-of-ugg .parallax-three {padding-top: 200px; padding-bottom: 200px; overflow: hidden; position: relative; width: 100%; background-image: url(https://res.cloudinary.com/day8wgyhj/image/upload/v1745031226/deux_enfants_grimpeurs_qui_osent_l_aventure_ils_sont_au_sommet_face_%C3%A0_la_vue_jxvl4m.jpg); background-attachment: fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; background-repeat: no-repeat; background-position: center center;}

/* Extras */
/**************************/
#parallax-world-of-ugg .line-break {border-bottom:1px solid black; width: 150px; margin:0 auto;}

/* Media Queries */
/**************************/
@media screen and (max-width: 959px) and (min-width: 768px) {
  #parallax-world-of-ugg .block {padding: 40px; width:620px;}
}
@media screen and (max-width: 767px) {
  #parallax-world-of-ugg .block {padding: 30px; width:420px;}
  #parallax-world-of-ugg h2 {font-size:30px;}
  #parallax-world-of-ugg .block {padding: 30px;}
  #parallax-world-of-ugg .parallax-one, #parallax-world-of-ugg .parallax-two, #parallax-world-of-ugg .parallax-three {padding-top:100px; padding-bottom:100px;}
}
@media screen and (max-width: 479px) {
  #parallax-world-of-ugg .block {padding: 30px 15px; width:290px;}
}
