/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

/* ------------------------------------------ */
/* Variables et styles globaux */
html {
  --color-blue: #217187;
  --color-blue-2: #76B1C1;
  --color-red: #F86069;
  --color-yellow: #F4A300;
  --color-white: #fff;
  --color-off-white: #FBFBFB;
  --color-grey: #757575;
  --color-body: rgba(33, 113, 135, 0.81);
  --color-btn: linear-gradient(45deg, #F76262 0%, #FE5196 100%);
  --shadow-box: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
  --shadow-btn: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);

  /* Couleur Résultat */
  --color-box-resultat: rgba(255, 186, 49, 1);
  --color-box-resultat-stroke: rgba(255, 200, 49, 1);

  /* Toggle Switch OFF */
  --color-line-off: #D0D0D0;
  --color-circle-off: #E1E1E1;

  /* Toggle Switch ON */
  --color-line-on: #FFE5CB;
  --color-circle-on: #76B1C1;
  --shadow-active-input: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);

  /* Inputs time & formulaires */
  --color-input-bg-time: rgba(255, 253, 248, 0.63);
  --color-stroke-input: #0D63AE;
  --color-input-formulaire: rgba(255, 240, 212, 1);

  /* Gradients Studio */
  --gradient-red: var(--color-btn);
  --gradient-yellow: linear-gradient(145deg, #F4A300 0%, #FFB703 100%);
}

body {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-body);
  background-image: url("img/bg-body.svg");
  background-repeat: no-repeat;
  background-position: unset;
  background-size: contain;
}

main {
  padding-top: 72px;
}

h1 {
  font-weight: 800;
  font-size: 50px;
  line-height: 58px;
  color: var(--color-blue);
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
}

@media screen and (max-width: 440px) {
  h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

h3 {
  color: var(--color-white);
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
}

@media screen and (max-width: 440px) {
  h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

.btn {
  border: none;
  background: var(--color-btn);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  padding: 0 32px;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(247, 98, 98, 0.35);
  height: 52px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(247, 98, 98, 0.5);
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  cursor: pointer;
  height: 28px;
}

span.red {
  color: var(--color-red);
}

span.yellow {
  color: var(--color-yellow);
}

span.light {
  font-weight: 300;
  font-size: 15px;
  line-height: 19px;
}

span.italic {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  font-style: italic;
}

span.bold {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

b.bold {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

span.grey-13 {
  color: var(--color-grey);
  font-size: 13px;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1250px) {
  .container {
    width: 90%;
  }
}

.w-50 {
  width: 50%;
}
.w-100 {
  width: 100%;
}
.row {
  display: flex;
  flex-direction: row;
}
.row2 {
  display: flex;
}
.column {
  display: flex;
  flex-direction: column;
}
.tal {
  display: flex;
  align-items: center;
}
.center {
  display: flex;
  justify-content: center;
}
.end {
  display: flex;
  justify-content: flex-end;
}
.space-between {
  justify-content: space-between;
}
.gap-20 {
  gap: 10px;
}
.gap-50 {
  gap: 50px;
}
.gap-70 {
  gap: 70px;
}

@media screen and (max-width: 440px) {
  .gap-70 {
    gap: 30px;
  }
}

.m24 {
  margin-right: 24px;
}

/* HEADER */
header {
  background-color: var(--color-white);
  filter: var(--shadow-box);
  position: fixed;
  z-index: 999;
  width: 100%;
}

header a {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  position: relative;
  opacity: 0.6;
  transition: all 0.3s ease;
}
header a:hover {
  opacity: 1;
  color: var(--color-red);
}
header ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background: var(--gradient-red);
  border-radius: 4px;
  transition: width 0.3s ease;
}
header ul li a:hover::after {
  width: 100%;
}
.menu a::after {
  display: none !important;
}

header img {
  max-width: 185px;
}

.menu {
  background-color: transparent;
  padding: 19px 0;
}

.nav-mobile {
  display: none !important;
}

@media screen and (max-width: 600px) {
  .nav-desktop {
    display: none !important;
  }
  .nav-mobile {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    z-index: 10000;
  }
  .nav-mobile .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
  }
  header .container {
    width: 100%;
  }
  header img {
    max-height: 35px;
    width: auto;
    margin-left: 0;
  }
  .nav-toggler {
    position: relative;
    z-index: 10001;
    height: 40px;
    width: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
  }
  .line {
    position: absolute;
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-blue);
    border-radius: 4px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  }
  body.dark-mode .line {
    background: #fff;
  }
  .l1 {
    transform: translateY(-7px);
  }
  .l3 {
    transform: translateY(7px);
  }
  .nav-toggler.active .l1 {
    transform: translateY(0px) rotate(135deg);
  }
  .nav-toggler.active .l2 {
    opacity: 0;
  }
  .nav-toggler.active .l3 {
    transform: translateY(0px) rotate(-135deg);
  }
  nav {
    top: 0;
    left: 0;
    position: fixed;
    flex-direction: column !important;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.73, 0.11, 0.67, 0.84);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.dark-mode nav {
    background-color: rgba(24, 24, 24, 0.95);
  }
  nav.active {
    transform: translateY(0%);
  }
  header ul {
    flex-direction: column !important;
    gap: 30px;
    align-items: center;
  }
  header .space-between {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }
  header a {
    font-size: 24px;
    letter-spacing: 0.15em;
  }
}

/* S-1 */
.s-1 {
  padding: 50px 0;
}
.s-1 h1 {
  margin-bottom: 12px;
}
.s-1 p:nth-child(-n+3) {
  margin-bottom: 7px;
}
.s-1 img {
  max-width: 379px;
}

@media screen and (max-width: 940px) {
  .s-1 {
    flex-direction: column;
  }
  .s-1 .end {
    justify-content: center;
  }
}

/* S-2 */
.s-2 {
  padding-bottom: 145px;
}

/* Calculator UI is now handled by Tailwind classes */

@media screen and (max-width: 940px) {
  .s-2 {
    align-items: center;
  }
  .s-2.row {
    flex-direction: column;
  }
}

@media screen and (max-width: 850px) {
  .end {
    justify-content: center;
  }
  .w-50 {
    width: 100%;
  }
  .calculator {
    margin: 0 auto;
    width: 100% !important;
  }
  .calculator .row {
    flex-direction: row;
    align-items: center;
  }
  body {
    font-size: 15px;
    line-height: 18px;
  }
  .heureDebut {
    margin-right: 0;
  }
  .heureFin {
    margin-left: 0;
  }
  .calculator .end {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 440px) {
  .calculator .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .calculator .end {
    justify-content: center;
  }
  .calculator .gap-20 {
    gap: 24px;
  }
  .total-hour {
    width: 100%;
    height: 285px;
  }
}

/* S-3 */
.s-3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding-bottom: 145px;
}
.s-3 p:not(:last-child) {
  margin-bottom: 24px;
}

/* CONTACT */
.contact {
  padding: 100px 0;
}
.contact h2 {
  margin-bottom: 20px;
  color: var(--color-blue);
}
.contact .subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  color: var(--color-grey);
  line-height: 1.5;
}
.contact .row {
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}
.contact-form {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
form .form-group {
  margin-bottom: 24px;
}
form input,
form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  outline: none;
  color: var(--color-blue);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  padding: 18px 24px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}
