/* 
        Primary colors: 
        Secondary colors: 
        Typography: 
*/

/* General CSS */
@font-face {
  font-family: Lato-Regular;
  src: url(../fonts/Lato-Regular.ttf);
}
@font-face {
  font-family: OpenSans-Regular;
  src: url(../fonts/OpenSans-Regular.ttf);
}

:root {
  --primary: #28abfc;
  --white: #fff;
  --black: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-family: "OpenSans-Regular", sans-serif;
  font-size: 17px;
  font-weight: 100;
}

body {
}

a,
i {
  text-decoration: none;
  transition: color 1s ease, background-color 1s ease;
}

p {
}

h1,
h2,
h3,
h4,
h5,
h6 {
}

ul {
  list-style: none;
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000070;
  z-index: 99;
}

/* Buttons */
.btn-primary {
  display: block;
  width: 100%;
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  padding: 5px 20px;
  border-radius: 2px;
  cursor: pointer;
}
.btn-primary:hover {
  color: var(--primary);
  background-color: #28abfc00;
  border-color: var(--primary);
}
.btn-primary:hover > i {
  color: var(--primary);
}
.btn.cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-btn i {
  margin-right: 5px;
  font-size: 14px;
}

/* header */
header {
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  z-index: 9999;
}
.navbar {
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo a {
    width: 120px;
    height: 50px;
}
.logo img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hamburger bouton (toujours visible) */
.menu-icon {
  background: none;
  color: var(--primary);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  width: 25px;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
/* .fa-minus.mi_1 {
  position: absolute;
  top: 0;
  right: 0;
}
.fa-minus.mi_2 {
  position: absolute;
  top: 9px;
  right: 0;
}
.fa-minus.mi_3 {
  position: absolute;
  top: 18px;
  right: 0;
} */

/* Panneau latéral (menu) */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%; /* modifie si tu veux plus large */
  max-width: 100%;
  background: var(--white);
  transform: translateX(100%); /* caché à droite */
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
}
.side-menu.open {
  transform: translateX(0);
}

/* Close button */
.close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 33px;
  font-weight: 100;
  align-self: flex-end;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.close-btn:hover {
  transform: scale(1.2);
  color: var(--primary);
}
#sideMenu nav {
  display: flex;
  justify-content: center;
  text-align: center;
  height: 60%;
}

/* Menu items */
.side-menu nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu nav a {
  display: block;
  font-size: 24px;
  text-transform: capitalize;
  padding: 0;
  color: var(--primary);
}
.side-menu nav a:hover {
  color: var(--secondary);
}
.a_link {
  font-size: 18px;
  display: block;
  padding: 0 18px;
  font-family: "Lato-Regular", sans-serif;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px black, 0 2px 2px #333;
}
.a_link:hover {
  color: var(--primary);
}
/* Footer small in the menu */
.side-footer {
  display: grid;
  grid-gap: 5px;
}
.side-footer,
.side-footer a,
.side-footer strong {
  font-size: 18px;
  color: #2c2c2c;
  margin-top: auto;
}
.side-footer a:hover {
  color: #9453ff;
}

/* Bloquer le scroll quand menu ouvert */
.no-scroll {
  overflow: hidden;
}

/* Menu Responsive */
#menuToggle {
  display: none;
}
#menuToggle i {
  font-size: 24px;
}
.close-btn i {
  color: var(--primary);
  font-size: 24px;
}
.desktop-menu ul {
  display: flex;
  grid-gap: 20px;
}

