:root {
  --color-primary: #ffffff;
  --color-secondary: #000000;
  --color-success: #00ff43;
  --color-error: #ff0000;
  --color-bg: ##d5d5d5;
  --color-text: #000000;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

button {
  background-color: var(--color-secondary);
  color: white;
  transition: 0.7s;
}

button:hover {
  background-color: var(--color-primary);
  color: black;
  transition: 0.7s;
  box-shadow: 0px 1px 5px #d1d1d1;
}

.alert-success {
  background-color: var(--color-success);
}

.alert-error {
  background-color: var(--color-error);
}

.container{
  display: flex;
  flex-direction: column;
}

.container2{
  display: flex;
}

.container3{
  display: flex;
  align-items: center;
}

.top {
  background-color: #000000;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top p {
  text-decoration: none;
  margin: 2px 14px;
  padding: 12px 20px;
  color: white;
  font-weight: 700;
  font-size: 24px;
}

.img1{
  width: 34px;
  cursor: pointer;
  position: absolute;
  top: 13px;
  right: 10px;
}

.img2{
  width: 34px;
  cursor: pointer;
  position: absolute;
  top: 13px;
  right: 45px;
}

.left {
  background-color: #000000;
  width: 25%;
  display: flex;
  margin: 1%;
  border-radius: 80px 4px 80px 4px;
  height: 990px;
}

.left a {
  text-decoration: none;
  margin: 34px 14px;
  padding: 11px 310px 0pc 49px;
  color: white;
  font-weight: 600;
  font-size: 19px;
}

.idd {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.user {
  display: flex;
  flex-direction: column;
  width: 65%;
}

.user input {
  border: solid 2px #000000;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 19px;
}

.user label{
  font-size: 19px;
}

.right {
  margin-top: 5px;
  margin-left: 10%;
  width: 40%;
}

.connection{
  width: 65%;
  border-radius: 10px;
  padding: 10px 16px;
  border: solid 2px #000000;
  transition: 0.8s;
  cursor: pointer;
  font-size: 19px;
}

.connection:hover{
  box-shadow: 0px 1px 5px #d1d1d1;
  border: solid 2px white;
  transition: 0.8s;
}

.error {
  color: #e74c3c;
  font-size: 0.85em;
  margin-top: 4px;
}

.middle{
  margin: 0 auto;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 80%;
}

.middle h2{
  font-size: 37px;
}

.title {
  font-size: 107px;
  display: flex;
  gap: 5px;
}

.title span {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite, fadeToWhite 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

/* Rebond haut/bas */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Passage de noir à blanc */
@keyframes fadeToWhite {
  0%, 100% {
    color: black;
  }
  50% {
    color: white;
  }
}

.new{
  display: flex;
  align-items: center;
  gap: 10px;
}

.new a{
  text-decoration: none;
  font-weight: 700;
  color: #000000;
}

.link{
  display: flex;
  align-items: center;
  gap: 15px;
  width: 35%;
}

.link a{
  width: 100%;
  border-radius: 10px;
  padding: 10px 16px;
  background-color: #000000;
  transition: 0.8s;
  cursor: pointer;
  font-size: 19px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  display: flex;
}

.link a:hover{
  box-shadow: 0px 1px 5px #d1d1d1;
  background: white;
  transition: 0.8s;
  color: black;
}

.drop-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 200px;
  padding: 20px;
  border: 2px dashed #222245;
  color: #222245;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
}

.drop-title {
  color: #222245;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.drop-container.drag-active {
  background: #eee;
}

input[type=file] {
  width: 350px;
  max-width: 100%;
  padding: 8px;
  background-color: white;
  color: #000000;
  border: 1px solid #222245;
}

input[type=file]:focus {
  outline: 2px dashed #222245;
  outline-offset: 2px;
}

input[type=file]::file-selector-button {
  margin-right: 8px;
  border: none;
  background: #222245;
  padding: 8px 12px;
  color: #fff;
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  .drop-container {
  background-color: white;
  color: #000000;
  }

  .drop-container:hover {
    background-color: white;
    color: #000000;
  }

  .drop-container span:hover{
    color: #000000;
  }

  .drop-container.drag-active {
    background-color: #000000;
  }


  input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #fff;
    border: 1px solid #696969;
    background-color: #1c1c1c;
  }

  input[type=file]:focus {
    outline: 2px dashed #7c7cc0;
    outline-offset: 2px;
  }

  input[type=file]::file-selector-button {
    background-color: white;
    color: #000000;
  }
}

.description{
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: 16px;

}

.makeRsv{
  display: flex;
  width: 98%;
  justify-content: center;
  margin: 36px;
  gap: 115px;
}

.description input{
  border: solid 2px #000000;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 19px;
}

.send{
  width: 100%;
  border-radius: 10px;
  padding: 10px 16px;
  border: solid 2px #000000;
  transition: 0.8s;
  cursor: pointer;
  font-size: 19px;
}

.send:hover{
  box-shadow: 0px 1px 5px #d1d1d1;
  border: solid 2px white;
  transition: 0.8s;
}

.forgot{
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot a{
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  width: 450px;
  border-radius: 20px;
  box-shadow: 0px 1px 5px #d1d1d1;
  transition: 0.3s;
}

.form:hover{
  box-shadow: 0px 4px 54px #d1d1d1;
  transition: 0.3s;
  transform: scale(1.1);
}

.form button {
  align-self: flex-end;
}

.flex-column > label {
  color: #151717;
  font-weight: 600;
}

.inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #000000;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 14px;
  color: black;
  font-weight: 400;
}

.span {
  font-size: 14px;
  margin-left: 5px;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 20px 0 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  border: none;
}

.p {
  text-align: center;
  color: black;
  font-size: 14px;
  margin: 5px 0;
}

.btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  border: 1px solid #000000;
  ;
}

