@font-face {
  font-family: "Comfortaa";
  src: url("/assets/css/fonts/Comfortaa.ttf");
}
html, body {
  width: 100%;
  height: 100%;
  font-family: "Comfortaa", cursive, sans-serif;
  color: white;
  overflow-x: hidden;
  max-height: 100dvh;
}
@media screen and (max-width: 900px) {
  html, body {
    margin: 0;
  }
}

html {
  background-color: black;
  background-image: url("../img/background.png");
  background-size: cover;
  overflow: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
}

img {
  max-width: 100%;
  object-fit: contain;
}

ul li {
  margin-bottom: 1.5rem;
  font-size: 1vw;
}
@media screen and (max-width: 900px) {
  ul li {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
  }
}

a {
  text-decoration: none;
}

#divMenu {
  position: absolute;
  width: 40%;
  height: 10%;
  font-size: x-large;
  top: 0.5vh;
  right: 0;
}
@media screen and (max-width: 900px) {
  #divMenu {
    display: none;
  }
}

#numeriqueTitle {
  font-size: 6vw;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 900px) {
  #numeriqueTitle {
    font-size: 10vw;
  }
}

#numeriquePara {
  font-size: 2.3vw;
}
@media screen and (max-width: 900px) {
  #numeriquePara {
    font-size: 5vw;
  }
}

#buttonPara {
  align-items: center;
  height: 10%;
}
@media screen and (max-width: 900px) {
  #buttonPara {
    align-items: center;
    height: 10%;
  }
}

@media screen and (max-width: 900px) {
  #specialBitmoji .bitmojiIndex img {
    max-width: 100%;
  }
}

.menuItem {
  display: inline;
}

.menuItem a {
  color: white;
  padding: 1vw;
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.menuItem a:hover {
  transform: translateY(-2px);
  color: #a66bff;
}

.burger {
  display: none;
}
@media screen and (max-width: 900px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    z-index: 1001;
  }
  .burger span {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
  }
  .burger.hidden {
    display: none !important;
  }
}

.mobile-menu {
  display: none;
}
@media screen and (max-width: 900px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 4rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-family: "Comfortaa", sans-serif;
    overflow-y: auto;
  }
  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    text-transform: uppercase;
  }
  .mobile-menu .separator {
    border: none;
    border-top: 1px solid #a66bff;
    margin: 2rem 0 1rem 0;
    opacity: 0.3;
  }
  .mobile-menu .legal-link {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: none;
  }
  .mobile-menu .legal-link:hover {
    color: #ffffff;
  }
  .mobile-menu.active {
    transform: translateX(0);
  }
  .mobile-menu .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1002;
  }
  .mobile-menu .mobile-menu-footer {
    max-height: 3rem;
    padding: 0.5 rem 0;
    text-align: center;
    overflow: hidden;
  }
  .mobile-menu .copyright-mobile {
    font-size: 0.75rem;
    color: #777;
    opacity: 0.6;
  }
}

.logoTop {
  width: 10vw;
  height: 15vh;
  position: absolute;
  left: 0.5vw;
  top: 0.5vh;
}
.logoTop img {
  max-width: 100%;
  max-height: 100%;
}

.left {
  position: absolute;
  width: 50%;
  left: 5%;
  top: 10%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .left {
    width: 95%;
    left: 2.5%;
    top: 10%;
    text-align: center;
    max-height: 30%;
  }
}

.right {
  position: absolute;
  max-width: 35%;
  right: 0;
  top: 10%;
  max-height: 100%;
}
@media screen and (max-width: 900px) {
  .right {
    position: absolute;
    max-width: 95%;
    right: 0;
    max-height: 5%;
    top: 68%;
  }
}
@media screen and (max-width: 900px) {
  .right#rightSpecial {
    top: 50%;
  }
  .right#rightSpecial img {
    max-width: 55%;
  }
}

.bitmojiIndex img {
  max-height: 100%;
  max-width: 70%;
}
@media screen and (max-width: 900px) {
  .bitmojiIndex {
    text-align: center;
  }
  .bitmojiIndex img {
    max-height: 100%;
    max-width: 40%;
    object-fit: contain;
  }
}

.button {
  width: 25%;
  border: none;
  font-size: 1.7vw;
  height: 40%;
  background-image: linear-gradient(to right, #ff5757, #8c52ff);
  color: white;
  padding: 10px 10px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 107, 255, 0.4);
}
@media screen and (max-width: 900px) {
  .button {
    width: 40%;
    font-size: 4vw;
    height: 50%;
  }
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 107, 255, 0.4);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10vw, 1fr));
  gap: 5vw 7vh;
  justify-items: center;
  padding: 25px 0;
}
@media screen and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
    gap: 10vw 3vh;
    justify-items: center;
    padding: 25px 0;
  }
}

.diamond {
  width: 8vw;
  height: 8vw;
  background: linear-gradient(45deg, #ff6b81, #a66bff);
  transform: rotate(45deg);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: default;
}
.diamond span {
  transform: rotate(-45deg);
  color: white;
  font-family: "Comfortaa", cursive, sans-serif;
  font-size: 1.2vw;
  text-align: center;
  padding: 10px;
  display: block;
}
.diamond:hover {
  transform: rotate(45deg) scale(1.25);
}
@media screen and (max-width: 900px) {
  .diamond {
    width: 17vw;
    height: 17vw;
  }
  .diamond span {
    font-size: 2.4vw;
    padding: 10px;
  }
  .diamond:hover {
    transform: rotate(45deg) scale(1.05);
  }
}

@media screen and (min-width: 900px) {
  .onlySmartphone {
    display: none;
  }
}

.promo-badge {
  position: absolute;
  top: 40rem;
  left: 1rem;
  background: #ffd166;
  color: #1e1b34;
  font-family: "Comfortaa", cursive;
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s;
  cursor: default;
}
@media (max-width: 900px) {
  .promo-badge {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
    top: 22.5rem;
    right: 0.5rem;
    max-width: 16rem;
    margin: auto;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Formulaire contact */
form {
  max-width: 70%;
  margin: 2rem auto;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  font-family: "Comfortaa", cursive, sans-serif;
  color: #fff;
}
form label {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
form textarea {
  height: 10rem;
}
@media screen and (max-width: 900px) {
  form textarea {
    height: 4rem;
  }
}
form .input, form textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1rem;
  font-family: "Comfortaa", cursive, sans-serif;
  color: #333;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
form .input:focus, form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.4);
}
form button#confirmButton {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #8a2be2, #6a0dad);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Comfortaa", cursive, sans-serif;
}
form button#confirmButton:hover {
  background: linear-gradient(135deg, #6a0dad, #4b0082);
}

.footer {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer a {
  color: #a66bff;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  .footer {
    display: none;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  color: white;
  padding: 1rem 2rem;
  font-family: "Comfortaa", sans-serif;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(166, 107, 255, 0.6);
}

.cookie-buttons button {
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#accept-cookies {
  background-color: #a66bff;
  color: white;
}

#accept-cookies:hover {
  background-color: #8a52e6;
}

#decline-cookies {
  background-color: #555;
  color: white;
}

#decline-cookies:hover {
  background-color: #777;
}

button#manageCookiesBtn,
button#manageCookiesBtnMobile {
  background: none;
  border: none;
  color: #a66bff;
  cursor: pointer;
  font-family: "Comfortaa", sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  padding: 0;
  margin-top: 0.5rem;
}
button#manageCookiesBtn:hover,
button#manageCookiesBtnMobile:hover {
  color: #fff;
}

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