@import url('https://fonts.googleapis.com/css?family=Inter:regular,600,700&display=swap');

@font-face {
  font-family: 'SuisseIntl';
  src: url('../fonts/SuisseIntl-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntlLight';
  src: url('../fonts/SuisseIntl-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntlMedium';
  src: url('../fonts/SuisseIntl-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntlSemibold';
  src: url('../fonts/SuisseIntl-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntlBold';
  src: url('../fonts/SuisseIntl-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SuisseIntlBook';
  src: url('../fonts/SuisseIntl-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url('../fonts/HelveticaNeueRoman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaNeueBold';
  src: url('../fonts/HelveticaNeueBold.woff2') format('woff2');
  font-weight: 7 00;
  font-style: normal;
  font-display: swap;
}

:root {
  --height-sections: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: SuisseIntl, sans-serif;
  font-weight: 400;
  color: white;
  scroll-behavior: smooth;
}

/* Utilities */
.flex-between {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.flex-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hidden {
  display: none !important;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

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

.col-w50 {
  width: 50%;
}
.between {
  display: flex;
  justify-content: space-between;
}

/* Text */
.description {
  font-size: 0.75rem; /* text-sm */
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.025em;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .description {
    font-size: 0.65rem; /* text-base */
  }
}

/* Buttons Container */
.buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

/* Button Styles */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-family: 'SuisseIntl', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  border: none;
  color: white;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  height: 44px;
}

@media (min-width: 768px) {
  .btn {
    font-size: 0.875rem;
  }
}

/* .btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
}
 */
/* Button Variants */
.btn-filled-cercle {
  background-color: rgba(149, 108, 59, 0.5);
  backdrop-filter: blur(12px);
}

.btn-filled-cercle:hover {
  /* background-color: rgba(149, 108, 59, 0.7); */
  background-color: #462c11;
}

.btn-filled-salles {
  background-color: rgba(100, 0, 10, 0.6);
  backdrop-filter: blur(12px);
}

.btn-filled-salles:hover {
  color: #a11528;
  background-color: rgba(255, 255, 255, 1);
}
.btn-filled-black {
  color: white;
  background-color: black;
}

.btn-filled-black:hover {
  color: black;
  background-color: white;
}

.btn-outline,
.btn-outline-red {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 200px;
}

.btn-outline:hover {
  color: #956c3b;
  background-color: rgba(255, 255, 255, 1);
}

.btn-outline-red:hover,
.btn-outline-red.active {
  color: #a11528;
  background-color: rgba(255, 255, 255, 1);
}

.btn-outline-red.active:not(.active) svg {
  transform: rotate(180deg);
}

.btn-outline-sales {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 1);
  min-width: 200px;
}

.btn-outline-sales:hover {
  color: #a11528;
  background-color: rgba(255, 255, 255, 1);
}

.btn-filled-gold {
  background-color: rgba(149, 108, 59, 1);
  min-width: 210px;
}

.btn-filled-gold:hover {
  background-color: #462c11;
  /* background-color: rgba(149, 108, 59, 0.8); */
}

.btn-filled-white {
  background-color: #fff;
  color: #956c3b;
}

.btn-filled-white:hover {
  background-color: #462c11;
  color: #fff;
}

.btn-filled-white-red {
  background-color: #fff;
  color: #a11528;
}

.btn-filled-white-red:hover {
  background-color: #a11528;
  color: #fff;
}

.btn-filled-red {
  background-color: #a11528;
}

.btn-filled-red:hover {
  color: #a11528;
  background-color: rgba(255, 255, 255, 1);
}

.btn-center {
  margin: 0 auto;
}

/* Icon Animation */
.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-submit {
  margin-bottom: 12px;
}

@media (max-width: 375px) {
  .btn-long span {
    max-width: 150px;
  }
}

.btn:disabled {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
  color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
  border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
}

/* #region Radio buttons */
/*  Example
  <label for="salle1">  
    <input type="radio" id="salle1" role="radio" name="salle">
    <span> Radio 1 </span>
  </label>
  <label class="option">
    <input type="checkbox" id="isCateringNeeded" role="checkbox" name="option-1" value="Service traiteur">
    <span> Service traiteur </span>
  </label>
*/
label:has([role='radio']),
label.option:has([role='checkbox']) {
  display: inline-flex;
  height: 44px;
  padding: 15px 16px 15px 5px;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'SuisseIntl', san-serif;
  font-weight: 450;
  font-size: 14px;
  transition: background-color 100ms ease-in-out;
  cursor: pointer;
}

[role='radio'],
label.option [role='checkbox'] {
  --radio-height: 35px;
  --radio-width: 35px;

  appearance: none;
  height: var(--radio-height);
  width: var(--radio-width);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 100ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(149, 108, 59, 0);
}

[role='radio']::after,
label.option [role='checkbox']::after {
  content: '';
  display: block;
  aspect-ratio: 1;
  height: 100%;
  /* 	border-radius: 50%; */
}

[role='radio']:checked,
label.option [role='checkbox'] {
  background-color: rgba(255, 255, 255, 0.2);
}

label.option [role='checkbox']:checked {
  background-color: rgba(161, 21, 40, 1);
  border: 5px solid rgba(0, 0, 0, 0.5);
}

label:has([role='radio']:checked),
label.option:has([role='checkbox']:checked) {
  background-color: #a11528;
}

/* disabled */
label:has([role='radio']:disabled),
label.option:has([role='checkbox']:disabled) {
  background-color: rgba(198, 198, 198, 0.5);
  color: rgba(198, 198, 198, 0.5);
}

[role='radio']:disabled,
label.option [role='checkbox']:disabled {
  background-color: rgba(198, 198, 198, 0.5);
}
/* if ocured error on validation */

/* label:has([role='radio']:invalid) {
  background-color: rgba(224, 0, 24, 0.25);
  color: rgba(224, 0, 24, 0.25);
}

[role='radio']:invalid {
  background-color: rgba(224, 0, 24, 0.25);
  border: 1px solid rgba(224, 0, 24, 0.25);
}
 */
/* #endregion Radio buttons */

/* #region Checkbox */
/*  Example
  <label>
    <input type="checkbox" id="option-1" role="checkbox" name="option-1" value="Service traiteur" />
    <span>
      Service traiteur
    </span>
  </label>
*/
/*
label:has([role='checkbox']) {
  display: inline-flex;
  height: 44px;
  padding: 15px 16px 15px 10px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-family: 'SuisseIntl', san-serif;
  font-weight: 450;
  font-size: 14px;
  transition: background-color 100ms ease-in-out;
}

[role='checkbox'] {
  --checkbox-height: 35px;
  --checkbox-width: 35px;

  appearance: none;
  height: var(--checkbox-height);
  width: var(--checkbox-width);
  border-radius: 6px;
  display: inline-block;
  transition: background-color 100ms ease-in-out;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(149, 108, 59, 0);
}

[role='checkbox']:checked {
  background-color: #a11528;
  border: 5px solid rgba(0, 0, 0, 0.5);
}

label:has([role='checkbox']:checked) {
  background-color: #a11528;
}

label:has([role='checkbox']:disabled) {
  background-color: rgba(198, 198, 198, 0.5);
  color: rgba(198, 198, 198, 0.5);
}

[role='checkbox']:disabled {
  background-color: rgba(198, 198, 198, 0.5);
}
*/
/* #endregion Checkbox */

/* #region Select */

.select {
  display: flex;
  align-items: center;
  position: relative;

  min-width: 185px;

  height: 47px;

  border-radius: 25px;
  background: rgba(0, 0, 0, 0.5);
  padding: 11px 23px;
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  width: 100%;
  /* padding: 0 1em 0 0; */

  cursor: pointer;

  color: #fff;

  text-align: left;
  font-family: 'SuisseIntl', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.38px;

  z-index: 1;

  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' transform='rotate(90 8 8)' fill='%23A11528'/%3E%3Cpath d='M11.0972 6.54394L11.7029 7.15023L8.40179 10.4525C8.34889 10.5057 8.28599 10.548 8.21671 10.5768C8.14742 10.6056 8.07312 10.6205 7.99808 10.6205C7.92303 10.6205 7.84873 10.6056 7.77944 10.5768C7.71016 10.548 7.64726 10.5057 7.59436 10.4525L4.2915 7.15023L4.89722 6.54451L7.99722 9.64394L11.0972 6.54394Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right center;
}

option {
  color: black;
}

/* Theme for select*/
@media (prefers-color-scheme: dark) {
  option {
    background-color: #333;
    color: #fff;
  }
}
@media (prefers-color-scheme: light) {
  option {
    background-color: #fff;
    color: #000;
  }
}

/* #endregion Select */

/* #region Date picker */
.air-datepicker.-inline- {
  --adp-border-color-inline: rgba(0, 0, 0, 0.5);
  --adp-background-color: rgba(0, 0, 0, 0.5);
  --adp-border-color: transparent;
  --adp-font-family: 'SuisseIntl', sans-serif;
  --adp-font-size: 12px;
  --adp-border-radius: 25px;
  --adp-day-name-color: #a11528;
  --adp-color-other-month: #a11528;
  --adp-color-other-month-hover: #a11528;
  --adp-cell-background-color-selected: #a11528;
  --adp-color-current-date: #a11528;
  --adp-cell-border-radius: 25px;
  --adp-cell-background-color-selected-hover: #fff;
  line-height: 30px;
  letter-spacing: 0.38px;
  min-width: 384px;
}
.air-datepicker-body--day-name {
  font-size: 12px;
}
.air-datepicker-cell {
  color: #fff;
}
.air-datepicker-cell.-focus- {
  color: #a11528;
}
.air-datepicker-cell.-selected-.-focus- {
  color: #a11528;
}
.air-datepicker-cell.-selected-.-current-.-focus- {
  color: #a11528;
}
.air-datepicker-nav--action svg {
  width: 16px;
  height: 16px;
}
.air-datepicker-nav--action:hover {
  background: transparent;
}
.air-datepicker-nav--action:hover svg circle {
  fill: #fff;
}

.air-datepicker-nav--title,
.air-datepicker-nav--title i {
  color: #fff;
}
.air-datepicker-nav--title:hover,
.air-datepicker-nav--title:hover i {
  color: #a11528;
}
/* #endregion Date picker */

/* #region Modals */
#modal-success,
#modal-error {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#modal-success.modal-active,
#modal-error.modal-active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  /* background: rgba(20, 20, 20, 0.95); */
  display: none;
  background: rgba(149, 108, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

#modal-success.modal-active .modal,
#modal-error.modal-active .modal {
  transform: translateY(0);
  display: block;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-close i {
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: white;
  display: block;
}

.modal-close i:nth-child(1) {
  transform: rotate(45deg);
}

.modal-close i:nth-child(2) {
  transform: rotate(-45deg);
}

.modal-title {
  font-family: 'SuisseIntlMedium', sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
}

.modal-subtitle {
  font-family: 'SuisseIntl', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 30px;
}

.modal-text {
  font-family: 'SuisseIntl', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.modal-footer {
  display: flex;
  justify-content: center;
}

.modal-footer .btn {
  min-width: 120px;
  justify-content: center;
  margin: 0;
}
/* #endregion Modals */