/* Content */
#dd_content,
#dd_content_contact {
  width: 100%;
  height: 100vh;
  position: relative;
}
.dd_container {
  width: 100%;
  height: 100%;
  background: url(../img/bg/Home-bg-1.webp) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
.dd_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.dd_box {
  width: 550px;
  height: auto;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
.form_box {
  display: grid;
  margin: 20px 0;
  /* box-shadow: 0px 2px 6px 0px #2b2b2b; */
  /* background-color: rgb(10 10 10 / 0%); */
  /* border-top: 1px solid #666; */
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.dd_box h1 {
  display: grid;
  justify-content: center;
  grid-gap: 10px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
}
.form_box h4 {
  text-align: center;
}
.dd_box h1 span {
  font-size: 25px;
  font-weight: 700;
}
.title_md {
  font-size: 40px !important;
  color: var(--primary);
}
.form_box p {
  font-size: 12px;
  text-align: center;
}
.form-control,
.form_textar {
  display: flex;
  width: 100%;
  padding: 7px 15px;
  font-size: 15px;
  border: none;
  background-color: #ffffff17;
  box-shadow: 0px 0px 2px 0px #ffffffb0;
}
.form-control::placeholder,
.form_textar::placeholder {
  color: #ffffffb0;
  text-shadow: 0 0 15px var(--black);
}
.footer ul li a i {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 1s ease, color 1s ease;
}
.fb_link i {
  color: #213cd3;
}
.fb_link i:hover {
  color: var(--white);
  background-color: #213cd3;
}
.tkt_link i {
  color: #ff9800;
}
.tkt_link i:hover {
  color: var(--white);
  background-color: #ff9800;
}
.insta_link i {
  color: #ff0707;
}
.insta_link i:hover {
  color: var(--white);
  background-color: #ff0707;
}
/* Contact  */
.dd_container_contact {
  width: 100%;
  height: 100%;
  background: url(../img/bg/contact-bg-1.webp) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
.dd_box_contact {
  width: 800px;
}
.dd_box_contact p {
  margin-top: 20px;
  text-align: center;
}

/* Form contact */

.form_row {
  display: flex;
  grid-gap: 5px;
}

.form_col {
  display: grid;
  width: 100%;
}

.form_col label {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 3px;
}
#form-message {
  text-align: center;
  color: var(--white);
}
.form_cb {
  display: grid;
  grid-gap: 10px;
}
.form_cb_home {
  margin: 20px 0 5px 0;
}
.form_textar {
  height: 120px;
}

/* Page */
#pp_content {
  margin-top: 150px;
}
.pp_container_page {
  width: 1100px;
  margin: 0 auto;
}
.pp_box_contact h1 span {
  color: var(--primary);
  font-size: 35px;
  text-align: center;
  display: block;
  margin-bottom: 50px;
}
.page_content p {
  color: var(--black);
  margin-bottom: 10px;
}
.page_content a {
  color: var(--primary);
}
.page_content p strong {
  color: var(--black);
  font-weight: 600;
}
.page_content h2 {
  color: var(--primary);
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.page_content ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 30px;
}
.page_content ul li {
  color: var(--black);
}
.pp_box_contact .footer p {
  color: #000;
}
.pp_box_contact .footer {
  margin-top: 100px;
  margin-bottom: 30px;
}
.pagec .a_link {
  color: var(--primary);
  text-shadow: 0px 0px 0px black, 0 0px 0px #333;
}
.date,
.date strong {
  font-size: 13px;
}
.pagec .footer_link li a {
  color: var(--black);
}

.item_hidden {
  display: none;
}
/* Footer */
.footer {
  margin-top: 30px;
}
.footer ul {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
  margin-bottom: 10px;
}
.footer p {
  font-size: 14px;
  text-align: center;
}
.footer_link li a {
  font-size: 12px;
}
.footer_link li a:hover {
  color: var(--primary);
}
.br_hide {
  display: none;
}

/*==================================================
			              Media Queries         
==================================================*/

/* Large Devices (Desktops & Laptops) */

@media (min-width: 1200px) {
}

/* Medium Devices (Landscape Tablets & Medium Desktops) */

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar {
    width: 900px;
  }
  .pp_container_page {
    width: 900px;
  }
}

/* Small Devices (Portrait Tablets & Small Desktops) */

@media (min-width: 768px) and (max-width: 991px) {
  .navbar {
    width: 700px;
  }
  .pp_container_page {
    width: 700px;
  }
  .dd_box_contact {
    width: 700px;
  }
  #dd_content {
    height: 110vh;
  }
  .pp_box_contact h1 span {
    font-size: 30px;
  }
  .page_content h2 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .page_content ul {
    margin-bottom: 15px;
  }
}

/* Extra Small Devices (Landscape Phones & Portrait Tablets) */

@media (max-width: 767px) {
  #dd_content {
    height: 110vh;
  }
  #dd_content_contact {
    height: 130vh;
  }
  .desktop-menu {
    display: none;
  }
  #menuToggle {
    display: block;
  }
  #menuToggle i {
    font-size: 24px;
  }
  .pagec #menuToggle i {
    color: var(--primary);
  }
  .logo img {
    width: 90px;
    height: 36px;
  }
  .dd_container {
    background: url(../img/bg/Home-bg-1-mobile.webp) no-repeat center center
      fixed;
  }
  .dd_container_contact {
    background: url(../img/bg/contact-bg-1-mobile.webp) no-repeat center center
      fixed;
  }

  .navbar {
    width: 90%;
    height: 70px;
  }
  header {
    width: 100%;
    height: 70px;
  }
  .pp_container_page {
    width: 95%;
  }
  .dd_box_contact {
    width: 95%;
  }
  .dd_box {
    width: 100%;
  }
  .dd_box h1 span {
    font-size: 17px;
  }
  .title_md {
    font-size: 26px !important;
  }
  .dd_box h1 {
    grid-gap: 5px;
    margin-bottom: 20px;
  }
  .form_box h4,
  .dd_box_contact p {
    font-size: 15px;
  }
  .dd_box {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
  }
  .dd_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
  }
  .br_hide {
    display: block;
  }
  .form_row {
    display: grid;
    grid-gap: 10px;
  }
  .footer_link {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .pp_box_contact h1 span {
    font-size: 23px;
  }
  .page_content h2 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .page_content ul {
    margin-bottom: 15px;
  }
  .form_textar {
    height: 80px;
  }
  * {
    font-size: 16px;
  }
  #pp_content {
    margin-top: 100px;
  }
}

/* Extra Small Devices (Portrait Phones & Smaller devices) */

@media (max-width: 480px) {
}

/* Extra Small Devices (Portrait Phones & Smaller devices) */

@media (max-width: 320px) {
}
