/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #f9f5f0;
  color: #2a2a2a;
  line-height: 1.6;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Header === */
.main-header {
  background-color: #f0e7db;
  padding: 2.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.main-header.shrink {
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
  position: relative; /* Required for absolute hamburger positioning */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  flex: 0 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 100px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #4B4B4B;
  transition: color 0.3s;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

nav ul li a:hover {
  color: #b89c74;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

/* === Hamburger Menu === */
.hamburger {
  display: none; /* Hidden by default */
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #4B4B4B;
  transition: all 0.4s ease;
  border-radius: 2px;
}

/* Hamburger to "X" animation */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

/* === Mobile Styles (768px or less) === */

@media (max-width: 768px) {
  .header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo {
    margin: 0 auto;
    padding: 0;
    z-index: 1;
  }

  .hamburger {
    display: flex;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* Bring it above the logo if they overlap */
  }

  .nav-left,
  .nav-right {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #F0E7DB;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .nav-left { 
    top: 100%;
  }

  .nav-right {
    top: calc(100% + 85%); /*This line adds spacing below nav-left */
  }

  .nav-left.active,
  .nav-right.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Hero*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;                   /* Full screen */
  overflow: hidden;
  display: block;                  /* Override global section flex */
  padding: 0 !important;           /* Remove global padding */
}

/* Hero image */

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;    /* keeps aspect ratio, fills screen */
  object-position: center; /* default, we'll override on mobile */
}

/* text overlay */
.hero-text {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  padding: 1rem;
  width: 85%;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.hero-btn {
  display: inline-block;
  background-color: #BDA585;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  
}

.hero-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px);
}

/* Secondary hero button */
.hero-btn-secondary {
  margin-top: 1rem;
  background-color: #BDA585;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;

}

.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(3px);
}


/* === MOBILE HERO TWEAKS === */
@media (max-width: 768px) {
  .hero {
    height: 85vh; /* a bit less tall feels better on phones */
  }

  .hero-img {
    object-position: 80% center
  }

  .hero-text {
    bottom: 18%;
    left: 8%;              /* move text to the left side (empty space) */
    transform: none;       /* no centering on mobile */
    text-align: left;
    width: 70%;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}

/* About Section*/
.about-section {
  background-color: #f9f5f0;
  color: #2a2a2a;
  padding: 2rem 2rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  scroll-margin-top: 120px; /* Prevent overlap with sticky header */
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}


.about-content ul {
  list-style: none;
  text-align: left;
  margin: 2rem auto;
  max-width: 700px;
}

.about-content ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}


/* Initial state: hidden and slightly moved down */
.about-content ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  opacity: 1;                 
  transform: translateY(0);   
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b89c74;
  font-size: 1.5rem;
  line-height: 1;
}

/* Visible state: fade-in + slide-up */
.about-content ul li.fade-in-up {
  opacity: 1;
  transform: translateY(0);
} 

  .about-content em {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #b89c74;
  margin: 2rem auto;
  line-height: 1.6;
  padding: 1rem 1.5rem;
  
}

/* === About: Mission & Vision === */   
.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top:  5rem;
  text-align: left;
}

.about-mission-vision h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  color: #4b4b4b;
}

.about-mission-vision p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3a3a;
}

/* === About: Values === */
.about-values {
  margin-top: 3rem;
  text-align: left;
}

.about-values h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  color: #4b4b4b;
}

.about-values-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-values-list li {
  margin-bottom: 0.8rem;
  padding-left: 0;
}

.about-values-list strong {
  color: #b89c74;
  font-weight: 700;
}

/* === About: Divider === */
.about-divider {
  margin: 4rem auto 2.5rem;
  max-width: 260px;
  text-align: center;
}

.about-divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, #bda585, transparent);
  margin-bottom: 0.8rem;
}

.about-divider-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #7a7267;
}

/* === About: CTA === */
.about-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.about-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #4b4b4b;
  margin-bottom: 1.3rem;
}

.about-cta-btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background-color: #BDA585;
  color: #fff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #b89c74;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-btn:hover {
  background-color: #a48d6c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* === About: Responsive layout === */
@media (max-width: 768px) {
  .about-mission-vision {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-divider {
    margin-top: 3rem;
  }

  .about-cta-text {
    font-size: 1.2rem;
  }
}

/* === Treatments Page === */

.treatments-page {
  background-color: #f9f5f0;
  color: #2a2a2a;
  padding-bottom: 4rem;
}

.treatments-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.treatments-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.treatments-kicker {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89c74;
  margin-bottom: 0.8rem;
}

.treatments-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #4b4b4b;
}

