/* ===== ROOT VARIABLES ===== */
:root {
  --rose: #c8748a;
  --rose-light: #e8a0b4;
  --rose-pale: #f9e8ef;
  --gold: #b8973a;
  --gold-light: #d4b06a;
  --cream: #fdf8f2;
  --ivory: #faf6ef;
  --dark-rose: #8b4a5e;
  --text-dark: #2d1f2a;
  --text-mid: #6b5060;
  --text-light: #a08090;
  --border: rgba(200,116,138,0.2);
  --radius: 16px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.8;
}

/* ===== SWITCH BANNER ===== */
.switch-banner {
  background: linear-gradient(90deg, #ff4e00, #ec9f05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  font-size: 14px;
  flex-wrap: wrap;
  color: #fff;
}
.switch-btn {
  background: #fff;
  color: #ff4e00;
  padding: 5px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.switch-btn:hover { background: #0a0a0a; color: #fff; transform: scale(1.05); }

/* ===== NAVBAR ===== */
.wb-navbar {
  background: rgba(253,248,242,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-dark) !important;
  font-weight: 600;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--rose); }
.nav-link {
  color: var(--text-mid) !important;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  padding: 6px 12px !important;
  border-radius: 6px;
  transition: all 0.3s;
}
.nav-link:hover { color: var(--rose) !important; }
.nav-link.active {
  color: #d83d06 !important;
  border-bottom: 2px solid #d83d06;
  border-radius: 0;
  padding-bottom: 4px !important;
}

.wb-cta-btn {
  background: linear-gradient(90deg, #d83d06, #ee7615) !important;
  color: #fff !important;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 20px;
}
.wb-cta-btn:hover { background: linear-gradient(90deg, #bf3505, #d66710) !important; box-shadow: 0 4px 12px rgba(216, 61, 6, 0.2); }
.navbar-toggler { border-color: var(--border); }
.navbar-toggler-icon { filter: none; }

/* ===== HERO ===== */
.hero-section {
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
}

.hero-content-wrapper {
  display: flex;
  flex: 1;
  width: 100%;
}

.hero-left {
  flex: 1;
  padding: 80px 5% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title em {
  font-family: 'Great Vibes', var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #c95d3e; /* soft elegant orange/red */
  font-style: italic;
  text-transform: none;
  display: block;
  margin-top: 5px;
  font-weight: 300;
  letter-spacing: 0;
}

.hero-desc {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wb-btn-primary {
  background: linear-gradient(90deg, #d83d06, #ee7615);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(216, 61, 6, 0.2);
}
.wb-btn-primary:hover {
  background: linear-gradient(90deg, #bf3505, #d66710);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(216, 61, 6, 0.3);
}

.wb-btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.15);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.wb-btn-outline:hover {
  background: rgba(0,0,0,0.03);
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.3);
}

/* Right Side Image */
.hero-right {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.hero-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 47rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Optional: soft curve on the left side of the image */
  border-bottom-left-radius: 60px;
}

.hero-right-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
}

/* Features Strip */
.features-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 24px 8%;
  border-top: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
  margin-top: -30px; /* pull up slightly */
  box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.feature-icon {
  font-size: 1.6rem;
  color: #d83d06; /* match the button orange */
}

.feature-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 1px;
  line-height: 1.3;
}

.feature-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
  .hero-content-wrapper {
    flex-direction: column;
  }
  .hero-left {
    padding: 60px 5%;
    text-align: center;
    align-items: center;
  }
  .hero-desc {
    margin: 0 auto 30px;
  }
  .features-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .feature-divider {
    display: none;
  }
  .feature-item {
    width: 30%;
  }
}
@media (max-width: 576px) {
  .feature-item {
    width: 45%;
  }
}

/* ===== COMMON ===== */
.wb-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 10px;
}
.wb-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.2;
}
.wb-section-title em { color: var(--rose); font-style: italic; }
.wb-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 20px 0;
}
.text-muted-wb { color: var(--text-mid); }

/* ===== ABOUT SECTION ===== */
.about-intro-section { background: var(--ivory); }
.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  border-radius: 20px;
  overflow: hidden;
}
.about-img-main {
  position: absolute;
  inset: 0;
}
.about-img-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--rose-light);
  border-radius: 16px;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  font-weight: 600;
  font-size: 0.9rem;
}
.about-badge i { color: var(--rose); }
.about-intro-section p { color: var(--text-mid); margin-bottom: 16px; }
.about-features { margin-top: 24px; }
.about-feat { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--text-dark); font-size: 0.9rem; }
.about-feat i { color: var(--rose); width: 18px; }

/* ===== SERVICES ===== */
.services-section { background: var(--cream); }
.wb-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}
.wb-service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.wb-service-card:hover::after { transform: scaleX(1); }
.wb-service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(200,116,138,0.15); }
.wb-service-card.featured { background: linear-gradient(135deg, #fff8f9, #fffdf0); border-color: rgba(200,116,138,0.4); }
.wb-service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.wb-service-icon {
  width: 52px;
  height: 52px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rose);
  margin-bottom: 18px;
}
.wb-service-card h4 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 600; }
.wb-service-card p { color: var(--text-mid); font-size: 0.9rem; }

