:root{
  --bg: #A78674;
  --text: #0b0b0b;
  --muted: rgba(11,11,11,.70);
  --line: rgba(11,11,11,.16);

  /* NEW: overlay + card styling for readability over background image */
  --page-overlay: rgba(167,134,116, 0.72);
  --card-bg: rgba(255,255,255, 0.14);
  --card-border: rgba(0,0,0, 0.12);
  --shadow: 0 14px 30px rgba(0,0,0,0.14);
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
}

body{
  /* inserting canva image */
  background-image: url("images/bg-cover.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed; /* stays fixed while scrolling */

  color: var(--text);
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* Header/Nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  /* stays readable over the image background */
  background: rgba(167,134,116,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo{
  text-decoration: none;
  color: var(--text);
  letter-spacing: .05em;
  font-size: 16px;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a{
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover{ color: var(--text); }

/* Buttons */
.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.14);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}

.btn:hover{ background: rgba(255,255,255,.22); }

.btn-ghost{ background: transparent; }

/* Page sections */
.page{
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 60px 0;

  /* NEW: soft overlay so text stays readable over the background image */
  background: var(--page-overlay);
  backdrop-filter: blur(1px);
}

/* NEW: subtle separators between sections */
.page + .page{
  border-top: 1px solid rgba(0,0,0,0.12);
}

.page-inner{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;

  /* NEW: “card” look so content pops over background */
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 42px 22px;
}

.page-inner.narrow{
  width: min(900px, calc(100% - 32px));
}

/* Cover */
.page-cover{ padding-top: 80px; }

.cover-title{
  margin: 0;
  font-size: clamp(44px, 6vw, 86px);
  letter-spacing: .03em;
  font-weight: 500;
}

.cover-sub{
  margin: 18px auto 22px;
  max-width: 900px;
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.6;
  color: var(--muted);
}

.cover-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Page titles */
.page-title{
  margin: 0 0 22px;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
}

/* Services */
.services-list{
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.service-item{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 10px;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: .01em;
}

/* Price */
.price-body{
  margin: 0 auto 26px;
  max-width: 900px;
  font-size: clamp(20px, 2.35vw, 32px);
  line-height: 1.7;
}

.price-callout{
  margin: 0 auto;
  max-width: 700px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 10px;
}

.callout-line{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: clamp(20px, 2.2vw, 28px);
}

.callout-sub{
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Contact */
.contact-block{
  display: inline-block;
  text-align: left;
  font-size: clamp(22px, 2.5vw, 38px);
  line-height: 1.8;
}

.contact-block a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.label{ font-weight: 600; }

/* Booking */
.booking-body{
  margin: 0 auto 18px;
  max-width: 700px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  color: var(--muted);
}

.booking-btn{
  padding: 14px 18px;
  font-size: 16px;
}

.note{
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Footer */
.footer{
  text-align: center;
  padding: 18px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);

  /* NEW: footer still readable over image */
  background: rgba(167,134,116,.90);
  backdrop-filter: blur(6px);
}

/* Mobile */
@media (max-width: 600px){
  .contact-block{ font-size: 22px; }
  .page-inner{ padding: 34px 16px; }
}

/* NEW: iOS/mobile fix (some mobile browsers ignore fixed backgrounds) */
@media (max-width: 768px){
  body{
    background-attachment: scroll;
  }
}

