* {margin: 0;
  padding: 0;
  box-sizing: border-box;}
body {font-family: 'Archivo', sans-serif;}


/* ================================================================================================================== */
/* NAVBAR PRINCIPAL ===== NAVBAR PRINCIPAL ===== NAVBAR PRINCIPAL ===== NAVBAR PRINCIPAL ===== NAVBAR PRINCIPAL ===== */
/* ================================================================================================================== */


.navbar {position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, rgba(0, 0, 17, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;}

.navbar__inner {display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;}

.glass-panel {width: 600px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;}

.nav-links {list-style: none;
  display: flex;
  align-items: center;
  gap: 90px;}

.nav-links a {font-family: 'Archivo', sans-serif;
  font-weight: 200;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: opacity 0.3s ease;}

.nav-links a:hover {opacity: 0.7;}

.crown {width: 83px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: -10px;}

.crown__img {width: 83px;
  height: auto;
  display: block;}


/* ======================================================================================================================= */
/* ===== HERO SECTION ===== HERO SECTION ===== HERO SECTION ===== HERO SECTION ===== HERO SECTION ===== HERO SECTION ===== */
/* ======================================================================================================================= */


.hero {position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;}

.hero__bg {position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1a1a1a;}
.hero__slide {position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 12000ms infinite;}

.slide1 {animation-delay: 0ms;}
.slide2 {animation-delay: 4000ms;}
.slide3 {animation-delay: 8000ms;}

@keyframes slideShow {0% {opacity: 0;}
  12% {opacity: 1;}
  33% {opacity: 1;}
  45% {opacity: 0;}
  100% {opacity: 0;}}

.hero::before {content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;}

.hero__content {position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 175px;
  max-width: 800px;}

.hero__logo {width: 541px;
  height: auto;
  margin-bottom: 48px;}

.hero__title {font-family: 'Cormorant SC', serif;
  font-weight: 200;
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 17px;}

.hero__text {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 34px;}

.hero__btn {width: 240px;
  height: 50px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  text-transform: uppercase;
  text-decoration: none;
  border: 0.5px solid #FFF0D5;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFBB3F 0%, #C08D2F 100%);
  box-shadow: -2px 3px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;}

.hero__btn:hover {transform: translateY(-2px);
  box-shadow: -2px 5px 4px rgba(0, 0, 0, 0.25);}

  
/* ======================================================================================================================== */
/* ===== SECTION À PROPOS ===== SECTION À PROPOS ===== SECTION À PROPOS ===== SECTION À PROPOS ===== SECTION À PROPOS ===== */
/* ======================================================================================================================== */


.about {position: relative;
  width: 100%;
  height: 800px;
  padding: 30px;
  overflow: hidden;}

.about__content {position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;}

.about__bg {position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;}

.about__text {position: relative;
  z-index: 1;
  flex: 1;
  max-width: 100%;}

.about__subtitle {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 28px;
  color: #4a4a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;}

.about__title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 70px;
  color: #3a3a2a;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;}

.about__paragraph {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 18px;
  max-width: 750px;
  line-height: 28px;
  color: #4a4a4a;
  margin-bottom: 24px;
  text-align: justify;}

.about__paragraph:last-child {margin-bottom: 0;}

.about__image-wrapper {position: relative;
  z-index: 1;
  flex: 1;
  max-width: 793px;
  display: flex;
  justify-content: flex-end;}

.about__image {width: 650px;
  height: 420px;
  object-fit: cover;
  margin-bottom: -30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);}


/* ======================================================================================================================= */
/* ===== SECTION LIUX ===== SECTION LIUX ===== SECTION LIUX ===== SECTION LIUX ===== SECTION LIUX ===== SECTION LIUX ===== */
/* ======================================================================================================================= */


.lieux {position: relative;
  width: 100%;
  height: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e5ded9;}

.lieux__header {display: flex;
  flex-direction: column;
  align-items: center;}

.lieux__ornament {margin-bottom: 10px;
width: 268px;}

.lieux__title-row {display: flex;
  align-items: center;
  gap: 21px;}

.lieux__title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 50px;
  color: #4a4a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;}

.lieux__radio {display: none;} 

.lieux__carousel {position: relative;
  width: 100%;
  height: 516px;
  margin-top: 50px;
  overflow: hidden;}

.lieux__track {display: flex;
  height: 100%;
  width: 600%;
  border-radius: 0;
  transition: transform 700ms ease;
  gap: 0;
  align-items: center;}

.lieux__card {flex-shrink: 0;
  width: 100vw;
  height: 466px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  box-shadow: none;
  border: none;}

.lieux__card-img, 
.lieux__card-content {height: 100%;}

.lieux__card {display: flex;
  justify-content: center;
  position: relative;}

.lieux__card::before {content: "";
  position: absolute;
  width: 1500px;
  height: 466px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: -1;}

.lieux__card-img {width: 750px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: cover;}

.lieux__card-content {width: 750px;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;}

.lieux__card-title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 40px;
  color: #3a3a2a;
  text-transform: uppercase;
  margin-bottom: 20px;}