/* ===== PACKAGES ===== */
.packages-section { background: var(--ivory); }
.pkg-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: all 0.4s;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(200,116,138,0.18); }
.pkg-card.featured {
  background: linear-gradient(160deg, #fff0f4 0%, #fffae8 100%);
  border-color: var(--rose);
  transform: scale(1.03);
}
.pkg-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.pkg-header { text-align: center; margin-bottom: 28px; }
.pkg-icon {
  width: 56px;
  height: 56px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rose);
  margin: 0 auto 16px;
}
.pkg-icon.featured { background: linear-gradient(135deg, var(--rose), var(--gold)); color: #fff; }
.pkg-card h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-dark); font-weight: 400; margin-bottom: 8px; }
.pkg-price { font-family: var(--font-display); font-size: 2rem; color: var(--rose); font-weight: 600; }
.pkg-price span { font-size: 0.9rem; color: var(--text-light); font-family: var(--font-body); font-weight: 400; }
.pkg-features { list-style: none; padding: 0; margin-bottom: 28px; }
.pkg-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-mid); }
.pkg-features li i { color: var(--rose); font-size: 0.8rem; }
.wb-btn-outline-pkg {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rose);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.wb-btn-outline-pkg:hover { background: var(--rose); color: #fff; }

/* ===== GALLERY ===== */
.wb-gallery-section { background: var(--cream); }
.wb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.wg-item {
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}
.wg-1 { grid-column: 1 / 3; }
.wg-4 { grid-column: 2 / 4; }
.wg-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,31,42,0.85));
  color: #fff;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.wg-item:hover .wg-label { transform: translateY(0); }
.wg-item:hover { box-shadow: 0 16px 40px rgba(200,116,138,0.3); }
@media (max-width: 768px) {
  .wb-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .wg-1, .wg-4 { grid-column: auto; }
}

/* ===== TEAM ===== */
.team-section { background: var(--ivory); }
.wb-team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.4s;
}
.wb-team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(200,116,138,0.15); }
.wb-team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 auto 16px;
  border: 2px solid rgba(200,116,138,0.3);
}
.wb-team-card h5 { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 4px; }
.wb-team-card p { color: var(--text-light); font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 16px; text-transform: uppercase; }
.wb-team-socials a {
  display: inline-flex;
  width: 34px; height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--rose-pale);
  border-radius: 50%;
  color: var(--rose);
  font-size: 0.85rem;
  margin: 0 3px;
  text-decoration: none;
  transition: all 0.3s;
}
.wb-team-socials a:hover { background: var(--rose); color: #fff; }

/* ===== TESTIMONIALS ===== */
.wb-testi-section { background: var(--cream); }
.wb-testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  position: relative;
  transition: all 0.4s;
}
.wb-testi-card.featured {
  background: linear-gradient(135deg, #fff8f9, #fffdf0);
  border-color: var(--rose-light);
}
.wb-testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(200,116,138,0.1); }
.testi-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--rose-pale);
  margin-bottom: 12px;
  font-style: italic;
}
.wb-testi-card p { color: var(--text-mid); font-style: italic; font-size: 0.95rem; margin-bottom: 16px; }
.wb-testi-stars { color: var(--rose); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 20px; }
.wb-testi-couple { display: flex; align-items: center; gap: 12px; }
.couple-initials {
  width: 40px; height: 40px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--rose);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.wb-testi-couple strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.wb-testi-couple span { font-size: 0.78rem; color: var(--text-light); }

/* ===== BOOKING ===== */
.wb-booking-section { background: var(--ivory); }
.wb-icon-circle {
  width: 44px; height: 44px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
}
.wb-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(200,116,138,0.1);
}
.wb-form-header {
  text-align: center;
  margin-bottom: 28px;
}
.form-ornament {
  font-size: 1rem;
  letter-spacing: 8px;
  color: var(--rose-light);
  margin-bottom: 8px;
}
.wb-form-header h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 400;
}
.wb-input {
  background: var(--cream) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-dark) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: var(--font-body) !important;
  transition: border-color 0.3s !important;
}
.wb-input:focus {
  border-color: var(--rose-light) !important;
  box-shadow: 0 0 0 3px rgba(200,116,138,0.1) !important;
  outline: none !important;
}
.wb-input option { background: #fff; }
.wb-input::placeholder { color: var(--text-light) !important; }
.wb-success-msg {
  text-align: center;
  padding: 28px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

/* ===== FOOTER ===== */
.wb-footer {
  background: var(--text-dark);
  padding: 6px 0 0;
  position: relative;
}
.footer-ornament {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 8px;
  color: rgba(200,116,138,0.4);
  margin-bottom: 20px;
}
.wb-footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.wb-footer-brand span { color: var(--rose-light); }
.wb-footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 20px; }
.wb-footer-socials a {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.wb-footer-socials a:hover { background: var(--rose); color: #fff; }
.wb-footer-head { color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.wb-footer-links { list-style: none; padding: 0; }
.wb-footer-links li { margin-bottom: 10px; }
.wb-footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.wb-footer-links a:hover { color: var(--rose-light); }
.wb-footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom-ornament { color: var(--rose); opacity: 0.5; font-size: 0.7rem; margin-bottom: 8px; }
.wb-footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; margin: 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
