/* Colors */
/* Sizes */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
* {
  font-family: "Montserrat", sans-serif;
}

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

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

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}

li {
  list-style: none;
}

body {
  background-color: #f1f1f1;
}

header {
  position: fixed;
  z-index: 100;
  top: 15px;
  width: 100%;
}
header .container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  padding: 0.5rem 0;
}
header .container .logo {
  max-height: 40px;
}
header .container .burger-icon {
  display: none;
}
header .container nav {
  width: 45%;
}
header .container a {
  text-transform: uppercase;
  color: #144069;
}
header::before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
}

.menu {
  font-weight: 600;
  display: flex;
  justify-content: space-around;
}

.banner {
  box-shadow: inset 0 -100px 180px -10px black;
}
.banner img {
  max-height: 460px;
  object-fit: cover;
  width: 100%;
  position: relative;
  z-index: -1;
}

.hero {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}
.hero__container {
  max-width: 950px;
  color: white;
  text-align: right;
  padding-right: 40px;
  position: absolute;
  bottom: 40px;
  right: 0;
}
.hero__container h1 {
  text-transform: uppercase;
}
.hero__container h2 {
  font-weight: 400;
}
.hero__container button {
  background-color: #C5A25D;
  color: #144069;
}

section {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  position: relative;
  padding-top: 6rem;
}
section.mentions-legales, section.cgv {
  flex-direction: column;
  padding: 6rem 1rem;
  color: #144069;
}
section.cgv {
  align-items: flex-start;
  text-align: left;
}
section.cgv p, section.cgv ul, section.cgv li {
  text-align: left;
  margin-left: 0.5rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}

button, input[type=submit] {
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 0.25rem;
  margin-top: 1rem;
  cursor: pointer;
}

figure {
  position: absolute;
  top: -120px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 60%;
  aspect-ratio: 134/41;
  background-image: url("../img/Rectangle 2.png");
  background-repeat: no-repeat;
  background-size: contain;
}
figure .palette {
  width: 30%;
}
figure h3 {
  width: 70%;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 1.5rem;
  color: #144069;
  white-space: nowrap;
}
figure h3 span {
  text-transform: none;
  font-size: 0.8em;
  color: white;
  font-weight: 400;
}
figure a {
  position: absolute;
  bottom: 0;
  background-color: #144069;
  padding: 0.8rem 1.5rem;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

.box-contact {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
}
.box-contact > a{
  width: 50%;
}
.box-contact > div, .box-contact .bloc-telephone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 1rem;
}
.box-contact h3 {
  font-size: 1rem;
}
.box-contact .bloc-telephone {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #144069;
  color: white;
  padding: 1rem 0;
}
.box-contact .bloc-telephone i {
  color: #C5A25D;
  margin-bottom: 0.5rem;
}
.box-contact .bloc-horaires {
  width: 50%;
  background-color: #C5A25D;
  color: white;
  padding: 1rem 2rem;
}
.box-contact .bloc-horaires i {
  color: #144069;
  margin-bottom: 0.5rem;
}
.box-contact .bloc-adresse {
  width: 100%;
  color: #144069;
  padding: 1rem 0;
}
.box-contact .bloc-adresse i {
  color: #C5A25D;
}
.box-contact .bloc-map {
  width: 100%;
  color: #144069;
  position: relative;
}
.box-contact .bloc-map i {
  position: absolute;
  bottom: 25%;
  left: 40%;
}
.box-contact .bloc-map img {
  width: 100%;
}

.home {
  align-items: center;
}

.box-info {
  width: 40%;
  height: fit-content;
  padding: 2rem;
  background-color: #144069;
  text-align: center;
  color: white;
  border-radius: 0.5rem;
  filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
}
.box-info h2 {
  text-transform: uppercase;
  line-height: 3rem;
}