.lieux__card-text {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #4a4a4a;
  margin-bottom: 24px;}

.lieux__card-info {list-style: none;}

.lieux__card-info li {display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #4a4a4a;}

.Address_icon,
.Time_icon,
.Website_icon {width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) opacity(0.7);}

#lieux-slide1:checked ~ .lieux__carousel .lieux__track { transform: translateX(0); }
#lieux-slide2:checked ~ .lieux__carousel .lieux__track { transform: translateX(calc(-100% / 6)); }
#lieux-slide3:checked ~ .lieux__carousel .lieux__track { transform: translateX(calc(-100% / 6 * 2)); }
#lieux-slide4:checked ~ .lieux__carousel .lieux__track { transform: translateX(calc(-100% / 6 * 3)); }
#lieux-slide5:checked ~ .lieux__carousel .lieux__track { transform: translateX(calc(-100% / 6 * 4)); }
#lieux-slide6:checked ~ .lieux__carousel .lieux__track { transform: translateX(calc(-100% / 6 * 5)); }

.lieux__dots {display: flex;
  gap: 35px;
  margin-top: 30px;}

.lieux__dot {width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;}

#lieux-slide1:checked ~ .lieux__dots .lieux__dot:nth-child(1),
#lieux-slide2:checked ~ .lieux__dots .lieux__dot:nth-child(2),
#lieux-slide3:checked ~ .lieux__dots .lieux__dot:nth-child(3),
#lieux-slide4:checked ~ .lieux__dots .lieux__dot:nth-child(4),
#lieux-slide5:checked ~ .lieux__dots .lieux__dot:nth-child(5),
#lieux-slide6:checked ~ .lieux__dots .lieux__dot:nth-child(6) {
  background-color: #8a8272;}


/* ===================================================================================================================== */
/* ===== SECTION / RESTAURANTS ===== SECTION / RESTAURANTS ===== SECTION / RESTAURANTS ===== SECTION / RESTAURANTS ===== */
/* ===================================================================================================================== */

.restaurants {position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  background-size: cover;
  background-position: bottom center;}

.restaurants__bg {position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: bottom center;}

.restaurants__header {position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 125px}

.restaurants__ornament {margin-bottom: 10px;
  width:268px;}

.restaurants__title-row {display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 161px;
  align-items: center;
  justify-content: center;
  gap: 31px}

.lieux__title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 50px;
  color: #4a4a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;}

.lieux__title-row {display: flex;
  justify-content: center;
  gap: 21px;}

.restaurants__title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 50px;
  color: #4a4a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;}

.restaurants__subtitle {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  color: #4a4a4a;
  text-align: center;
  margin-top: 20px;
  max-width: 100%;}

.restaurants__radio {display: none;}

.restaurants__carousel {position: relative;
  z-index: 1;
  width: 1609px;
  max-width: 92%;
  height: 640px;
  margin-top: 60px;
  overflow: visible;}

.restaurants__track {display: flex;
  gap: 40px;
  height: 100%;
  transition: transform 700ms ease;}

.restaurants__card {flex-shrink: 0;
  width: 420px;
  height: 650px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f1ecea 0%, #ffffff 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #ffffff;
  transition: transform 300ms ease;}

.restaurants__card:hover {transform: scale(1.05);}

.restaurants__card-img {width: 100%;
  height: 248px;
  object-fit: cover;}

.restaurants__card-content {padding: 30px 30px;
  display: flex;
  flex-direction: column;}

.restaurants__card-title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  color: #3a3a2a;
  text-transform: uppercase;}

