body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #1d1d20;
  color: #ffffff;
}

.container {
  width: 90%;
  height: 100%;
  margin: 0 24px;
}

.navigation {
  display: none;
}

.navigation-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-top: 16px;
}

ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  ul {
    flex-direction: column;
    align-items: normal;
    gap: 0px;
    margin-left: 32px;
    margin-top: 16px;
  }
}
ul li {
  position: relative;
  cursor: pointer;
  color: white;
  padding: 5px 0;
  transition: color 0.3s ease;
}
ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: white;
  opacity: 0.3;
}
ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #7c7880, #c5b65c);
  transition: transform 0.4s ease;
}
ul li:hover::after, ul li.active::after {
  transform: translateX(-50%) scaleX(1);
}

h1 {
  font-size: 70px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
  padding-top: 15px;
  width: 75%;
  margin: 0 auto;
  text-align: center;
}

.line {
  width: 50%;
  background: linear-gradient(to right, #7c7880, #c5b65c);
  height: 5px;
  margin: 0 auto;
  padding: 0;
}

.about {
  padding: 0;
  margin-top: 16px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.hidden {
  display: none;
}

@media screen and (min-width: 1200px) {
  .navigation-mobile {
    display: none;
  }
  .container {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  h1 {
    font-size: 70px;
    width: auto;
    margin: 0;
    text-align: left;
  }
  .content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 85%;
    padding-right: 40px;
  }
  .line {
    width: 50%;
    margin: 0;
  }
  .about {
    width: 100%;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    text-align: justify;
  }
  .navigation {
    display: flex;
    width: 50%;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-size: 24px;
  }
  .navigation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 200px;
    border-radius: 10px 0 0 0;
    background: linear-gradient(135deg, #7c7880, #c5b65c);
    padding: 2px;
    pointer-events: none;
    -webkit-mask: linear-gradient(to right, black 5px, transparent 2px), linear-gradient(to bottom, black 5px, transparent 2px);
    mask: linear-gradient(to right, black 5px, transparent 2px), linear-gradient(to bottom, black 5px, transparent 2px);
  }
  .left-section {
    margin-left: 48px;
    width: 150%;
  }
}
.carousel {
  position: relative;
  width: 100%;
  height: 350px;
  padding: 4px 8px;
  margin-top: 24px;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  transition: opacity 0.5s ease;
  opacity: 1;
  padding: 0 10px;
}

.carousel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 120, 128, 0.1), rgba(197, 182, 92, 0.1));
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(197, 182, 92, 0.2);
  transition: all 0.3s ease;
}
.carousel-card:hover {
  border-color: rgba(197, 182, 92, 0.6);
  background: linear-gradient(135deg, rgba(124, 120, 128, 0.15), rgba(197, 182, 92, 0.15));
  transform: translateY(-4px);
}

.carousel-image-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.carousel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carousel-card:hover .carousel-image-wrapper img {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(29, 29, 32, 0.3));
  pointer-events: none;
}

.carousel-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex-grow: 1;
  gap: 12px;
}

.carousel-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(to right, #7c7880, #c5b65c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
  .carousel {
    height: 100%;
  }
}
.carousel-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  flex-grow: 1;
}

.carousel-languages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.languages-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(197, 182, 92, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.languages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.language-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(124, 120, 128, 0.3);
  border: 1px solid rgba(197, 182, 92, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.language-tag:hover {
  background: rgba(197, 182, 92, 0.2);
  border-color: rgba(197, 182, 92, 0.6);
  color: #ffffff;
}

.carousel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  margin-top: 8px;
  background: transparent;
  border: 1px solid rgba(197, 182, 92, 0.5);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}
.carousel-link:hover {
  border-color: rgb(197, 182, 92);
  background: rgba(197, 182, 92, 0.1);
}
.carousel-link:hover .link-arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 1200px) {
  .carousel {
    height: 100%;
  }
  .carousel-card {
    flex-direction: row;
    min-height: 250px;
  }
  .carousel-image-wrapper {
    width: 40%;
    min-height: 250px;
  }
  .carousel-content {
    width: 60%;
    padding: 28px;
    justify-content: space-between;
  }
  .carousel-title {
    font-size: 24px;
  }
  .carousel-description {
    font-size: 15px;
  }
}
/* Boutons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.prev {
  left: 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: border-color 0.5s, border-width 0.5s;
}
.prev:hover {
  border-color: white;
}

.next {
  right: 30px;
  border-radius: 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: border-color 0.5s, border-width 0.5s;
}
.next:hover {
  border-color: white;
}

.left-part {
  display: flex;
}

.form {
  margin-top: 16px;
}
.form .row-form {
  display: flex;
}
.form .row-form .inputField {
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.form .row-form .full {
  width: 100%;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .contact-wrapper {
    flex-direction: row;
    gap: 60px;
  }
}

.form {
  width: 100%;
  background: rgba(124, 120, 128, 0.05);
  border: 1px solid rgba(197, 182, 92, 0.2);
  border-radius: 12px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.form:hover {
  border-color: rgba(197, 182, 92, 0.4);
  background: rgba(124, 120, 128, 0.08);
}
@media screen and (min-width: 1200px) {
  .form {
    padding: 40px;
  }
}

.row-form {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1200px) {
  .row-form {
    flex-wrap: nowrap;
  }
}

.inputField {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1200px) {
  .inputField {
    min-width: 0;
  }
}
.inputField.full {
  flex: 1 1 100%;
}
.inputField label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.inputField input,
.inputField textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 182, 92, 0.3);
  border-radius: 6px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}
.inputField input::placeholder,
.inputField textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.inputField input:focus,
.inputField textarea:focus {
  outline: none;
  border-color: rgba(197, 182, 92, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(197, 182, 92, 0.1);
}
.inputField textarea {
  resize: vertical;
  min-height: 120px;
}
.inputField.error input, .inputField.error textarea {
  border-color: #f44336 !important;
}

button[type=submit] {
  background: linear-gradient(to right, #7c7880, #c5b65c);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  margin-top: 10px;
}
button[type=submit]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 182, 92, 0.3);
}
button[type=submit]:active:not(:disabled) {
  transform: translateY(0);
}
button[type=submit]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.error-message {
  display: none;
  font-size: 12px;
  color: #f44336;
  margin-top: 4px;
  animation: slideDown 0.3s ease;
}
.error-message.show {
  display: block;
}

#form-message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 6px;
  display: none;
  font-size: 14px;
  animation: slideDown 0.3s ease;
}
#form-message.show {
  display: block;
}
#form-message.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}
#form-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.right-part {
  width: 100%;
}

.info-box {
  background: rgba(124, 120, 128, 0.05);
  border: 1px solid rgba(197, 182, 92, 0.2);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.info-box:hover {
  border-color: rgba(197, 182, 92, 0.4);
  background: rgba(124, 120, 128, 0.08);
}
@media screen and (min-width: 1200px) {
  .info-box {
    padding: 40px;
  }
}
.info-box h2 {
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(to right, #7c7880, #c5b65c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.info-box p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 15px;
}

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

.info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(197, 182, 92, 0.2);
  transition: all 0.3s ease;
}
.info-item a {
  text-decoration: none;
  color: white;
}
.info-item a:hover {
  transition: all 0.3s ease;
  color: rgb(197, 182, 92);
}
.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info-item:hover .value {
  color: rgb(197, 182, 92);
}
.info-item .label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(197, 182, 92, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-item .value {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

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