.gold-section img {
  width: 100%;
  object-fit: cover;
  height: 250px;
}
.gold-section div {
  padding: 1.5rem;
  background-color: #C5A25D;
  text-align: center;
  color: #144069;
}
.gold-section .ytPlayer {
  width: 80vw;
  height: auto;
  max-width: 560px;
  aspect-ratio: 4 / 3;
}
.gold-section div h2 {
  text-transform: uppercase;
}
.gold-section .breakline {
  width: 40%;
  display: block;
  background-color: #144069;
  height: 0.1rem;
  margin: 2rem auto;
}

.bloc-services {
  width: 30%;
}
.bloc-services h3 {
  color: #C5A25D;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  text-transform: uppercase;
  border-radius: 7px;
  font-size: 1rem;
  position: relative;
  top: 0.7rem;
  width: fit-content;
  margin-left: 0.5rem;
}
.bloc-services p {
  background-color: #144069;
  color: white;
  padding: 1rem;
  border-radius: 7px;
}

footer {
  background-color: #144069;
  padding: 1rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  max-width: 950px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7490196078);
}
footer .container a {
  color: rgba(255, 255, 255, 0.7490196078);
}
footer .container li {
  line-height: 1.5rem;
}
footer .container strong {
  display: block;
  margin-bottom: 0.5rem;
}

/* Tableau */
.tarifs table {
  width: 100%;
  color: #144069;
}
.tarifs th {
  font-size: 1.2rem;
  font-weight: 400;
}
.tarifs th span {
  text-transform: uppercase;
  color: #C5A25D;
  font-weight: 600;
}
.tarifs td {
  width: 33%;
  text-align: center;
  padding: 12px 0;
}
.tarifs td.subheading {
  border-top: 1px solid #144069;
  font-weight: 600;
}
.tarifs td.material-symbols-rounded {
  display: table-cell;
}
.tarifs button {
  background-color: #144069;
  color: white;
}

/* Contact */
.contact h2, .contact p {
  width: 100%;
  text-align: left;
  color: #144069;
}
.contact form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact form label {
  margin-left: 0.5rem;
  margin-top: 1rem;
}
.contact form input {
  height: 3rem;
  border: none;
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  padding: 0.5rem;
}
.contact form input[type=submit] {
  background-color: #144069;
  color: white;
  width: 40%;
  margin: 1rem auto;
  padding: 0;
}
.contact form input:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 4px #144069;
}
.contact form textarea {
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.25);
  border: none;
  padding: 0.5rem;
}
.contact form textarea:focus-visible {
  outline: none;
  box-shadow: inset 0px 0px 4px #144069;
}

@media (max-width: 890px) {
  .mobile-hide {
    display: none;
  }
  header .container .burger-icon {
    display: block;
  }
  header .container{
    padding: 0.5rem 0.8rem;
  }
  .menu {
    position: absolute;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: flex-start;
    left: 0;
    top: 61px;
    align-items: center;
  }
  .menu li {
    width: 100%;
    text-align: center;
  }
  .menu li a{
    display: block;
    width: 100%;
    font-size: 22px;
    padding: 2rem 0;
    margin-top: 2px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
  }
  .menu li a:active{
    background-color: #dcdcdcc0;
  }
  .hero__container {
    text-align: left;
    left: 0;
    padding-left: 40px;
    padding-right: unset;
  }
  .hero__container h1 {
    font-size: 8vw;
  }
  .hero__container h2 {
    font-size: 5vw;
  }
  .hero__container button {
    display: none;
  }
  .home {
    padding: 0;
  }
  .box-contact {
    width: 100%;
  }
  .box-info {
    width: 90%;
  }
  figure {
    position: relative;
    width: 90%;
    top: -30px;
  }
  figure .palette {
    width: 30%;
  }
  figure h3 {
    font-size: 5vw;
  }
  figure a {
    padding: 0.8rem;
    font-size: 3vw;
  }
  .contact {
    width: 90%;
  }
  .services {
    flex-direction: column;
    width: 90%;
    padding: 0;
  }
  .services .bloc-services {
    width: auto;
  }
  footer .container {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