form input:focus,
form textarea:focus {
  border-color: var(--color-blue-2);
  box-shadow: 0 0 0 4px rgba(118, 177, 193, 0.25), inset 0 2px 5px rgba(0,0,0,0.02);
  background-color: #fff;
  transform: translateY(-2px);
}
form textarea {
  min-height: 150px;
  resize: vertical;
}
form input::placeholder,
form textarea::placeholder {
  color: #A0A0A0;
}
.information {
  padding: 40px;
}
.information div {
  margin-bottom: 30px;
}
.information p {
  line-height: 1.6;
}

@media screen and (max-width: 850px) {
  .contact .row {
    flex-direction: column !important;
  }
  .w-50 {
    width: 100%;
  }
}

/* FOOTER */
footer {
  background: var(--color-blue-2);
  padding: 35px 0;
}
footer .row {
  gap: 122px;
  padding: 30px 0;
}
footer img {
  max-width: 196px;
}
footer a {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
}
footer p {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: var(--color-white);
}
@media screen and (max-width: 500px) {
  footer div.row {
    flex-direction: column;
    gap: 24px;
  }
}

/* Switch ON/OFF dans le calculateur */
.flipswitch:checked {
  background-color: var(--color-line-on);
}
.flipswitch {
  position: relative;
  background: var(--color-line-off);
  width: 23px;
  height: 7px;
  -webkit-appearance: initial;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  transition: 0.4s;
  margin-top: 8px;
}
.flipswitch:after {
  position: absolute;
  bottom: -4px;
  display: block;
  width: 15px;
  height: 15px;
  background: var(--color-blue-2);
  transition: 0.4s;
  border-radius: 100%;
  box-shadow: var(--shadow-active-input);
  content: "";
  left: 0;
}
.flipswitch:checked:after {
  left: 50%;
}

/* Toggle Mode Sombre (dans la nav) */
/* Container global du switch */
.dark-mode-nav {
  display: flex;
  align-items: center;
}

/* Positionne icônes et toggle sur la même ligne */
.switch {
  position: relative;
  display: inline-flex;
  align-items: center; /* Pour aligner verticalement icônes et le slider */
  margin-left: 10px;
}

/* Icônes (jour/nuit) */
.icon-day,
.icon-night {
  display: inline-block;
  width: 20px;       /* Ajustez selon la taille désirée */
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 5px;     /* Espacement horizontal */
}

/* Chemin vers vos icônes */
.icon-day {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("img/day-icon.svg");
}