.treatments-intro {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Cards grid */

.treatments-section {
  padding: 1rem 2rem 4rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.treatment-card {
  background-color: #fdfaf6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(189, 165, 133, 0.22);
}

.treatment-image-wrapper {
  position: relative;
  overflow: hidden;
}

.treatment-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s ease;
  position: relative;
  z-index: 1;
}



.treatment-card:hover .treatment-image {
  transform: scale(1.06);
}

.treatment-card-body {
  padding: 1.8rem 1.8rem 1.6rem;
  font-family: 'Lato', sans-serif;
}

.treatment-label {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b89c74;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 10;
}


.treatment-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  color: #3b3b3b;
}

.treatment-price {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 1.1rem;
}

.treatment-description {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.treatment-subblock {
  margin-bottom: 1.2rem;
}

.treatment-subblock h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #4b4b4b;
}

.treatment-subblock ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.treatment-subblock ul li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.35rem;
  padding-left: 1.1rem;
  position: relative;
}

.treatment-subblock ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #bda585;
}

.treatment-subblock p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}


.treatment-note {
  font-size: 0.9rem;
  color: #7a7267;
  margin-top: 1rem;
}

/* Featured / signature card */
.treatment-card-featured {
  position: relative;
  border: 1px solid #bda585;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.treatment-featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: rgba(189, 165, 133, 0.92);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .treatments-hero {
    padding: 4rem 1.5rem 2.5rem;
    text-align: left;
  }

  .treatments-hero h1 {
    font-size: 2rem;
  }

  .treatments-intro {
    font-size: 0.95rem;
  }

  .treatments-section {
    padding: 1rem 1.5rem 3rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .treatment-image {
    height: 210px;
  }
}



/* === Discreet Treatment Links === */



.treatment-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #bda585;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.treatment-link:hover {
  color: #a58a6c;
  transform: translateX(3px);
}

/* === Treatments CTA Section === */

.treatments-cta {
  text-align: center;
  margin-bottom: 3rem;
}


.cta-button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background-color: #bda585;
  color: #fff;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #a98f6e;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .treatments-cta h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}



/* Location Section*/

.location-section {
  background-color: #f9f5f0;
  padding: 6rem 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.location-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #4b4b4b;
}

.luxury-text {
  font-family: 'Lato', sans-serif;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.location-highlight {
  background-color: #F0E7DB;
  border-left: 4px solid #BDA585;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.8rem;
  font-family: 'Lato', sans-serif;
}



/* Address checker */
.check-area {
  margin-top: 2rem;
}

.check-area h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

#address-input {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Lato', sans-serif;
}

#check-area-btn {
  background-color: #BDA585;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

#area-result {
  display: none; 
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #4b4b4b;
  background: #F0E7DB;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border-left: 4px solid #BDA585;
}


/* Map container */
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

#somaeon-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* === Booking Page === */

.booking-page {
  background-color: #f9f5f0;
  color: #2a2a2a;
  padding-bottom: 4rem;

}

/* Hero */

.booking-hero {
  padding: 5rem 2rem 3rem;
}

.booking-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.booking-kicker {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89c74;
  margin-bottom: 0.7rem;
}

.booking-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #4b4b4b;
  margin-bottom: 1rem;
}

.booking-intro {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Steps */

.booking-steps {
  padding: 2rem 2rem 3.5rem;
}

.booking-steps h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b4b4b;
  text-align: center;
  margin-bottom: 2rem;
}

.booking-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.booking-step {
  background-color: #fdfaf6;
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(189, 165, 133, 0.16);
}

.booking-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #bda585;
  color: #bda585;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.booking-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #4b4b4b;
}

.booking-step p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Form section */

.booking-form-section {
  padding: 2rem 2rem 4rem;
}

.booking-form-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.booking-form-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b4b4b;
  margin-bottom: 1rem;
}

.booking-form-copy p {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.booking-note {
  font-size: 0.92rem;
  color: #7a7267;
}

.booking-form-card {
  background-color: #fdfaf6;
  border-radius: 18px;
  padding: 2rem 2rem 1.8rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(189, 165, 133, 0.18);
}

/* Form elements */

.booking-form {
  max-width: 650px;
  margin: 0 auto;
  padding: 2rem;
  background: #F0E7DB;
  border-radius: 7px;
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}

.booking-form label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: block;
  color: #4B4B4B;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.booking-submit {
  width: 100%;
  background: #BDA585;
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.booking-submit:hover {
  background: #a59073;
}


/* Helper text */

.booking-helper {
  font-size: 0.85rem;
  color: #7a7267;
}

.booking-helper a {
  color: #bda585;
  text-decoration: none;
}

.booking-helper a:hover {
  text-decoration: underline;
}

/* Consent */

.booking-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #5a5148;
}

