:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #fff4f8;
  color: #1b0c11;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea, select {
  font: inherit;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
/* 
.bv-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff7fb;
  border-bottom: 1px solid #f3c9d6;
}

.bv-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #2b0f18;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bv-logo i {
  color: #c83a60;
  font-size: 20px;
}

.bv-badge {
  margin-left: 8px;
  background: #fde8ef;
  color: #6f1e33;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.bv-links {
  display: flex;
  gap: 14px;
}

.bv-links a {
  text-decoration: none;
  font-weight: 600;
  color: #6f1f32;
} */

.bv-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff7fb;
  border-bottom: 1px solid #f3c9d6;
}

.bv-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #2b0f18;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bv-logo i {
  color: #c83a60;
  font-size: 20px;
}

.bv-badge {
  margin-left: 8px;
  background: #fde8ef;
  color: #6f1e33;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.bv-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bv-links a {
  text-decoration: none;
  font-weight: 600;
  color: #6f1f32;
}

@media (max-width: 768px) {
  .bv-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .bv-links {
    width: 100%;
    flex-wrap: wrap;
  }
}


.bv-footer {
  margin-top: 60px;
  padding: 18px 20px;
  text-align: center;
  background: #fff7fb;
  border-top: 1px solid #f3c9d6;
  color: #8a3a4d;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .bv-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .bv-links {
    flex-wrap: wrap;
  }
}