.restaurants__card-divider {display: block;
  width: 200px;
  margin: 8px auto 0;
  align-self: center;}

.restaurants__card-text {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 30px;
  color: #4a4a4a;
  margin-top: 10px;}

.restaurants__card-info {list-style: none;
  margin-top: 20px;}

.restaurants__card-info li {display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 28px;
  color: #4a4a4a;}


.Address_icon,
.Time_icon,
.Phone_icon,
.Website_icon {width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) opacity(0.7);}

#restaurants-slide1:checked ~ .restaurants__carousel .restaurants__track { transform: translateX(0); }
#restaurants-slide2:checked ~ .restaurants__carousel .restaurants__track { transform: translateX(-522px); }
#restaurants-slide3:checked ~ .restaurants__carousel .restaurants__track { transform: translateX(-941px); }
#restaurants-slide4:checked ~ .restaurants__carousel .restaurants__track { transform: translateX(-941px); }
#restaurants-slide5:checked ~ .restaurants__carousel .restaurants__track { transform: translateX(-941px); }


.restaurants__arrow {position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #4a4a4a;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;}

.restaurants__arrow:hover {background: rgba(255, 255, 255, 0.3);}

.restaurants__arrow--left { left: -28px; }
.restaurants__arrow--right { right: -28px; }

#restaurants-slide1:checked ~ .restaurants__carousel .restaurants__arrow--for-1,
#restaurants-slide2:checked ~ .restaurants__carousel .restaurants__arrow--for-2,
#restaurants-slide3:checked ~ .restaurants__carousel .restaurants__arrow--for-3,
#restaurants-slide4:checked ~ .restaurants__carousel .restaurants__arrow--for-4,
#restaurants-slide5:checked ~ .restaurants__carousel .restaurants__arrow--for-5
{ opacity: 1; pointer-events: auto; }


/* ===================================================================================================================== */
/* ===== SECTION / BARS ===== SECTION / BARS ===== SECTION / BARS ===== SECTION / BARS ===== */
/* ===================================================================================================================== */


.bars {position: relative;
  width: 100%;
  min-height: 1080;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  background-size: cover;
  background-position: top center;}

.bars__header {position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px}

.bars__ornament {margin-bottom: 10px;
width: 268px;}

.bars__title-row {display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 161px;
  align-items: center;
  justify-content: center;
  gap: 31px}

.bars__title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 50px;
  color: #4a4a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;}

.bars__subtitle {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 34px;
  color: #4a4a4a;
  text-align: center;
  margin-top: 20px;
  max-width: 100%;}

.bars__radio {display: none;}

.bars__carousel {position: relative;
  z-index: 1;
  width: 1609px;
  max-width: 100%;
  height: 640px;
  margin-top: 60px;
  overflow: visible;}

.bars__track {display: flex;
  gap: 60px;
  height: 100%;
  transition: transform 700ms ease;}

.bars__card {flex-shrink: 0;
  width: 420px;
  height: 650px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f1ecea 0%, #ffffff 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #ffffff;
  transition: transform 300ms ease;}

.bars__card:hover {transform: scale(1.05);}

.bars__card-img {width: 100%;
  height: 248px;
  object-fit: cover;}

.bars__card-content {padding: 30px 30px;
  display: flex;
  flex-direction: column;}

.bars__card-title {font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 30px;
  text-align: center;
  color: #3a3a2a;
  text-transform: uppercase;}

.bars__card-divider {display: block;
  width: 200px;
  margin: 8px auto 0;
  align-self: center;}

.bars__card-text {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 30px;
  color: #4a4a4a;
  margin-top: 10px;}

.bars__card-info {list-style: none;
  margin-top: 20px;}

.bars__card-info li {display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 28px;
  color: #4a4a4a;}

.Address_icon,
.Time_icon,
.Phone_icon,
.Website_icon {width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) opacity(0.7);}

#bars-slide1:checked ~ .bars__carousel .bars__track { transform: translateX(0); }
#bars-slide2:checked ~ .bars__carousel .bars__track { transform: translateX(-522px); }
#bars-slide3:checked ~ .bars__carousel .bars__track { transform: translateX(-941px); }
#bars-slide4:checked ~ .bars__carousel .bars__track { transform: translateX(-941px); }
#bars-slide5:checked ~ .bars__carousel .bars__track { transform: translateX(-941px); }


.bars__arrow {position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  color: #4a4a4a;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;}

.bars__arrow:hover {background: rgba(255, 255, 255, 0.3);}

.bars__arrow--left { left: -28px; }
.bars__arrow--right { right: -28px; }

#bars-slide1:checked ~ .bars__carousel .bars__arrow--for-1,
#bars-slide2:checked ~ .bars__carousel .bars__arrow--for-2,
#bars-slide3:checked ~ .bars__carousel .bars__arrow--for-3,
#bars-slide4:checked ~ .bars__carousel .bars__arrow--for-4,
#bars-slide5:checked ~ .bars__carousel .bars__arrow--for-5
{ opacity: 1; pointer-events: auto; }


/* ===================================================================================================================== */
/* ===== FOOTER ===== FOOTER ===== FOOTER ===== FOOTER ===== FOOTER ===== FOOTER ===== FOOTER ===== FOOTER =====          */
/* ===================================================================================================================== */

.footer {position: relative;
  width: 100%;
  overflow: visible;}

.footer__bg {position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  z-index: 0;}

.footer__inner {position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  max-width: 1609px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 100px;}

/* ===== BRAND / LOGO COLUMN ===== */

.footer__brand {
  max-width: 500px;
}

.footer__logo {
  height: 110px;
  margin-bottom: 30px;
}

.footer__tagline {
  font-family: 'Cormorant SC', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer__text {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== NAV COLUMN ===== */

.footer__nav {display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 50px;}

.footer__nav a {font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;}

.footer__nav a:hover {
  opacity: 0.7;
}

/* ===== CONTACT COLUMN ===== */

.footer__heading {font-family: 'Cormorant SC', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  padding-top: 45px;
  margin-bottom: 22px;}

.footer__contact-list {list-style: none;}

.footer__contact-list li {display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.85);}

.footer__icon {width: 16px;
  height: 16px;
  filter: brightness(0) invert(1) opacity(0.85);}

/* ===== NEWSLETTER COLUMN ===== */

.footer__newsletter {max-width: 340px;
  padding-top: -10px;}

.footer__newsletter-text {font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;}

.footer__input {width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #8fd14f;
  background-color: rgba(255, 255, 255, 0.1);
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 26px;}

.footer__input::placeholder {
  color: rgba(255, 255, 255, 0.7);}

.footer__socials {display: flex;
  gap: 18px;}

.footer__social-icon {width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);}


  
/* ============================================================================================================================= */
/* ===== SPLASH SCREEN ===== SPLASH SCREEN ===== SPLASH SCREEN ===== SPLASH SCREEN ===== SPLASH SCREEN ===== SPLASH SCREEN ===== */
/* ============================================================================================================================= */


.splash {position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #0a0f14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1400ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 1400ms cubic-bezier(0.4, 0, 0.2, 1);}

.splash__bg {position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;}

.splash__glow {position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.12) 0%, rgba(10,15,20,0) 65%);
  opacity: 0;
  z-index: 1;
  animation: glowIn 2200ms cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-delay: 600ms;}

@keyframesglowIn {to 
  {opacity: 1;}}

.splash__logo {position: relative;
  z-index: 2;
  width: 400px;
  height: auto;
  transform: scale(0.85);
  opacity: 0;
  filter: blur(6px);
  animation: logoZoom 1800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1600ms;}

@keyframes logoZoom {0% {
    transform: scale(0.85);
    opacity: 0;
    filter: blur(6px);}
  100% {transform: scale(1);
    opacity: 1;
    filter: blur(0px);}}

.splash__btn {position: relative;
  z-index: 2;
  margin-top: 40px;
  width: 200px;
  height: 50px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-transform: uppercase;
  text-decoration: none;
  border: 0.5px solid #FFF0D5;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFBB3F 0%, #C08D2F 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(25px);
  animation: btnFloatUp 1400ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3200ms;
  transition: transform 0.4s ease, box-shadow 0.4s ease;}

@keyframes btnFloatUp {0% {opacity: 0;
    transform: translateY(25px);}
  100% {opacity: 1;
    transform: translateY(0);}}

.splash__btn:hover {transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(192, 141, 47, 0.35);}

#site:target ~ .splash {opacity: 0;
  visibility: hidden;
  pointer-events: none;}