/* =========================
   Global Styles
========================= */
body {
  background: linear-gradient(135deg, #2a001f, #1a0010, #330022);
  color: #ffe6f0;
  font-family: 'Montserrat', sans-serif;
  padding-top: 0;
}

/* Responsive: shrink brand text on mobile */
@media (max-width: 767px) {
  .navbar-brand {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

/* =========================
   Navbar
========================= */
.navbar {
  position: relative;
  background: linear-gradient(90deg, #4c0035, #660044, #4c0035);
  backdrop-filter: blur(6px);
  padding: 1rem 1.5rem;
  border-bottom: 2px solid #ff69b455;
  overflow: hidden;
  z-index: 1;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,192,203,0.25), transparent);
  animation: sweep 3s infinite;
  z-index: 0;
}

@keyframes sweep {
  0%   { left: -50%; }
  100% { left: 100%; }
}

.navbar-brand {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ff69b4 !important;
  letter-spacing: 1px;
}

.navbar-brand {
  font-weight: bold;
  color: #ff3399 !important;
  text-shadow: 0 0 10px rgba(255,51,153,0.7);
  transition: 0.3s;
}
.navbar-brand:hover {
  text-shadow: 0 0 20px rgba(255,51,153,1);
}


.nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover { color: #ff1493 !important; }

/* =========================
   Hero Section
========================= */
.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40,0,30,0.55);
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #ff69b4;
  text-shadow: 0 2px 10px rgba(255,0,100,0.7);
}

.hero p {
  font-size: 1.1rem;
  color: #ffe6f0;
  max-width: 720px;
  margin: 15px auto 0;
  line-height: 1.6;
}

/* =========================
   Model Cards
========================= */
.model-card {
  border-radius: 18px;
  background: linear-gradient(145deg, #4c0035, #330022);
  box-shadow: 0 4px 15px rgba(255,20,147,0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(255,20,147,0.45);
}
.model-card img {
  border-radius: 14px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}
.model-card img:hover { filter: brightness(1.05); }

.location-text { font-size: 0.9rem; color: #f8c8dc; }
.rating        { margin-top: 8px; color: #ffb6c1; font-size: 0.95rem; }

/* =========================
   Filter Buttons
========================= */
.filter-row { margin: 15px 0; }

.filter-btn {
  margin: 5px;
  padding: 8px 15px;
  font-size: 0.9rem;
  border: none;
  border-radius: 25px;
  background-color: #660044;
  color: #ffe6f0;
  transition: all 0.3s ease;
}
.filter-btn:hover { background-color: #ff69b4; }
.filter-btn.active {
  background-color: #ff1493;
  padding-right: 30px;
  position: relative;
}
.filter-btn.active::after {
  content: "×";
  position: absolute;
  right: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* =========================
   Footer
========================= */
footer {
  background-color: #330022;
  border-top: 1px solid #660044;
  padding: 30px 0;
  margin-top: 40px;
  text-align: center;
}
footer h5 { color: #ff69b4; }
footer p  { color: #f8c8dc; font-size: 0.9rem; }

/* =========================
   Booking Buttons
========================= */
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.booking-buttons .btn {
  flex: 1;
  min-width: 180px;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 10px rgba(255,20,147,0.35);
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

/* Button gradient variants */
.btn-whatsapp { background: linear-gradient(45deg, #ff85c1, #ff1493); }
.btn-telegram { background: linear-gradient(135deg, #ff9a9e, #fecfef); color: #660044; }
.btn-wechat   { background: linear-gradient(135deg, #ff6a88, #d6249f); }
.btn-call     { background: linear-gradient(135deg, #ff5f6d, #ffc371); }

.booking-buttons .btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
  box-shadow: 0 6px 20px rgba(255,20,147,0.5);
  filter: brightness(1.05);
}

/* Mobile stacking */
@media (max-width: 767px) {
  .booking-buttons {
    flex-direction: column;
    align-items: center;
  }
  .booking-buttons .btn { width: 100%; }
}

.booking-info {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #f8c8dc !important;
  text-align: center;
}
