@font-face {
  font-family: 'GeneralSans-Variable';
  src: url('../fonts/GeneralSans-Variable.woff2') format('woff2'),
       url('../fonts/GeneralSans-Variable.woff') format('woff'),
       url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

* {
  font-family: 'GeneralSans-Variable';
  color: white;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: rgba(25, 25, 25, 1);
}

html,body {
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.loading-screen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(33, 33, 33, 1);
}

.circle {
  background-color: rgba(22, 139, 114, 1);
  width: 267px;
  height: 267px;
  position: absolute;
  border-radius: 500px;
  transition: transform 1s ease-in-out;
}

.expand {
  transform: scale(50);
}

.hide {
  opacity: 0;
  transition: opacity 1s;
}

.project-info .disable-button {
  background-color: rgb(148, 148, 148);
  color: rgb(212, 212, 212);
}

.project-info .disable-button:hover {
  background-color: rgb(148, 148, 148);
}

.logo {
  height: 142px;
  width: 142px;
  z-index: 10;
}

.header-mobile {
  display: none;
  z-index: 1000;
}

#mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.4s ease-in-out;
  z-index: 100;
}

#mainHeader.header-hide {
  transform: translateY(-100%);
}


.header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 64px 24px;
  z-index: 1000;
  backdrop-filter: blur(5px);
  background-color: rgba(25, 25, 25, 0.364);
}

.header-nav-links a {
  text-decoration: none;

}

ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.CTA-button,
.booking-button {
  background-color: rgba(61, 158, 137, 1);
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
}

.project-info button:hover,
.CTA-button:hover,
.booking-button:hover {
  background-color: rgba(85, 188, 164, 1);
}

.project-info button:active,
.CTA-button:active,
.booking-button:active {
  background-color: rgba(42, 111, 95, 1);
}


footer {
  margin: 90px 0 31px 64px;
  padding-bottom: 31px;
}

footer div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.mobile-header-light {
  width: 318px;
  height: 318px;
  border-radius: 250px;
  position: absolute;
  top: -30px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  
  filter: blur(100px);
  -webkit-filter: blur(100px);
  background: rgb(22,139,114);
  background: linear-gradient(180deg, rgba(22,139,114,1) 0%, rgba(0, 0, 0, 0) 75%);
}

.mobile-header-light-hide {
  display: none;
}

.hamburger {
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  background: linear-gradient(140deg, rgba(255,255,255,0.47) 0%, rgba(255,255,255,0) 100%);
  cursor: pointer;
  position: relative;
}

.hamburger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/Texture.svg') repeat;
  z-index: 1;
  pointer-events: none;
}

.hamburger::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,0.4) 0%, rgba(70, 70, 70, 0.524) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  z-index: 99;
  transition: background 0.3s ease;
  pointer-events: none;
}

.nav-overlay.active {
  background: rgba(25, 25, 25, 1);
  pointer-events: auto;
}

.nav-card {
  position: absolute;
  transform: translateY(-200%);
  left: 0;
  width: 100%;
  height: 442px;
  background: rgba(18, 116, 95, 1);
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
  will-change: transform;
}

.nav-overlay.active .nav-card {
  transform: translateY(0);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 24px;
  color: white;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgba(138, 197, 184, 1);
}

.nav-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-card ul li {
  margin-bottom: 20px;
}

.nav-card ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.mobile-logo {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%);
  overflow: hidden; /* to contain the ::after grain layer */
}

.mobile-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/Texture.svg') repeat;
  z-index: 1;
  pointer-events: none;
}

.mobile-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.mobile-logo img {
  height: 30px;
  position: relative;
  z-index: 2;
}