.black{
  background-color: #000000;
  width: 100%;
  height: 1031px;
  z-index: -1;  
} 

.signIn{
  z-index: 1000;
  width: 44%;
  justify-content: center;
  display: flex;
  align-items: center;
  position: absolute;
  top: 220px;
  left: 23px;
}

.leftSign{
  width: 47%;
}

.connexion{
  z-index: 1000;
  width: 44%;
  justify-content: center;
  display: flex;
  align-items: center;
  position: absolute;
  top: 220px;
  left: 23px;
}

.leftLogin{
  width: 47%;
}

.newAccount {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newAccount a{
  text-decoration: none;
  font-weight: 700;
  color: #000000;
}

.barMod{
  display: flex;
}

.realisation-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}
.carousel-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.carousel-heading {
  font-size: 28px;
  margin-bottom: 40px;
  color: #000;
  letter-spacing: 1px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: black;
  border: none;
  font-size: 76px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 1;
}

.carousel-btn:hover{
  background-color: unset;
  box-shadow: unset;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.carousel-dots {
  margin-top: 15px;
}

.carousel-dots span {
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #000;
  border-radius: 50%;
  margin: 0 5px;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-dots span.active {
  opacity: 1;
}


.luxury-button {
  display: inline-block;
  position: absolute;
  padding: 10px 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  width: 9%;
  margin: 1.4%;
  left: 436px;
  top: 827px;
}

.luxury-button span {
  position: relative;
  z-index: 2;
}

.luxury-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.luxury-button:hover::before {
  left: 100%;
}

.luxury-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: 60px;
}

.footer-content {
  text-align: center;
  animation: fadeIn 1.2s ease forwards;
}

.footer-logo {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s;
}

.footer-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 100%;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.footer-links li a:hover {
  color: #ccc;
}

.footer-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hover-carousel {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  flex-direction: column;
}

.carousel-item {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.carousel-item .overlay {
  position: absolute;
  top: -13px;
  left: -11px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  transition: opacity 0.4s ease;
}

.carousel-items{
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.hover-carousel a{
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
  color: #000;
  width: 20%;
}

.hover-carousel a:hover{
  font-weight: 700;
  transition: 0.4s;
}

.carousel-item:hover img {
  opacity: 0;
}

.carousel-item:hover .overlay {
  opacity: 1;
}

.overlay p {
  font-size: 16px;
  line-height: 1.4;
}

.top-luxe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #000000;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
}

.slogan {
  font-size: 16px;
  font-weight: 500;
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
}

.bar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-button {
  display: inline-block;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.icon-button img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.icon-button:hover {
  transform: scale(1.05);
}

.icon-button:hover img {
  filter: grayscale(0%);
}

.goBack{
  position: absolute;
  top: 12px;
  transform: rotate(180deg);
  width: 40px;
}

@media screen and (max-width: 1100px) {
  .carousel-items{
    flex-direction: column;
  }
}

.alterUser{
  display: flex;
  justify-content: center;
  width: 45%;
  box-shadow: -1,0,0 rgba(black);
  box-shadow: 0px 0px 9px #bdbcbc;
  margin: 0 auto;
}

main.lux-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
}

.lux-form-container {
  background-color: #111;
  padding: 50px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  border: 1px solid #2a2a2a;
  animation: fadeIn 1s ease-out;
}

.lux-title {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  color: #f4f4f4;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.08);
}

/* Form styling */
.lux-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lux-field {
  display: flex;
  flex-direction: column;
}

.lux-field label {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.lux-field input {
  background-color: #1b1b1b;
  border: 1px solid #333;
  padding: 14px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.lux-field input:focus {
  outline: none;
  border-color: #aaa;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Button */
.lux-submit {
  background: linear-gradient(145deg, #ffffff, #d4d4d4);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  border: none;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.lux-submit:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .lux-form-container {
    padding: 30px 20px;
  }

  .lux-title {
    font-size: 26px;
  }
}

