:root {
  --primary: #e7b9c2;   /* pastel pink */
  --secondary: #7ca982; /* soft green */
  --bg: #fffdfc;
  --text: #333333;
}

* { box-sizing: border-box; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, .navbar-brand {
  font-family: "Playfair Display", serif;
}

/* Buttons & links */
.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: #dca2af !important;
  border-color: #dca2af !important;
  color: #ffffff !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
}

.link-primary {
  color: var(--secondary) !important;
  text-decoration: none;
}

.link-primary:hover {
  color: #5f8167 !important;
  text-decoration: underline;
}

.text-primary {
  color: var(--primary) !important;
}
/* Layout */
.bg-soft {
  background: rgba(231, 185, 194, 0.12);
}

.section-title {
  font-weight: 700;
}

/* Utility */
.ratio.bg-cover {
  background-size: cover;
  background-position: center;
}

.hero {
  padding: 72px 0;
}

.hero .hero-img {
  background-image: url('../images/hero/hero-main.jpg');
}

/* Cards */
.card.lift {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card.lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Topbar & footer */
.topbar {
  font-size: 0.9rem;
}

.footer a {
  color: inherit;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1050;
}

/* Reviews */
.review {
  border-radius: 1.25rem;
}

/* Forms */
.newsletter-form input,
.contact-form input,
.contact-form textarea,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  border-radius: 999px;
}

.checkout-form textarea,
.contact-form textarea {
  border-radius: 1rem;
}

/* Navbar active state (optional, if you set manually with JS) */
.navbar .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.accordion-button {
  transition: 0.2s ease;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(209,145,163,0.3) !important; 
}

/* Gallery hover */
.gallery-box {
  cursor: pointer;
  transition: transform .25s ease, opacity .25s ease;
}
.gallery-box:hover {
  transform: scale(1.03);
  opacity: .9;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 10px 20px;
  user-select: none;
}
.lightbox-close { top: 20px; right: 30px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
