@charset "UTF-8";
/* ----------------------------------
   Variables
---------------------------------- */
/* 1. Importer les polices (option A : via SCSS) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Poppins:wght@600;700&display=swap");
/* ----------------------------------
   Mixins & Helpers (exemple)
---------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  background-color: #111111;
  color: #ffffff;
}

a {
  color: #c839aa;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: bold;
  margin-top: 0;
}

/* ----------------------------------
   Section : .blck-slider
   Inspiré de la vidéo (wave + text animations)
---------------------------------- */
.blck-slider {
  position: relative;
  overflow: hidden;
}
.blck-slider__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8c291;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.blck-slider__container {
  position: relative;
  padding: 4rem 2rem;
  z-index: 1;
}
.blck-slider__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  min-height: 400px;
  animation: fadeInUp 1s ease both;
}
.blck-slider__slide .blck-slider__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.blck-slider__slide .blck-slider__desc {
  font-size: 1.1rem;
  max-width: 600px;
  text-align: center;
  line-height: 1.4;
}

/* Exemple d’animation fadeInUp */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------
   Section : .blck-section
---------------------------------- */
.blck-section {
  padding: 4rem 2rem;
  background: #ffffff;
  color: #f8c291;
  text-align: center;
}
.blck-section__title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.blck-section .blck-container {
  max-width: 1000px;
  margin: 0 auto;
}
.blck-section .blck-btn {
  display: inline-block;
  background-color: #c839aa;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
  font-weight: bold;
}
.blck-section .blck-btn:hover {
  background-color: #a12d89;
}

/* ----------------------------------
   Section : .blck-hours-banner
---------------------------------- */
.blck-hours-banner {
  background: #f8c291;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
}
.blck-hours-banner #hoursInfo {
  font-size: 1rem;
}

/* ----------------------------------
   Responsiveness
---------------------------------- */
@media (max-width: 768px) {
  .blck-slider__slide {
    min-height: 300px;
  }
  .blck-slider__slide .blck-slider__title {
    font-size: 1.5rem;
  }
  .blck-slider__slide .blck-slider__desc {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .blck-section {
    padding: 2rem 1rem;
  }
  .blck-section__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .blck-slider__slide {
    min-height: 400px;
  }
  .blck-slider__slide .blck-slider__title {
    font-size: 2rem;
  }
  .blck-slider__slide .blck-slider__desc {
    font-size: 1.2rem;
    padding: 0 2rem;
  }
  .blck-section {
    padding: 3rem 2rem;
  }
  .blck-section__title {
    font-size: 2rem;
  }
}
/* --------------------------------------------------
   3. Reset & Base
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

a {
  color: #f8c291;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   4. Animations de fade-in
-------------------------------------------------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------
   5. Header (Navigation sticky)
-------------------------------------------------- */
.blck-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  transition: padding 0.3s ease, background 0.3s ease;
}
.blck-header__logo img {
  max-height: 70px;
  transition: max-height 0.3s ease;
}
.blck-header__nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blck-header__nav ul li a {
  font-weight: bold;
  transition: color 0.2s ease;
}
.blck-header__nav ul li a:hover {
  color: #fef7f1;
}
.blck-header.scrolled {
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.7);
}
.blck-header.scrolled__logo img {
  max-height: 40px;
}
.blck-header.header-hidden {
  transform: translateY(-20px);
  pointer-events: none;
}

/* --------------------------------------------------
   6. Hero
-------------------------------------------------- */
.blck-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.blck-hero__content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}
.blck-hero__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.blck-hero__content h1 span {
  color: #f8c291;
}
.blck-hero__content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.blck-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  background: transparent;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}