.booking-consent input[type="checkbox"] {
  margin-top: 0.2rem;
}

.booking-consent a {
  color: #bda585;
  text-decoration: none;
}

.booking-consent a:hover {
  text-decoration: underline;
}

/*Legal consent*/
.booking-consent label,
.booking-legal-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #4B4B4B;
}


.booking-legal-consent input[type="checkbox"] {
  margin-top: 0.2rem;
}

.booking-legal-consent a {
  color: #BDA585;
  text-decoration: none;

}

.booking-legal-consent a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .booking-consent label,
  .booking-legal-consent label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.9rem; /* λίγο πιο μαζεμένο στο κινητό */
  }

  .booking-consent input[type="radio"],
  .booking-legal-consent input[type="checkbox"] {
    margin-top: 0; /* να μην πετάει το κουμπί προς τα πάνω */
  }

  .booking-form-group {
    margin-bottom: 1.6rem; /* λίγο πιο σφιχτό spacing στο mobile γενικά */
  }
}

/* Tablet layout fix for consent blocks */
@media (max-width: 1024px) {
  .booking-consent label,
  .booking-legal-consent label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .booking-consent input[type="radio"],
  .booking-legal-consent input[type="checkbox"] {
    margin-top: 0;
    margin-left: 0;
  }
}





/* Actions */

.booking-form-actions {
  margin-top: 0.5rem;
}

.booking-submit-btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  border: none;
  background-color: #bda585;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-submit-btn:hover {
  background-color: #a98f6e;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.booking-small-note {
  margin-top: 0.7rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #7a7267;
}

/* Responsive */

@media (max-width: 1024px) {
  .booking-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-hero {
    padding: 4rem 1.5rem 2.5rem;
  }

  .booking-hero-inner {
    text-align: left;
  }

  .booking-hero h1 {
    font-size: 2rem;
  }

  .booking-intro {
    font-size: 0.95rem;
  }

  .booking-steps {
    padding: 1.5rem 1.5rem 3rem;
  }

  .booking-steps h2 {
    text-align: left;
  }

  .booking-steps-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-section {
    padding: 1.5rem 1.5rem 3.5rem;
  }

  .booking-form-grid-2 {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: 1.6rem 1.4rem 1.5rem;
  }
}




/*  Footer   */
section {
  padding: 4rem 2rem;
}

/* === Premium Footer === */
.site-footer {
  background-color: #F0E7DB;
  padding: 3rem 2rem 2rem;
  color: #4b4b4b;
  font-family: 'Lato', sans-serif;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b4b4b;
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #4b4b4b;
  text-decoration: none;
}

.footer-links a:hover {
  color: #BDA585;
}

.footer-separator {
  color: #b3a89a;
}

.footer-host-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #BDA585;
  color: #4b4b4b;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-host-btn:hover {
  background-color: #BDA585;
  color: #fff;
  border-color: #BDA585;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.footer-copy {
  color: #555;
}

.footer-credit {
  color: #777;
}

.footer-credit a {
  color: #BDA585;
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    text-align: left;
  }

  .footer-tagline {
    font-size: 1.2rem;
  }
}

/*  HOST PAGE  */
 
.host-main {
  background-color: #f9f5f0;
}

/* Hero */
.host-hero {
  padding: 6rem 2rem 3rem;
}

.host-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.host-hero-text {
  flex: 2;
  min-width: 260px;
}

.host-kicker {
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #bda585;
  margin-bottom: 0.5rem;
}

.host-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.host-hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.8rem;
}

.host-hero-copy {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.host-hero-card {
  flex: 1.2;
  min-width: 260px;
  background: #f0e7db;
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.host-hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #4b4b4b;
  line-height: 1.7;
}

/* Generic sections */
.host-section {
  padding: 4rem 2rem;
}

.host-section.host-alt {
  background-color: #f2ebe3;
}

.host-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.host-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #3a3a3a;
  text-align: left;
}

/* Columns for Why Partner */
.host-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.host-column {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.host-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #3c3c3c;
}

.host-column p {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
}

