/*Basic*/
body {
 font-family: "Cormorant Garamond", serif;
 background: #f7f3ef;
   color: #2b2b2b;

}
h1, span{
 font-family: "Lato", sans-serif;
}
h2 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 30px;
  
}

header {
 z-index: 10;
}

.btn {
 font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  padding: 12px 18px;
  border: 1px solid #2b2b2b;
  background: #2b2b2b;
  color:white;
  border-radius: 8px;
}



p {
 font-family: "Cormorant Garamond", serif;
}

/* RESET */


 /* NAV */
 .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing:border-box;
  flex-wrap: wrap;

  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* center links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #2b2b2b;
  font-family: "Lato", sans-serif;

}

/* right buttons */
.nav-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
 .nav-links {
   display: none;
 }
}
.logo,
.nav-actions {
  flex-shrink: 0;
}
.nav-links {
 flex: 1;
 justify-content: center;
}

/* book now */
.btn.book {
  background: #2b2b2b;
  color: white;
}

/* phone button */
.btn.phone {
  border: 1px solid #2b2b2b;
  color: #2b2b2b;
  background: transparent;
}
 
 .btn-small { /* book now*/
   padding: 8px 12px;
   background: #6f5d37;
   color: white;
   border-radius: 6px;
 }
 


 .phone-link {
  display: flex;
  align-items: center;
  gap: 6px;

  text-decoration: none;
  color: #2b2b2b;

  font-family: "Lato", sans-serif;
  font-size: 14px;
}

.phone-link:hover {
  opacity: 0.7;
}


 /* HERO */
 .hero {
   height: 70vh;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   background: linear-gradient(to bottom, #e9dfd6, #f7f3ef);
   padding: 20px;
 }
 
 .hero h1 {
   font-size: 2.2rem;
   margin-bottom: 10px;
 }
 
 .hero p {
   margin-bottom: 20px;
   max-width: 500px;
 }
 
 .hero-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
 }
 

 
 
 /* SECTIONS */
 .section {
  padding: 24px;
   margin: 0;
   text-align: center;
 }
 
 .section.dark {
   background: #efe6de;
   max-width: 100%;
 }
 

 
 /* GRID */
 .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 15px;
   margin-top: 20px;
 }
 
 .grid.small .card {
   padding: 15px;
 }
 
 /* CARDS */
 .card {
   background: white;
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 2px 10px rgba(0,0,0,0.05);
   text-align: left;
 }
 
 .review {
   margin-top: 15px;
 }
 
 /* CALL TO ACTION */
 .call-to-action {
   background: #2b2b2b;
   color: white;
 }
 
 .call-to-action .btn.primary {
   background: white;
   color: #2b2b2b;
 }
 
 /* FOOTER */
 .footer {
  background: #2b2b2b;
  color: white;
  padding: 60px 30px 20px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

  text-align: left;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-family: "Gotu", sans-serif;
  font-size: 1rem;
}

.footer-column p {
  margin: 6px 0;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

@media (max-width: 768px) {

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

}

 /* HERO CAROUSEL */
 .hero-carousel {
  position: relative;
  width: 100vw;
  height: 70vh;
  overflow: hidden;
}

/* background layers */
.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* only one visible at a time */
.bg.show {
  opacity: 1;
}

/* overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* text */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.hero-content p {
 margin: 10px auto;
 max-width: 600px;
}



.logo {
 display: flex;
 align-items: center;
 gap: 10px;
 font-weight: bold;
 font-size: 1.1rem;
}

.logo-img {
 width: 36px;
 height: 36px;
 border-radius: 8px;
}

.map {
 background: #8f7d57;

}
.map-container {
 display: flex;
 gap: 30px;
 max-width: 1100px;
 margin: auto;
 padding: 60px 20px;
 align-items: stretch;
}

/* LEFT SIDE (map) */
.map-left {
 flex: 1;
}

.map-left iframe {
 width: 100%;
 height: 100%;
 min-height: 400px;
 border: 0;
 border-radius: 12px;
}

/* RIGHT SIDE (text) */
.map-right {
 flex: 1;
 display: flex;
 flex-direction: column;
 justify-content: center;
 gap: 12px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
 .map-container {
   flex-direction: column;
 }

 .map-left iframe {
   height: 300px;
 }
}

.head-spa-history {
  padding: 100px 40px;
}

.history-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;

  align-items: center;
}

.history-left {
  text-align: left;
}

.history-tag {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.history-left h2 {
  margin-bottom: 24px;
  font-size: 2.3rem;
}

.history-left p {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 1.15rem;
}

.history-right img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 900px) {

  .history-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .history-right img {
    height: 350px;
  }

}

.owner-section {
  padding: 40px 40px;
}

.owner-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;

  align-items: center;
}

.owner-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
}

.owner-content {
  text-align: left;
}

.owner-content h2 {
  margin-bottom: 24px;
}

.owner-content p {
  line-height: 1.8;
  margin-bottom: 18px;
}

@media (max-width: 1200px) {

  .owner-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .owner-image img {
    height: 350px;
    object-fit: cover;
    object-position: left !important;
  }

}
.storefront-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin: 10px 0 15px;
}