/* --------------------------------------------------
   7. Bouton
-------------------------------------------------- */
.blck-btn {
  display: inline-block;
  background: #f8c291;
  color: #000000;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}
.blck-btn:hover {
  background: #f5a761;
  transform: translateY(-2px);
}

/* --------------------------------------------------
   8. Services
   -------------------------------------------------- */
.blck-services {
  background: #0d0d0d;
  padding: 4rem 2rem;
  text-align: center;
}
.blck-services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f8c291;
}
.blck-services__cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.blck-services .blck-service-card {
  background: #000000;
  padding: 2rem;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 0.1rem dotted #f8c291;
}
.blck-services .blck-service-card img {
  max-width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.blck-services .blck-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.blck-services .blck-service-card p {
  font-size: 0.95rem;
  color: white;
}
.blck-services .blck-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------
   9. Portfolio
   -------------------------------------------------- */
.blck-portfolio {
  background: #000000;
  padding: 4rem 12rem;
  text-align: center;
  border-top: 1px solid #f8c291;
}
.blck-portfolio h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f8c291;
}
.blck-portfolio__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 1rem;
  justify-items: center;
}
.blck-portfolio__item {
  background: #0d0d0d;
  position: relative;
  padding: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.blck-portfolio__item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.blck-portfolio__item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f8c291;
  color: #2c3e50;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.blck-portfolio__item__info h3 {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.blck-portfolio__item__info p {
  font-size: 0.95rem;
  line-height: 1.4;
}
.blck-portfolio__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.blck-portfolio__item:hover .blck-portfolio__info {
  transform: translateY(0);
}

.blck-portfolio__info {
  background: #ffffff;
  color: #000000;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.blck-portfolio__info h3 {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}
.blck-portfolio__info p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* --------------------------------------------------
   10. Contact
   -------------------------------------------------- */
.blck-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("../images/compressed/small/contact-bg-min.webp") center/cover no-repeat;
  padding: 4rem 2rem;
  text-align: center;
}
.blck-contact__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .blck-contact__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.blck-contact__photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.blck-contact__content {
  text-align: left;
}
.blck-contact__content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f8c291;
}
.blck-contact__content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.blck-contact__photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------
   11. Footer
   -------------------------------------------------- */
.blck-footer {
  background: #000000;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #f8c291;
}
.blck-footer p {
  font-size: 0.9rem;
}
.blck-footer p a {
  color: #f8c291;
}
.blck-footer p a:hover {
  color: #fdead9;
}

/* --------------------------------------------------
   1. Conteneur global
-------------------------------------------------- */
.site-container {
  position: relative;
  transition: transform 0.3s ease;
  overflow-x: hidden;
}

/* --------------------------------------------------
   2. Sidebar à droite
-------------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  right: -10rem;
  width: 10rem;
  height: 100vh;
  background: linear-gradient(135deg, #f8c291 0%, #f5a761 100%);
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  z-index: 999;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar ul li {
  margin-bottom: 0.5rem;
  text-align: center;
}
.sidebar ul li a {
  color: #000000;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sidebar ul li a:hover {
  text-decoration: underline;
}
.sidebar.open {
  right: 0;
}

.sidebar ul li a.active {
  color: #1a1a1a;
  text-decoration: underline;
}

/* --------------------------------------------------
   3. Décalage du site
-------------------------------------------------- */
.site-container.shifted {
  transform: translateX(-10rem);
}

/* --------------------------------------------------
   4. Header (Navigation sticky)
-------------------------------------------------- */
.blck-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  transition: padding 0.3s ease, background 0.3s ease;
}
.blck-header__logo img {
  max-height: 70px;
  transition: max-height 0.3s ease;
}
.blck-header.scrolled {
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 2rem;
}
.blck-header.scrolled__logo img {
  max-height: 40px;
}

/* --------------------------------------------------
   4. Menu icon
-------------------------------------------------- */
.menu-icon {
  transform: scale(1.5);
}

:root {
  --bar-bg: #fff;
}

.menu-icon {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.menu-icon .menu-icon__cheeckbox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 2;
  -webkit-touch-callout: none;
  position: absolute;
  opacity: 0;
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 12px;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--bar-bg, #000);
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}
.menu-icon.active span:first-of-type,
.menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
  transform: rotate(45deg);
  top: 5px;
}
.menu-icon.active span:last-of-type,
.menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}
.menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
  width: 22px;
}
@media (min-width: 1024px) {
  .menu-icon:hover span:first-of-type {
    width: 26px;
  }
  .menu-icon:hover span:last-of-type {
    width: 12px;
  }
}

