/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #fffdfd;
  padding: 20px;
}

/* SLIDER WRAPPER – ASPECT RATIO 1476x651 */
.slider-wrapper {
  max-width: 1476px;
  margin: 0 auto;
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1476 / 651;
  overflow: hidden;
  border-radius: 12px;
  background: #f5eeee;
}

/* SLIDES CONTAINER */
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
}

/* BACKGROUND IMAGE */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
 
}

/* CONTENT ON SLIDE */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  color: #2c2828;
}

.slide-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.slide-text {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.slide-btn {
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  background: #ed5ce6;
  color: #181717;
}
.slide-btn a{
    color: #f7f3f3;
}

.slide-btn:hover {
  opacity: 0.9;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.nav-btn:hover {
  background: rgba(74, 67, 67, 0.7);
}

.nav-prev { left: 15px; }
.nav-next { right: 15px; }

/* DOTS */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* ==============================
   MOBILE NAVBAR + SLIDER FIX
============================== */

@media (max-width: 768px) {

  /* FIX NAVBAR */
  .navbar,
  .header,
  .site-header,
  .main-header,
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
  }

  /* PUSH PAGE CONTENT DOWN */
  body {
    padding-top: 90px; /* adjust if navbar is taller */
    padding-left: 10px;
    padding-right: 10px;
  }

  /* FIX SLIDER */
  .slider,
  .slider-wrapper {
    margin-top: 0 !important;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
  }

  /* SLIDE CONTENT */
  .slide-content {
    padding: 20px;
    align-items: flex-start;
  }

  .slide-title {
    font-size: 1.6rem;
  }
  

  .slide-text {
    display: none !important;
  }

  .slide-btn {
    font-size: 0.9rem;
    padding: 8px 18px;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
  body {
    padding-top: 115px;
  }

  .slide-title {
    font-size: 1.4rem;
  }

  .slide-text {
     display: none !important;
  }
   .slide-btn {
    margin-bottom: 70px;
  }
}
/* MOBILE VIEW – BREAK INTO TWO LINES */
@media (max-width: 768px) {
  .pink-text {
    white-space: normal;      /* allow wrapping */
    display: block;           /* force line break */
    max-width: 200px;         /* adjust width to break nicely */
    line-height: 1.3;
  }
}