/* =======================
   HOW IT WORKS – PREMIUM
   ======================= */

.how-it-works {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.how-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 2rem;
}

/* Wrapper for steps */
.how-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Fine connecting line on desktop */
@media (min-width: 769px) {
  .how-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
      to right,
      rgba(189,165,133,0.2),
      rgba(189,165,133,0.6),
      rgba(189,165,133,0.2)
    );
    z-index: 0;
  }
}

/* Individual step card */
.how-step {
  flex: 1;
  min-width: 230px;
  background: #f7f2eb;
  border-radius: 16px;
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.04);
}

/* Number badge */
.how-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #bda585;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  z-index: 1;
}

/* White ring around the circle */
.how-number::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(189,165,133,0.45);
}

/* Step title */
.how-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #3b3b3b;
  margin-bottom: 0.6rem;
}

/* Step text */
.how-step p {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.7;
}

/* Mobile layout */
@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .how-steps::before {
    content: none;
  }

  .how-step {
    padding: 1.8rem 1.4rem 1.6rem;
  }

  .how-title {
    font-size: 1.8rem;
  }
}


/* Lists */
.host-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.host-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
}

.host-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #bda585;
  font-size: 1.2rem;
}

/* CTA section */
.host-cta-section {
  text-align: left;
}

.host-cta-inner {
  max-width: 800px;
}

.host-cta-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.host-cta-btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background-color: #bda585;
  color: #fff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.host-cta-btn:hover {
  background-color: #a58f71;
  transform: translateY(-1px);
}

.host-cta-hint {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.6rem;
}

.host-email-hints {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.host-email-hints li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #555;
}

.host-email-hints li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #bda585;
}

/* Mobile */
@media (max-width: 768px) {
  .host-hero {
    padding-top: 5rem;
  }

  .host-hero-inner {
    flex-direction: column;
  }

  .host-hero-text h1 {
    font-size: 2.2rem;
  }

  .host-section {
    padding: 3.5rem 1.6rem;
  }

  .host-section-title {
    font-size: 1.8rem;
  }
}


/* SECONDARY PAGE HEADER */

.sub-header {
  position: relative;
  width: 100%;
  background-color: #F0E7DB;
  padding: 1.5rem 0;
  display: flex;
  justify-content: center; /* Keeps logo centered */
  align-items: center;
}

/* --- Back Button (Top-Left) --- */
.back-button {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #4b4b4b;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.back-button:hover {
  opacity: 0.7;
}

/* --- Centered Logo --- */
.sub-header-logo img {
  height: 70px;
  display: block;
}

/* --- Language Toggle (Top-Right) --- */
.lang-switch {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;

  background: #e9dfd3;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  border: 1px solid #c8b79f;

  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4b4b4b;

  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  cursor: pointer;
}

.lang-option {
  opacity: 0.6;
  font-weight: 600;
}

.lang-option.active {
  opacity: 1;
  color: #826f55;
}

.divider {
  opacity: 0.4;
}

/* SECONDARY PAGE FOOTER */

.sub-footer {
  background-color: #F0E7DB;
  padding: 3rem 2rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #4B4B4B;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #b89c74;
  margin-bottom: 1.5rem;
}

.sub-footer-links {
  margin: 1rem 0;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.sub-footer-links a {
  color: #4B4B4B;
  text-decoration: none;
}

.footer-credits {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-credits a {
  color: #b89c74;
  font-weight: 600;
  text-decoration: none;
}

.footer-copy {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  opacity: 0.9;
}


/* MOBILE TWEAKS*/

@media (max-width: 768px) {
  .sub-header-logo img {
    height: 55px;
  }

  .footer-quote {
    font-size: 1.15rem;
  }
}


/* Premium language switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #e9dfd3;
  padding: 0.35rem 0.8rem;
  border-radius: 30px;
  border: 1px solid #c8b79f;
  cursor: pointer;
  user-select: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4b4b4b;
  transition: background 0.3s ease;
}

.lang-switch .divider {
  opacity: 0.5;
}

.lang-option {
  padding: 0.25rem 0.55rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.lang-option.active {
  background-color: #bda585;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}



/* HOST FORM */

.host-apply {
  max-width: 700px;
  margin: 4rem auto 5rem;
  padding: 2rem;
  text-align: center;
}

.host-apply h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3a3a3a;
  margin-bottom: 0.5rem;
}

.host-apply-sub {
  font-family: 'Lato', sans-serif;
  color: #555;
  margin-bottom: 2.2rem;
}

.host-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: #f7f2eb;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.host-form label {
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4b4b4b;
}

