/* ===========================
   Fonts (use your existing files)
=========================== */
@font-face{
  font-family:"ProductSans-Regular";
  src: url("../assets/fonts/ProductSans-Regular.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"ProductSans-Bold";
  src: url("../assets/fonts/ProductSans-Bold.ttf") format("truetype");
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Wondar-Quason";
  src: url("../assets/fonts/Wondar-Quason.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}

/* ===========================
   Theme
=========================== */
:root{
  --brand:#b8a090;
  --bg:#fafafa;
  --text:#2f2f2f;
  --muted:#555;
  --card:#fff;
  --shadow:0 6px 20px rgba(0,0,0,.06);
  --shadow-lg:0 12px 30px rgba(0,0,0,.12);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
a{ text-decoration:none; color:inherit; }
img{ display:block; max-width:100%; }

/* Subtle gradient + CSS texture */
body{
  font-family:"ProductSans-Regular",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 0% 0%, #ffffff 0%, #f7f3f0 60%, #ffffff 100%),
    linear-gradient(135deg, #ffffff 0%, #fbf9f7 50%, #ffffff 100%);
  background-attachment: fixed;
  line-height:1.65;
}
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    radial-gradient(rgba(0,0,0,.025) 0.5px, transparent 0.5px),
    radial-gradient(rgba(0,0,0,.02) 0.5px, transparent 0.5px);
  background-size: 12px 12px, 18px 18px;
  background-position: 0 0, 6px 6px;
  opacity:.35;
  pointer-events:none;
}

/* ===========================
   Navbar (smaller + refined)
=========================== */
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 44px; background:#fff;
  position:sticky; top:0; z-index:100;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  border-bottom:1px solid rgba(184,160,144,.35); /* lighter border */
}
.nav-left,.nav-right{ width:160px; display:flex; align-items:center; justify-content:flex-end; }
.nav-left{ justify-content:flex-start; }
.nav-center{ flex:1; display:flex; justify-content:center; }
.nav-logo{ height:40px; }

.contact-btn{
  border:1.5px solid var(--brand);
  padding:6px 14px;
  border-radius:20px;
  color:var(--brand); font-weight:600;
  transition:.25s ease; background:transparent;
  margin-left:-14px; /* moved slightly left */
  font-size:14px;
}
.contact-btn:hover{ background:var(--brand); color:#fff; }

/* ===========================
   Hero (Privacy Policy Page)
=========================== */
.hero {
  text-align: left;
  padding: 60px 0;  /* cleaner top/bottom spacing */
}

.hero-title {
  font-family: "Wondar-Quason", serif;
  font-size: 44px;
  color: #222;
  margin: 30px 0 16px;
  letter-spacing: 1.3px;
}

.hero-desc {
  max-width: 1000px;
  margin: 0 auto;          /* center block horizontally */
  padding: 0 24px;         /* left/right space */
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  letter-spacing: 0.1px;
  text-align: left;
}

.hero-desc h2 {
  margin-top: 28px;
  font-size: 24px;
  color: #222;
}

.hero-desc p,
.hero-desc li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ✅ Mobile styles */
@media (max-width: 920px) {
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-desc {
    padding: 0 0px;
    margin: 0 30px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-desc h2 {
    font-size: 20px;
    margin-top: 20px;
  }
}

/* ===========================
   Section Title
=========================== */
.section-title {
  display: block;
  max-width: 100%;              /* ✅ allow wrapping */
  margin: 0 auto 40px;
  font-family: "ProductSans-Bold", sans-serif;
  font-size: 36px;
  text-align: center;
  line-height: 1.3;             /* ✅ better spacing when wrapped */
  padding: 0 10px;              /* ✅ small side padding for mobile */

  /* Gradient text */
  background: linear-gradient(135deg, var(--brand), #d7c1b4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 120px;
  margin: 12px auto 0;
  background: linear-gradient(to right, var(--brand), transparent);
  border-radius: 2px;
  opacity: 0.9;
}

/* ✅ Mobile adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;            /* smaller text on mobile */
  }
}

/* ===========================
   Footer
=========================== */
.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid rgba(184,160,144,.35);
  box-shadow: 0 -4px 12px rgba(0,0,0,.05);
  text-align: center;
}

.footer-left, .footer-center, .footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-left a { font-size: 14px; color: #333; }
.footer-left p { font-size: 13px; color: #666; margin: 6px 0 0; }
.footer-logo { height: 40px; }
.footer-center p { font-size: 13px; color: #444; margin: 0; }
.footer-right p { font-size: 13px; color: #444; margin: 0 0 4px; }

.social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.social-icons img {
  height: 20px;
  filter: grayscale(100%);
  transition: filter .25s ease;
}
.social-icons img:hover { filter: grayscale(0%); }

@media (max-width: 920px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .footer-center { order: 1; }
  .footer-right { order: 2; }
  .footer-left { order: 3; }
}

/* ===========================
   Navbar
=========================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 16px rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(184,160,144,0.25);
}

.nav-left, .nav-right {
  width: 180px;
  display: flex;
  align-items: center;
}

.nav-left { justify-content: flex-start; }
.nav-center { flex: 1; display: flex; justify-content: center; align-items: center; }
.nav-right { justify-content: flex-end; }

.nav-logo { height: 46px; width: auto; display: block; }
.nav-logo-left { display: none; }
.nav-logo-center { display: block; }

.contact-btn {
  border: 1.5px solid var(--brand);
  padding: 8px 16px;
  border-radius: 22px;
  color: var(--brand);
  font-weight: 600;
  background: transparent;
  transition: .25s ease;
  box-shadow: 0 2px 8px rgba(184,160,144,0.25);
  white-space: nowrap;
}
.contact-btn:hover {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 920px) {
  .navbar { padding: 10px 16px; }
  .nav-logo-left { display: block !important; height: 38px; width: auto; object-fit: contain; margin-left: 10px; }
  .nav-logo-center { display: none !important; }
  .nav-right { margin-left: auto; margin-right: -4px; }
  .contact-btn { padding: 6px 14px; font-size: 13px; border-radius: 18px; }
}

/* ===========================
   Enquiry Modal
=========================== */
.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.enquiry-modal.active { display: flex; }

.enquiry-content {
  width: min(92vw, 420px);
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  border: 2px solid var(--brand);
  animation: fadeIn .4s ease;
}

.enquiry-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f2f0;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.enquiry-close:hover {
  background: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}

.enquiry-content h2 {
  margin: 0 0 14px;
  font-family: "ProductSans-Bold", sans-serif;
  font-size: 22px;
  color: var(--brand);
  text-align: center;
  letter-spacing: 0.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 600;
  color: #444;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--brand);
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #222;
}

/* Submit button */
#btn {
  display: block;
  margin: 16px auto 0;
  padding: 8px 28px;
  border: none;
  background: var(--brand);
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background .3s ease, transform .2s ease;
}
#btn:hover { background: #a68c7d; transform: translateY(-1px); }
