/* ----------------------------------------
   CSS Variables
   ---------------------------------------- */
:root {
  --color-primary: #202020;
  --color-secondary: #434343;
  --color-light: #fff;
  --color-cream: #fff2e3;
  --color-gray: #766f67;
  --color-gray-light: #c1bebb;
  --color-gold: #ceaf69;
  /* --color-gray-border: rgba(32, 32, 32, 0.302); */
  /* --color-error: #fd9497; */

  --font-family: 'Hanken Grotesk', sans-serif;

  --container-max-width: 1720px;
  --container-padding: 7.2rem;
  --container-padding-mobile: 1.6rem;

  --header-height: 9rem;
  --header-height-mobile: 8.5rem;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.6s ease-in-out;
}

/* ----------------------------------------
   Reset & Base
   ---------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-light);
  background-color: var(--color-primary);
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  display: block;
  width: 100%;
}

/* ----------------------------------------
   Container
   ---------------------------------------- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 991px) {
  .container {
    padding: 0 var(--container-padding-mobile);
  }
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.3rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-medium);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: 0;
  visibility: hidden;
  transition: transform var(--transition-slow);
  transform: translateX(0);
}

.btn:hover::before {
  transform: translateX(100%);
  visibility: visible;
}

/* Light Theme Buttons */
.btn--light.btn--primary {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.btn--light.btn--primary::before {
  background-color: var(--color-cream);
}

.btn--light.btn--secondary {
  background-color: transparent;
  color: var(--color-light);
  border: 1.5px solid var(--color-light);
}

.btn--light.btn--secondary::before {
  background-color: var(--color-light);
}

.btn--light.btn--secondary:hover {
  color: var(--color-primary);
}

/* Dark Theme Buttons */
.btn--dark.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn--dark.btn--primary::before {
  background-color: var(--color-secondary);
}

.btn--dark.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn--dark.btn--secondary::before {
  background-color: var(--color-primary);
}

.btn--dark.btn--secondary:hover {
  color: var(--color-light);
}

/* Disabled Button */
.btn:disabled,
.btn.booking__btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Small Button */
@media (max-width: 767px) {
  .btn {
    padding: 1.2rem 2rem;
    /*
    font-size: 1.4rem;
    mi piace di più un pochino più grande
    */
    font-size: 1.8rem;
  }
}

/* Icon Button */
.icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2rem;
  user-select: none;
}

.icon-btn svg {
  width: 4rem;
  height: 4rem;
}

.icon-btn span {
  position: relative;
}

.icon-btn span::after {
  content: "";
  position: absolute;
  bottom: -0.05rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-light);
  transition: all var(--transition-slow);
}

.icon-btn:hover span::after {
  width: 100%;
}

@media (max-width: 767px) {
  .icon-btn span {
    display: none;
  }
}

/* ----------------------------------------
   Header
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background-color: transparent;
  color: var(--color-primary);
  transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
  max-width: 1920px;
  margin: 0 auto;
}

.header.scrolled {
  background-color: var(--color-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .header__logo svg {
  color: var(--color-primary);
}

.header__layout {
  height: var(--header-height);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 991px) {
  .header__layout {
    height: var(--header-height-mobile);
    justify-content: space-between;
  }
}

.header__logo {
  display: block;
}

.header__logo svg {
  display: block;
  width: 9.1rem;
  height: 6.2rem;
  color: var(--color-light);
  transition: color var(--transition-medium);
}

@media (max-width: 991px) {
  .header__logo svg {
    width: 8.9rem;
    height: 6.3rem;
  }
}

.header__btn {
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .header__btn {
    position: static;
  }

  .header__btn span {
    display: none;
  }
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: var(--color-light);
}

@media (max-width: 767px) {
  .hero {
    height: 85svh;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #202020 2.26%,
    rgba(32, 32, 32, 0) 39.25%,
    #202020 88.06%
  );
  z-index: 1;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  object-fit: cover;
}

.hero__video--desktop {
  display: block;
}

/* .hero__video--mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero__video--desktop {
    display: none;
  }

  .hero__video--mobile {
    display: block;
  }
} */

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__content {
    top: auto;
    bottom: -13rem;
    /* left: 2rem; */
    /* transform: none; */
    align-items: flex-start;
    text-align: left;
  }
}

.hero__title {
  width: 75rem;
}

.hero__title img {
  width: 100%;
  height: auto;
}

@media (max-width: 1220px) {
  .hero__title {
    max-width: 40rem;
  }
}

@media (max-width: 767px) {
  .hero__title {
    width: 28rem;
    max-width: none;
  }
}

/* .hero__title img {
  font-size: 10rem;
  font-weight: 300;
  line-height: 1;
} */

/* .hero__title img strong {
  font-weight: 700;
} */