.host-form input,
.host-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d8cfc4;
  border-radius: 10px;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: 0.3s ease;
}

.host-form input:focus,
.host-form textarea:focus {
  border-color: #bda585;
  outline: none;
  box-shadow: 0 0 0 3px rgba(189,165,133,0.25);
}

.host-submit-btn {
  background: #bda585;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  margin-top: 0.5rem;
  transition: 0.3s ease;
}

.host-submit-btn:hover {
  background: #a78f72;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 768px) {
  .host-form {
    padding: 1.5rem;
  }
}



/* THANK YOU HOST PAGE  */

.thank-main {
  background-color: #f9f5f0;
  min-height: calc(100vh - 200px);
}

.thank-section {
  padding: 5rem 2rem 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-inner {
  max-width: 640px;
  text-align: center;
}

.thank-kicker {
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #bda585;
  margin-bottom: 0.6rem;
}

.thank-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: #3a3a3a;
  margin-bottom: 1.4rem;
}

.thank-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.thank-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.thank-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.thank-btn.primary {
  background-color: #bda585;
  color: #fff;
}

.thank-btn.primary:hover {
  background-color: #a78f72;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.thank-btn.ghost {
  border: 1px solid #c9bda9;
  color: #4b4b4b;
  background-color: transparent;
}

.thank-btn.ghost:hover {
  background-color: #f0e7db;
}
.sub-header {
  position: relative;
  width: 100%;
  padding: 1.2rem 0;
  background-color: #F0E7DB;
  display: flex;
  justify-content: center; /* Center content */
  align-items: center;
}

.sub-back-btn {
  position: absolute;
  left: 1.5rem;   /* stays left but doesn't push logo */
  font-size: 1.5rem;
  text-decoration: none;
  color: #4b4b4b;
}

.sub-header-logo img {
  height: 70px;  /* adjust if needed */
  display: block;
}


/* Mobile tweaks */
@media (max-width: 768px) {
  .thank-section {
    padding: 4rem 1.6rem 3rem;
  }

  .thank-inner h1 {
    font-size: 2rem;
  }
}

/* THANK YOU PAGE (BOOKING)*/

.secondary-page {
  background-color: #f9f5f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.secondary-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem 1rem;
}

.secondary-logo img {
  max-width: 140px;
  height: auto;
}

/* Main wrapper */
.thank-you-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

/* Card */
.thank-you-box {
  background: #ffffff;
  max-width: 560px;
  width: 100%;
  padding: 3rem 3rem 3.5rem;
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Small label */
.thank-you-tag {
  display: inline-block;
  margin-bottom: 1.2rem;
  padding: 0.35rem 0.9rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f7a5a;
  background-color: #f0e7db;
  border-radius: 20px;
}

/* Title */
.thank-you-box h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #2a2a2a;
  margin-bottom: 1.2rem;
}

/* Lead */
.thank-you-lead {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #4b4b4b;
  margin-bottom: 1rem;
}

/* Body text */
.thank-you-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #5f5f5f;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

/* Note */
.thank-you-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #7a7a7a;
  margin-bottom: 2.2rem;
}

/* Actions */
.thank-you-actions {
  margin-top: 1rem;
}

/* Button */
.thank-you-actions .btn-primary {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #bda585;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.thank-you-actions .btn-primary:hover {
  background-color: #a8916f;
  transform: translateY(-1px);
}

/* Footer */
.secondary-footer {
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.secondary-footer .footer-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #6f6f6f;
  margin-bottom: 0.8rem;
}

.secondary-footer .footer-links {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}


.secondary-footer .footer-links a {
  color: #8f7a5a;
  text-decoration: none;
}

.secondary-footer .footer-links span {
  margin: 0 0.4rem;
  color: #bda585;
}

.secondary-footer .footer-copy {
  font-size: 0.8rem;
  color: #8a8a8a;
  margin-bottom: 0.4rem;
}

.secondary-footer .footer-credit {
  font-size: 0.75rem;
  color: #9a9a9a;
}

.secondary-footer .footer-credit a {
  color: #8f7a5a;
  text-decoration: none;
}

/* Mobile Optimization */

@media (max-width: 600px) {
  .thank-you-box {
    padding: 2.2rem 1.8rem 2.6rem;
  }

  .thank-you-box h1 {
    font-size: 1.8rem;
  }

  .secondary-logo img {
    max-width: 120px;
  }
}