/* --------------------------------------------------
   Section Clients (Preuve sociale)
   -------------------------------------------------- */
.blck-clients {
  background-color: #000000;
  padding: 2rem 1rem;
  text-align: center;
}
.blck-clients h2 {
  font-size: 1.5rem;
  font-style: italic;
  font-family: "Georgia", serif;
  font-weight: normal;
  color: #ffffff;
  margin: 0 auto;
  max-width: 90%;
  line-height: 1.3;
  position: relative;
  padding-left: 1.5rem;
}
.blck-clients h2::before {
  content: "“";
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: -0.2rem;
}
.blck-clients h2::after {
  content: "”";
  font-size: 3rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
}
.blck-clients.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blck-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #101340;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/compressed/hero-bg-min.webp") center/cover no-repeat;
  background-attachment: fixed;
}
.blck-hero .blck-hero__content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* =====================================================
   Personnalisation de la sélection de texte
===================================================== */
::selection {
  background: #101340;
  color: #ffffff;
}

::-moz-selection {
  background: #101340;
  color: #ffffff;
}

/* =====================================================
   Personnalisation de la scrollbar (Webkit)
===================================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #272727;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #f8c291;
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #f5a761;
}

/* --------------------------------------------------
   Responsive (mobile-first)
   -------------------------------------------------- */