/* @media (max-width: 991px) {
  .hero__title h1 {
    font-size: 5.6rem;
  }
} */

/* @media (max-width: 767px) {
  .hero__title h1 {
    font-size: 4.8rem;
    line-height: 1.1;
  }
} */

.hero__buttons {
  display: flex;
  gap: 4rem;
}

@media (max-width: 767px) {
  .hero__scroll-btn {
    display: none;
  }
}

/* ----------------------------------------
   Text Block
   ---------------------------------------- */
.text-block {
  background-color: var(--color-primary);
  padding: 6rem 0;
  color: var(--color-light);
}

@media (max-width: 767px) {
  .text-block {
    padding: 4rem 0 2rem;
  }
}

.text-block__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.text-block__label {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 400;
}

.text-block__description {
  font-size: 4.8rem;
  font-weight: 300;
  width: calc(100% - 15rem);
  max-width: 75rem;
  line-height: 1.1;
}

.text-block__description strong {
  font-weight: 700;
}

@media (max-width: 991px) {
  .text-block__description {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .text-block__description {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

.text-block__cta {
  width: 100%;
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}

.text-block__cta .btn {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .text-block__cta {
    display: none;
  }
}

/* ----------------------------------------
   Experience Section
   ---------------------------------------- */
.experience {
  padding: 8rem 0 5.6rem;
}

@media (max-width: 767px) {
  .experience {
    padding: 4rem 0;
  }
}

.experience__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .experience__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
  }
}

.experience__title {
  font-size: 7.8rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.experience__title strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .experience__title {
    font-size: 4.8rem;
  }
}

.experience__description {
  margin-top: 2.4rem;
  font-size: 2rem;
  color: var(--color-light);
}

@media (max-width: 991px) {
  .experience__description {
    margin-top: 1rem;
  }
}

/* ----------------------------------------
   Book
   ---------------------------------------- */
.book {
  background: var(--color-gold);
  padding: 1rem;
  position: relative;
}

.book__title-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.book__title {
  color: var(--color-primary);
  font-size: 4.8rem;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 767px) {
  .book__title {
    font-size: 2.4rem;
  }
}

/* ----------------------------------------
   Booking Section
   ---------------------------------------- */
.booking {
  background: var(--color-primary);
  padding: 4rem 0;
  position: relative;
}

/* Step Bar */
.step-bar {
  display: flex;
  padding-bottom: 0.9rem;
  max-width: 67.8rem;
  margin: 4rem auto auto;
}

.step-bar__item {
  flex: 1 0;
  position: relative;
  display: block;
  margin: 0 auto;
}

.step-bar__item:not(:first-child)::before,
.step-bar__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.8rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.502);
}

.step-bar__item:not(:first-child)::before {
  left: 0;
  right: calc(50% + 2.4rem);
}

.step-bar__item:not(:last-child)::after {
  right: 0;
  left: calc(50% + 2.4rem);
}

.step-bar__dot {
  display: block;
  margin: 0 auto;
  width: 3.6rem;
  height: 3.6rem;
  font-size: 2rem;
  line-height: 3.6rem;
  font-weight: 700;
  text-align: center;
}

.step-bar__label {
  display: block;
  margin: 0.8rem auto 0;
  color: var(--color-light);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}

.step-bar__item--active .step-bar__dot {
  background: var(--color-light);
  color: var(--color-primary);
}

.step-bar__item--future .step-bar__dot {
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.302);
  color: var(--color-light);
}

.step-bar__item--completed .step-bar__dot {
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 0;
}

.step-bar__item--completed .step-bar__dot::after {
  content: "✓";
  font-size: 1.6rem;
  font-weight: 700;
}

/* Booking Step 1 */
.booking__step1 {
  margin-top: 1.6rem;
  display: flex;
  height: 45rem;
}

@media (max-width: 767px) {
  .booking__step1 {
    flex-direction: column;
    /* da mobile ora che ne ho solo uno lo faccio più piccolo, altrim lascio come desktop */
    height: 25rem;
  }
}

.booking__option {
  flex: 3 1;
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: flex var(--transition-fast), height var(--transition-fast);
  overflow: hidden;
}

@media (max-width: 767px) {
  .booking__option {
    height: 30%;
  }
}

.booking__option img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: clip-path var(--transition-fast);
}

@media (min-width: 768px) {
  .booking__option img {
    height: 120%;
    object-position: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
}

.booking__option:not(.booking__option--selected)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), #202020);
  z-index: 2;
  pointer-events: none;
}

.booking__option--selected {
  border: 2px solid var(--color-gray);
  flex: 6 1;
}

@media (max-width: 767px) {
  .booking__option--selected {
    height: 50%;
  }
}

