:root {
  --primary-color: #d93d7d;
  --secondary-color: #f06aa3;
  --accent-color: #f7c6d8;
  --dark-color: #2f2730;
  --soft-pink: #fff0f5;
  --warm-bg: #fff8fb;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--warm-bg);
  color: var(--dark-color);
  font-family: 'Poppins', sans-serif;
  padding-top: 102px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
}

.day7-demo-banner {
  align-items: center;
  background: #fff8fb;
  border-bottom: 1px solid rgba(217, 61, 125, 0.18);
  color: #7b5870;
  display: flex;
  font-size: 0.74rem;
  font-weight: 700;
  justify-content: space-between;
  left: 0;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  position: fixed;
  right: 0;
  text-transform: uppercase;
  top: 0;
  z-index: 1100;
}

.day7-demo-banner button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
}

.banner-hidden .day7-demo-banner {
  display: none;
}

.banner-hidden {
  padding-top: 76px;
}

.navbar {
  top: 26px;
  transition: box-shadow 0.3s ease, top 0.2s ease;
}

.banner-hidden .navbar {
  top: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

.brand-title {
  color: var(--primary-color);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  max-width: min(42vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-tagline {
  color: #7a6573;
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.language-switcher {
  align-items: center;
  background: #fff2f7;
  border: 1px solid rgba(217, 61, 125, 0.18);
  border-radius: 999px;
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
}

.lang-btn {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #7a6573;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.48rem 0.62rem;
}

.lang-btn.is-active {
  background: var(--primary-color);
  color: #fff;
}

.hero-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(135deg, #fff7fb 0%, #ffd9e8 48%, #f8a9cf 100%);
  min-height: calc(100vh - 102px);
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(255, 248, 251, 0.92), rgba(255, 255, 255, 0.22));
  inset: 0;
  position: absolute;
}

.eyebrow {
  color: var(--primary-color);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  color: var(--dark-color);
  line-height: 0.98;
}

.hero-image-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42% 58% 45% 55% / 52% 38% 62% 48%;
  box-shadow: 0 34px 80px rgba(147, 63, 105, 0.22);
  overflow: hidden;
  padding: 1rem;
}

.hero-image-card img {
  aspect-ratio: 4 / 5;
  border-radius: 38% 62% 42% 58% / 56% 42% 58% 44%;
  display: block;
  object-fit: cover;
  width: 100%;
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-8px);
}

.gallery-item {
  cursor: pointer;
  margin: 0;
  min-height: 100%;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.035);
}

.gallery-photo {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-item figcaption {
  background: linear-gradient(180deg, transparent, rgba(47, 39, 48, 0.86));
  bottom: 0;
  color: #fff;
  font-weight: 700;
  left: 0;
  padding: 4rem 1.25rem 1.25rem;
  position: absolute;
  right: 0;
  text-align: left;
}

.bg-light-pink {
  background: linear-gradient(135deg, #ffe8f0 0%, #fff8fb 100%);
}

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  object-fit: cover;
  width: 100%;
}

.feature-box {
  background: rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  height: 100%;
  padding: 1.5rem 1rem;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

.booking-card {
  border-radius: 30px;
  overflow: hidden;
}

.booking-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-copy h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

.packs-section {
  background: linear-gradient(135deg, #fff 0%, #fff4f8 100%);
}

.pack-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 61, 125, 0.14);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(217, 61, 125, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 2rem;
  text-align: center;
}

.pack-card span {
  color: var(--primary-color);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.pack-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pack-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.pack-card strong {
  color: var(--primary-color);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin-top: auto;
}

.pack-card small {
  color: var(--text-dark);
  display: block;
  font-weight: 700;
  margin-top: 0.55rem;
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(217, 61, 125, 0.2);
}

.footer a:hover {
  color: var(--primary-color) !important;
}

html {
  scroll-behavior: smooth;
}

[data-aos] {
  opacity: 1;
  transform: none !important;
}

@media (max-width: 768px) {
  body {
    padding-top: 96px;
  }

  .navbar {
    top: 25px;
  }

  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .brand-title {
    max-width: 68vw;
  }

  .language-switcher {
    margin-top: 0.75rem;
  }

  .display-3 {
    font-size: 2.6rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .hero-image-card {
    border-radius: 28px;
    margin-top: 1.5rem;
  }

  .hero-image-card img {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
}
