/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  background-color: #f6f2ec;
  color: #2f2f2f;
  line-height: 1.6;
}

/* CONTAINER */
.spa-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAV */
.spa-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  position: relative;
}

.spa-nav-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.spa-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.spa-logo img {
  height: 64px;
  width: auto;
  display: block;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #d6bfa2;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.spa-logo img:hover {
  transform: scale(1.03);
}

/* DESKTOP MENU */
.spa-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.spa-menu li a {
  text-decoration: none;
  color: #2f2f2f;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.spa-menu li a:hover {
  color: #9da88f;
}

.spa-menu li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #d6bfa2;
  transition: width 0.3s ease;
  margin-top: 4px;
}

.spa-menu li a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.spa-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  padding: 0;
}

.spa-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #2f2f2f;
  margin: 6px 0;
  transition: 0.3s ease;
}

/* HERO */
.spa-header {
  min-height: 90vh;
  margin-top: 90px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("https://i.postimg.cc/6qJmZH3L/1-page-mock-spa-imagine.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.spa-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #f6f2ec);
}

.spa-header-content {
  max-width: 700px;
  color: #ffffff;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  position: relative;
  z-index: 2;
}

.spa-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.spa-header p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #f8f4ef;
}

.spa-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #d6bfa2;
  color: #ffffff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.spa-btn:hover {
  background-color: #bfa585;
  transform: translateY(-2px);
}

/* SECTIONS */
.spa-about,
.spa-services,
.spa-book,
.spa-contact {
  padding: 90px 20px;
}

.spa-about .spa-container,
.spa-book .spa-container,
.spa-contact .spa-container {
  max-width: 800px;
  text-align: center;
}

.spa-about h2,
.spa-services h2,
.spa-book h2,
.spa-contact h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.spa-services {
  background-color: #efe7dc;
}

.spa-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.spa-service-card {
  background-color: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.spa-service-card h3 {
  font-family: 'Cinzel', serif;
  margin-bottom: 10px;
}

.spa-book {
  background-color: #9da88f;
  color: #ffffff;
  text-align: center;
}

.spa-contact {
  background-color: #2f2f2f;
  color: #f6f2ec;
  text-align: center;
}

/* TABLET */
@media (max-width: 900px) {
  .spa-nav-container {
    width: 92%;
  }

  .spa-logo img {
    height: 56px;
    padding: 7px 14px;
  }

  .spa-menu {
    gap: 28px;
  }

  .spa-header h1 {
    font-size: 2.4rem;
  }

  .spa-header p {
    font-size: 1.05rem;
  }

  .spa-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .spa-nav-container {
    width: 92%;
    height: 74px;
  }

  .spa-logo img {
    height: 48px;
    padding: 6px 12px;
  }

  .spa-menu-toggle {
    display: block;
  }

.spa-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  background: rgba(246, 242, 236, 0.98);
  padding: 25px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 2000;
}

  .spa-menu.active {
    display: flex;
  }

  .spa-menu li a {
    font-size: 1rem;
  }

  .spa-header {
    min-height: 78vh;
    margin-top: 74px;
    padding: 30px 15px;
    background-position: 68% center;
  }

  .spa-header-content {
    padding: 24px 18px;
    max-width: 100%;
  }

  .spa-header h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .spa-header p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .spa-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .spa-about,
  .spa-services,
  .spa-book,
  .spa-contact {
    padding: 70px 15px;
  }

  .spa-service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .spa-logo img {
    height: 44px;
    padding: 5px 10px;
  }

  .spa-header {
    min-height: 72vh;
    background-position: 72% center;
  }

  .spa-header h1 {
    font-size: 1.75rem;
  }

  .spa-header p {
    font-size: 0.95rem;
  }

  .spa-header-content {
    border-radius: 12px;
    padding: 20px 16px;
  }

  .spa-header::after {
    height: 90px;
  }
}
/* INTRO STRIP */

.spa-intro-strip{
background:#f8f4ee;
padding:28px 20px;
text-align:center;
border-bottom:1px solid rgba(0,0,0,0.05);
}

.spa-intro-strip p{
max-width:850px;
margin:0 auto;
font-size:1.05rem;
color:#5b544c;
}


/* SERVICE ICON */

.spa-service-icon{
display:inline-block;
margin-bottom:12px;
font-size:1.3rem;
color:#d6bfa2;
}


/* WHY SECTION */

.spa-why{
background:#f6f2ec;
padding:90px 20px;
text-align: center;
}

.spa-why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.spa-why-card{
text-align:center;
padding:30px 20px;
}

.spa-why-card h3{
font-family:'Cinzel',serif;
margin-bottom:12px;
font-size:1.2rem;
}

.spa-why-card p{
color:#5b544c;
}


/* FOOTER */

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  background: rgba(0,0,0,0.9);
  color: silver;
  -webkit-text-stroke: #9da88f 0.7px;

  text-align: center;
  font-size: 0.9rem;

  padding: 40px 20px;
  margin-top: auto;

  gap: 10px;
}



footer img {
  max-height: 50px;
  border: 0.5px solid silver;
  border-radius: 10px;
}


/* MOBILE */

@media (max-width:768px){

.spa-why-grid{
grid-template-columns:1fr;
gap:20px;
}

}