.icon-night {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("img/night-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Le reste du style du switch */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: relative;
  cursor: pointer;
  width: 40px;       /* Largeur du curseur */
  height: 20px;      /* Hauteur du curseur */
  background-color: #ccc;
  border-radius: 25px;
  transition: .4s;
}
.slider:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
}
/* Switch ON */
input:checked + .slider {
  background-color: #2196f3;
}
input:checked + .slider:before {
  transform: translateX(20px);
}

/* MODE SOMBRE */
body.dark-mode {
  background-color: #121212;
  background-image: url("img/bg-body-dark.svg") !important;
  background-repeat: no-repeat;
  background-position: unset;
  background-size: contain;
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}
body.dark-mode header,
body.dark-mode .menu,
body.dark-mode footer {
  background-color: transparent;
  color: #fff;
  box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.02);
}
body.dark-mode .calculator {
  background-color: #2a2a2a;
}
body.dark-mode .total-hour {
  background-color: #444444;
}
/* Centrage parfait des champs de type time */
input[type="time"] {
  text-align: center;
}
input[type="time"]::-webkit-datetime-edit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
input[type="time"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

body.dark-mode input[type=time] {
  background-color: #333;
  color: #fff;
  border-color: #555;
}
body.dark-mode .flipswitch:after {
  background: var(--color-red);
}
body.dark-mode .s-3 {
  background-color: #181818;
}
body.dark-mode .contact-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
body.dark-mode form input,
body.dark-mode form textarea {
  background-color: rgba(0,0,0,0.3);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
body.dark-mode form input:focus,
body.dark-mode form textarea:focus {
  border-color: var(--color-blue-2);
  box-shadow: 0 0 0 4px rgba(118, 177, 193, 0.3), inset 0 2px 5px rgba(0,0,0,0.2);
  background-color: rgba(0,0,0,0.5);
  transform: translateY(-2px);
}
body.dark-mode form input::placeholder,
body.dark-mode form textarea::placeholder {
  color: #888;
}

body.dark-mode a {
  color: #ccc;
}
body.dark-mode .btn {
  background: linear-gradient(45deg, #444 0%, #777 100%);
  color: #fff;
  box-shadow: none;
}

/* --- NOUVEAUTÉS ABOUT / FEATURES --- */
.features-section {
  padding: 80px 0;
  background-color: var(--color-off-white);
}
body.dark-mode .features-section {
  background-color: #181818;
}
.features-section h2 {
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 50px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 50px 30px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.7);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body.dark-mode .feature-card {
  background: rgba(42, 42, 42, 0.6);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.8);
}
body.dark-mode .feature-card:hover {
  background: rgba(42, 42, 42, 0.8);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.feature-card .icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  background: var(--color-blue-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-grey);
}
body.dark-mode .feature-card p {
  color: #ccc;
}

/* ABOUT PAGE */
.about-hero {
  padding: 100px 0 60px 0;
  text-align: center;
}
.about-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}
.about-content {
  padding: 0 0 100px 0;
  align-items: center;
}
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-body);
}
body.dark-mode .about-content p {
  color: #ddd;
}
.about-content img {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- SIGNATURE CARD (ABOUT) --- */
.signature-card {
  padding: 60px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  transition: all 0.3s ease;
}
body.dark-mode .signature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.signature-gradient {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: var(--gradient-yellow);
  opacity: 0.15;
  border-radius: 50%;
  transition: transform 0.7s ease;
}
.signature-card:hover .signature-gradient {
  transform: scale(1.15);
}
body.dark-mode .signature-card p,
body.dark-mode .about-hero h1 {
  color: #fff !important;
}

/* --- CONTACT STUDIO UI --- */
.studio-icon-box {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  color: var(--color-red);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}
body.dark-mode .studio-icon-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.studio-icon-box:hover {
  transform: rotate(-5deg) scale(1.1);
}

.studio-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.4;
  margin-bottom: 8px;
  margin-left: 20px;
}
.studio-btn {
  width: 100%;
  padding: 24px !important;
  font-size: 15px !important;
  letter-spacing: 0.2em !important;
  border-radius: 20px !important;
}

/* --- CALCUL SUR PLUSIEURS SEMAINES --- */
.semaines-box {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.5);
}
body.dark-mode .semaines-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.semaines-box label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  font-size: 12px;
  display: block;
  margin-bottom: 15px;
  opacity: 0.7;
}
body.dark-mode .semaines-box label {
  color: #fff;
}
.semaines-box input {
  width: 80px;
  height: 50px;
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.05);
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-blue);
  background: var(--color-white);
  outline: none;
  transition: all 0.3s ease;
}
body.dark-mode .semaines-box input {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.1);
}
.semaines-box input:focus {
  border-color: var(--color-blue-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(118, 177, 193, 0.2);
}
body.dark-mode .semaines-box input:focus {
  border-color: var(--color-blue-2);
}
.semaines-box span {
  font-weight: 700;
  opacity: 0.4;
  font-size: 16px;
}