.booking__option--selected::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 47.08%, rgba(32, 32, 32, 0.9) 93.55%);
  z-index: 2;
  pointer-events: none;
}

.booking__radio {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem 1.6rem;
  display: flex;
  color: var(--color-light);
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.booking__radio svg {
  width: 3.2rem;
  height: 3.2rem;
}

/* Booking Step 2 - Calendar */
.booking__step2 {
  margin-top: 1.6rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.calendar {
  background: transparent;
  max-width: 38rem;
  width: 100%;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.2rem;
  margin-bottom: 1.6rem;
}

.calendar__title{
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 1.6rem;
}

.calendar__month {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-light);
  text-transform: capitalize;
  pointer-events: none;
}

.calendar__nav {
  background: transparent;
  border: none;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-light);
  transition: opacity var(--transition-fast);
}

.calendar__nav:hover {
  opacity: 0.7;
}

.calendar__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar__nav svg {
  width: 3.2rem;
  height: 3.2rem;
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}

.calendar__weekdays span {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #c1bebb;
  padding: 0.5rem;
  text-transform: capitalize;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar__day {
  padding: 1rem 0.67rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-light);
  background: transparent;
  border: none;
}

.calendar__day span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.calendar__day:hover:not(.calendar__day--disabled):not(.calendar__day--empty) span {
  background: rgba(255, 255, 255, 0.15);
}

.calendar__day--today span {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.calendar__day--selected span {
  background: #fff !important;
  border: 1px solid #fff;
  color: #202020 !important;
  font-weight: 600;
}

.calendar__day--disabled {
  color: #757575;
  cursor: not-allowed;
}

/* .calendar__day--disabled.calendar__day--other-month {
  color: #cdcdcd;
} */

.calendar__day--empty {
  cursor: default;
}

/* Timeslots */
.timeslots {
  max-width: 28rem;
  width: 100%;
}

.timeslots__title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 0;
  /* margin-bottom: 1.6rem; */
}

.timeslots__localtime {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-light);
  margin-bottom: 1.6rem;
}

