:root {
  --primary-green: #2d4a22;
  --accent-green: #76a04a;
  --text-dark: #1a2a14;
  --text-light: #4a5d42;
  --white: #ffffff;
  --overlay-bg: rgba(255, 255, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  background-color: #fdfaf6;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/bg-wellness.jpg') no-repeat center center/cover;
  z-index: -2;
  animation: subtleZoom 20s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 100%);
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.header-logo {
  animation: fadeInDown 1.2s ease-out;
}

.header-logo img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.hero-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 140px 100px 80px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 1100px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1.5s ease-out;
}

.coming-soon-text {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 25px;
  color: var(--primary-green);
  text-transform: uppercase;
}

.subtext {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0;
  letter-spacing: 0.5px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet / large mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 25px;
  }
  .header-logo img {
    max-width: 170px;
  }
  .hero-content {
    padding: 85px 30px 40px;
    margin: 0 15px;
  }
  .coming-soon-text {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  .subtext {
    font-size: 0.95rem;
  }
}

/* Small phones (375px and under) */
@media (max-width: 375px) {
  .site-header {
    padding: 18px;
  }
  .header-logo img {
    max-width: 140px;
  }
  .hero-content {
    padding: 70px 18px 30px;
    margin: 0 10px;
    border-radius: 20px;
  }
  .coming-soon-text {
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
  .subtext {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .site-header {
    padding: 12px 30px;
  }
  .header-logo img {
    max-width: 100px;
  }
  .hero-section {
    padding: 100px 20px 30px;
    align-items: flex-start;
  }
  .hero-content {
    padding: 20px 60px 30px;
  }
  .coming-soon-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  .subtext {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}