@media (max-width: 768px) {
  .blck-hero {
    background: #101340;
  }
}
@media screen and (min-width: 768px) {
  .blck-clients {
    padding: 3rem 2rem;
  }
  .blck-clients h2 {
    font-size: 2rem;
    padding-left: 2rem;
  }
  .blck-clients h2::before {
    font-size: 4rem;
  }
  .blck-clients h2::after {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .blck-header__nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .blck-hero__content h1 {
    font-size: 2rem;
  }
  .blck-services__cards {
    flex-direction: column;
    align-items: center;
  }
  .blck-portfolio__gallery {
    grid-template-columns: 1fr;
  }
}
/* -----------------------------------------
   Modal
----------------------------------------- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  overflow: hidden;
}
.modal.open {
  display: block;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(6px);
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  padding: 2rem;
  overflow-y: auto;
  max-height: 90vh;
  opacity: 0;
  transform: translate(-50%, -60%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal.open .modal__content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  transition: color 0.2s ease;
}
.modal__close:hover {
  color: #999;
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #333;
}
.modal__subtitle {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1rem;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form-group {
  margin-bottom: 1rem;
}
.modal__form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: normal;
  color: #333;
}
.modal__form-group input[type=text],
.modal__form-group input[type=email],
.modal__form-group input[type=number],
.modal__form-group textarea,
.modal__form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}
.modal__form-group input[type=text]:focus,
.modal__form-group input[type=email]:focus,
.modal__form-group input[type=number]:focus,
.modal__form-group textarea:focus,
.modal__form-group select:focus {
  outline: none;
  border-color: #b3b3b3;
}
.modal__submit {
  display: inline-block;
  background: #f8c291;
  color: #000000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.modal__submit:hover {
  background: #f5a761;
  transform: translateY(-2px);
}

.modal__error {
  background: #ffdddd;
  color: #a00;
  border: 1px solid #f88;
  border-radius: 4px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.modal__form-group.field-error input, .modal__form-group.field-error select, .modal__form-group.field-error textarea {
  border-color: #f00 !important;
  background: #fff0f0;
}

#quoteFormErrors {
  padding: 0.1rem 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-weight: normal;
}

#quoteFormErrors.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#quoteFormErrors.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

@media (max-width: 480px) {
  .modal__content {
    padding: 1.5rem;
  }
  .modal__title {
    font-size: 1.3rem;
  }
  .modal__subtitle {
    font-size: 0.95rem;
  }
}
.blck-header {
  position: fixed;
  width: 100%;
  z-index: 11;
  padding: 1rem 10rem;
  border-bottom: 0.001rem solid rgba(255, 255, 255, 0.3);
}
.blck-header__nav {
  display: flex;
  gap: 1rem;
}

.scrolled .blck-header__logo img {
  max-height: 40px;
}

.sidebar__close {
  display: none;
}

@media (max-width: 1024px) {
  .sidebar__close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  .sidebar__close:hover {
    color: black;
  }
}
.blck-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
}
.blck-slider .swiper-container {
  width: 100%;
  height: 400px;
}
.blck-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #282828;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
}

/* -------------------------------------
   Variables & Breakpoints
------------------------------------- */
@media (max-width: 1024px) {
  /* -------------------------------------
     Reset / Base
  ------------------------------------- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    /* Base font-size plus grande pour mobile */
    font-size: 18px;
    line-height: 1.5;
    /* Optionnel : sur écrans très petits, réduire un peu si nécessaire */
  }
  /* -------------------------------------
     Header
  ------------------------------------- */
  /* Logo un peu plus grand en mobile */
  /* Navigation :
     Sur mobile, on utilise la sidebar (voir plus bas).
     Sur desktop, on peut afficher un menu horizontal si besoin.
  */
  /* -------------------------------------
     Sidebar (Menu mobile)
  ------------------------------------- */
  /* -------------------------------------
     Hero (ex. .blck-hero)
  ------------------------------------- */
  /* -------------------------------------
     Services
  ------------------------------------- */
  /* -------------------------------------
     Portfolio
  ------------------------------------- */
  /* -------------------------------------
     Contact
  ------------------------------------- */
  /* -------------------------------------
     Footer
  ------------------------------------- */
}
@media (max-width: 1024px) and (max-width: 480px) {
  html {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  body {
    font-family: "Inter", sans-serif;
    background: #111;
    color: #fff;
    padding: 0;
  }
  .blck-header {
    position: fixed; /* reste visible en haut */
    top: 0;
    width: 100%;
    /* z-index: 1000; */
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .blck-header__logo img {
    max-height: 60px;
    transition: max-height 0.3s ease;
  }
  .blck-header__nav {
    display: none;
    /* Sur desktop, vous pourriez le réactiver :
    @media (min-width: $bp-md) {
      display: flex;
    }
    */
  }
  .sidebar {
    position: fixed;
    top: 0;
    right: 0; /* se place à droite */
    width: 100%;
    height: 100vh; /* occupe toute la hauteur */
    background: #f8c291;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    padding: 2rem 1rem;
    /* Alignement du menu */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Liens dans la sidebar */
  }
  .sidebar.open {
    transform: translateX(0); /* visible */
  }
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sidebar ul li {
    margin-bottom: 1rem;
    text-align: center;
  }
  .sidebar ul li a {
    color: #000;
    font-size: 1.1rem;
    text-decoration: none;
  }
  .sidebar ul li a:hover {
    text-decoration: underline;
  }
  .blck-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem; /* laisser de la place au header */
  }
  .blck-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    /* Mettez une couleur plus visible */
  }
  .blck-hero h1 span {
    color: #f8c291;
  }
  .blck-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
  }
  .blck-hero .blck-btn {
    font-size: 1rem;
    background: #f8c291;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
  }
  .blck-hero .blck-btn:hover {
    background: #f5a761;
  }
  .blck-services {
    padding: 3rem 0 2rem; /* plus d'espace en haut */
    text-align: center;
    /* Sur écrans plus larges, on aligne en row */
  }
  .blck-services h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f8c291;
  }
  .blck-services .blck-services__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem; /* un peu d'espace sur les côtés */
  }
  .blck-services .blck-service-card {
    width: 100%;
    max-width: 400px; /* plus large que 300px */
    background: #000;
    border: 1px solid #f8c291;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
  }
  .blck-services .blck-service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  .blck-services .blck-service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .blck-services .blck-services__cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .blck-portfolio {
    background: #000;
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid #f8c291;
  }
  .blck-portfolio h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #f8c291;
  }
  .blck-portfolio .blck-portfolio__gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
    /* Sur tablette+ */
  }
  .blck-portfolio .blck-portfolio__item {
    background: #0d0d0d;
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  .blck-portfolio .blck-portfolio__item img {
    width: 100%;
    border-radius: 6px;
  }
  .blck-portfolio .blck-portfolio__item:hover {
    transform: translateY(-5px);
  }
}
@media (max-width: 1024px) {
  .blck-contact {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("/public/images/compressed/small/contact-bg-min.webp") center/cover no-repeat;
    padding: 3rem 1rem;
    text-align: center;
    /* Sur tablette+ */
  }
  .blck-contact .blck-contact__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  .blck-contact .blck-contact__photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
  }
  .blck-contact .blck-contact__content {
    text-align: center;
  }
  .blck-contact .blck-contact__content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f8c291;
  }
  .blck-contact .blck-contact__content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  .blck-contact .blck-contact__content .blck-btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: #f8c291;
    color: #000;
    border-radius: 30px;
  }
  .blck-contact .blck-contact__content .blck-btn:hover {
    background: #f5a761;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .blck-contact .blck-contact__wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  .blck-contact .blck-contact__content {
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .blck-footer {
    background: #000;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #f8c291;
  }
  .blck-footer p {
    font-size: 0.95rem;
    color: #ccc;
  }
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 1rem;
  display: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* z-index: 3000; */
  z-index: 300;
}
.cookie-consent p {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}
.cookie-consent .cookie-link {
  background: none;
  color: #f8c291;
  border: none;
  padding: 0;
  margin: 0 0.5rem;
  text-decoration: underline;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s;
}
.cookie-consent .cookie-link:hover {
  color: #fbddc1;
}
.cookie-consent .cookie-btn {
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  transition: background 0.3s;
}
.cookie-consent .cookie-btn.accept {
  background: #55efc4;
  color: #000;
}
.cookie-consent .cookie-btn.accept:hover {
  background: #3eedbc;
}
.cookie-consent .cookie-btn.refuse {
  background: #fab1a0;
  color: #000;
}
.cookie-consent .cookie-btn.refuse:hover {
  background: #f99d88;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3100;
}
.cookie-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.cookie-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 90%;
  max-width: 600px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  overflow-y: auto;
  max-height: 90vh;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-modal__content h2, .cookie-modal__content h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.cookie-modal__content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cookie-modal__content a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s;
}
.cookie-modal__content a:hover {
  color: #fbddc1;
}
.cookie-modal__content::-webkit-scrollbar {
  width: 8px;
}
.cookie-modal__content::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 4px;
}
.cookie-modal__content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.cookie-modal__content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.cookie-modal.open {
  display: block;
}
.cookie-modal.open .cookie-modal__content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cookie-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}
.cookie-modal__close:hover {
  color: #666;
}
.cookie-modal__title {
  font-size: 1.5rem;
  color: #333;
}
.cookie-modal__subtitle {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1rem;
}
.cookie-modal__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cookie-modal__actions .cookie-btn {
  font-size: 1rem;
  font-weight: normal;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.cookie-modal__actions .accept {
  background: #55efc4;
  color: #000;
}
.cookie-modal__actions .accept:hover {
  background: #3eedbc;
}
.cookie-modal__actions .refuse {
  background: #fab1a0;
  color: #000;
}
.cookie-modal__actions .refuse:hover {
  background: #f99d88;
}

@media (max-width: 480px) {
  .cookie-consent p {
    font-size: 0.95rem;
  }
  .cookie-modal__content {
    padding: 1.5rem;
  }
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blck-hero__wave, .blck-hero__content {
  position: relative;
  z-index: 2;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-dots {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.loader-dots div {
  width: 15px;
  height: 15px;
  background-color: #f8c291;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}
.loader-dots div:nth-child(2) {
  animation-delay: 0.2s;
}
.loader-dots div:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  from {
    transform: translateY(0);
    opacity: 0.6;
  }
  to {
    transform: translateY(-20px);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .loader-dots {
    gap: 8px;
  }
  .loader-dots div {
    width: 12px;
    height: 12px;
  }
}

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