.timeslots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.timeslot {
  padding: 1rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  color: var(--color-light);
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.timeslot:hover:not(.timeslot--disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.timeslot--selected {
  background: #fff!important;
  border-color: #fff!important;
  color: #202020;
  font-weight: 600;
}

.timeslot--disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Booking Step 3 - Contact Form */
.booking__step3 {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 60rem;
  width: 100%;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.contact-form__input,
.contact-form__textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.4rem 1.6rem;
  font-size: 1.4rem;
  color: var(--color-light);
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-form__input--error {
  border-color: #e74c3c;
}

.contact-form__input--valid {
  border-color: #27ae60;
}

.contact-form__error {
  display: none;
  font-size: 1.2rem;
  color: #e74c3c;
  margin-top: 0.5rem;
}

.contact-form__error--visible {
  display: block;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.6rem center;
  padding-right: 4rem;
  cursor: pointer;
}

.contact-form__select option {
  background: #1a1a1a;
  color: var(--color-light);
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--color-light);
  cursor: pointer;
}

.contact-form__checkbox input {
  display: none;
}

.contact-form__checkmark {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.contact-form__checkbox input:checked + .contact-form__checkmark {
  background: #fff;
  border-color: #fff;
}

.contact-form__checkbox input:checked + .contact-form__checkmark::after {
  content: "✓";
  color: #202020;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-form__checkbox a {
  color: var(--color-light);
  text-decoration: underline;
}

.contact-form__checkbox a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* Booking Step 4 - Summary */
.booking__step4 {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.summary {
  text-align: center;
  max-width: 50rem;
  width: 100%;
}

.summary__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 0.8rem;
}

.summary__subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.summary__details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.4rem;
  text-align: left;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary__row:last-child {
  border-bottom: none;
}

.summary__row--notes {
  flex-direction: column;
  gap: 0.5rem;
}

.summary__label {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.summary__value {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.summary__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.summary__map-link:hover {
  color: var(--color-light);
}

/* Booking Step 5 - Confirmation */
.booking__step5 {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.confirmation {
  text-align: center;
  max-width: 50rem;
  width: 100%;
}

.confirmation__icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  color: #4CAF50;
}

.confirmation__icon svg {
  width: 100%;
  height: 100%;
}

.confirmation__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 0.8rem;
}

.confirmation__subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.confirmation__details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.4rem;
  margin-bottom: 2rem;
  text-align: left;
}

.confirmation__row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmation__row:last-child {
  border-bottom: none;
}

.confirmation__label {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.confirmation__value {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-light);
}

.confirmation__note {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Booking buttons */
.booking__buttons {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.booking__buttons > * {
  text-transform: uppercase;
}

.booking__back-btn {
  opacity: 0.8;
}

.booking__back-btn:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .booking__step2 {
    flex-direction: column;
    align-items: center;
  }

  .calendar {
    max-width: 100%;
  }

  .timeslots {
    max-width: 100%;
  }

  .timeslots__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.booking__radio-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.booking__radio-desc {
  font-size: 1.4rem;
  margin-top: 0.4rem;
  font-weight: 400;
  line-height: 1.4;
}

.booking__radio-icon--selected {
  display: block;
}

.booking__option:not(.booking__option--selected) .booking__radio-icon--selected {
  display: none;
}

.booking__option:not(.booking__option--selected) .booking__radio-icon:not(.booking__radio-icon--selected) {
  display: block;
}

.booking__option--selected .booking__radio-icon:not(.booking__radio-icon--selected) {
  display: none;
}

/* WhatsApp Button */
.whatsapp-btn {
  z-index: 3;
  width: 4.8rem;
  height: 4.8rem;
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
}

.whatsapp-btn svg {
  width: 100%;
  height: 100%;
}

/* ----------------------------------------
   Gallery Section (Image Slider)
   ---------------------------------------- */
.gallery {
  padding-top: 8rem;
  padding-bottom: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.gallery__title {
  max-width: 95rem;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.1;
}

.gallery__title strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .gallery__title {
    font-size: 3.2rem;
    text-align: center;
  }
}

.gallery__description {
  font-size: 2rem;
  margin-top: 1.6rem;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .gallery__description {
    margin-top: 2.4rem;
    text-align: center;
  }
}

.gallery__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gallery__track-wrapper {
  flex: 1;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
}

.gallery__slide {
  flex: 0 0 calc(25% - 1.5rem);
  /* aspect-ratio: 1; */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.8rem;
}

@media (max-width: 1200px) {
  .gallery__slide {
    flex: 0 0 calc(33.333% - 1.34rem);
  }
}

@media (max-width: 991px) {
  .gallery__slide {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .gallery__slide {
    flex: 0 0 100%;
  }
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__slide:hover img {
  transform: scale(1.05);
}

.gallery__nav {
  flex-shrink: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.gallery__nav:hover {
  background-color: var(--color-secondary);
}

.gallery__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery__nav svg {
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width: 767px) {
  .gallery__slider {
    position: relative;
  }

  .gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.6rem;
    height: 3.6rem;
    background-color: rgba(32, 32, 32, 0.7);
  }

  .gallery__nav:hover {
    background-color: rgba(32, 32, 32, 0.9);
  }

  .gallery__nav--prev {
    left: 1rem;
  }

  .gallery__nav--next {
    right: 1rem;
  }

  .gallery__nav svg {
    width: 2rem;
    height: 2rem;
  }

  .gallery__track-wrapper {
    width: 100%;
  }
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery__dot:hover {
  background-color: var(--color-gray);
}

.gallery__dot--active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* ----------------------------------------
   My Mancini Decoration
   ---------------------------------------- */
.mymancini-decoration {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .mymancini-decoration {
    margin-top: 6.4rem;
  }
}

.mymancini-decoration svg {
  width: 100%;
  height: auto;
  margin-bottom: -0.7rem;
  color: var(--color-primary);
}

/* ----------------------------------------
   CHI SIAMO Section
   ---------------------------------------- */
.chi_siamo {
  padding: 6rem 0;
}

@media (max-width: 767px) {
  .chi_siamo {
    padding: 4rem 0;
  }
}

.chi_siamo__content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.chi_siamo__content2{
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .chi_siamo__content > * {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .chi_siamo__text {
    width: 100%;
    text-align: center;
  }

  .chi_siamo__text.mobile1 {
    order: -1;
    margin-top: 1.6rem;
  }
}

.chi_siamo__title {
  font-size: 7.8rem;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .chi_siamo__title {
    font-size: 4.8rem;
    text-align: center;
  }
}

.chi_siamo__description {
  margin-top: 2.4rem;
  font-size: 2rem;
  color: var(--color-light);
}

@media (max-width: 991px) {
  .chi_siamo__description {
    margin-top: 1rem;
  }
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  padding: 5rem 9rem;
  background: var(--color-primary);
}

@media (max-width: 767px) {
  .footer {
    padding: 4rem 2rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.footer__text {
  font-size: 2rem;
  color: var(--color-light);
  text-align: center;
}

.footer__social {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  align-items: center;
  margin-top: 1.6rem;
  background: var(--color-gold);
}

.footer__social > * {
  color: var(--color-primary);
}

.footer__title {
  font-size: 4.8rem;
  text-transform: uppercase;
  color: var(--color-primary);
}


@media (max-width: 767px) {
  .footer__title {
    font-size: 4.8rem;
  }
}

.footer__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}

.footer__icons a img {
  width: 4rem;
  /* height: 4rem; */
}