* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff7fa;
  color: #3e2c4e;
}

/* ================= HERO ================= */

.hero {
  padding: 30px 60px;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  width: 90px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #3e2c4e;
  font-weight: 400;
}

.nav-links li a:hover {
  color: #6A1EB1;
}

.login-btn {
  background: transparent;
  border: 1px solid #6A1EB1;
  color: #6A1EB1;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* ================= HERO CONTENT ================= */

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
  align-items: center;
}

/* ================= TEXT ================= */

.text h1 {
  font-size: 52px;
  line-height: 1.2;
}

.text h1 span {
  color: #CFA8E8;
}

.line {
  display: inline-block;
  width: 5px;
  height: 55px;
  background: #CFA8E8;
  margin-right: 15px;
}

.text p {
  margin: 25px 0;
  max-width: 450px;
  font-size: 15px;
  color: #6A1EB1;
}

/* ================= SLIDER ================= */

.slider {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.cards-wrapper {
  overflow: visible;
}

.cards {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.card {
  flex: 0 0 80%;
  margin: 0 10px;
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.card.active {
  opacity: 1;
  transform: scale(1);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}


.dots {
  text-align: center;
  margin-top: 15px;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #333;
}

/* ================= WRAPPER CARD ================= */
#about{
 background: linear-gradient(
  135deg,
  rgba(255, 240, 245, 0.8),
  rgba(105, 67, 154, 0.8)
);
color: #3e2c4e;

}
.wrapper {
  position: relative;
  width: 90%;
  max-width: 500px;
  margin: 80px auto 40px auto;
  padding: 120px 20px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6A1EB1, #CFA8E8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.image-wrapper img {
  width: 95%;
  height: 95%;
  border-radius: 50%;
  object-fit: cover;
}

.text-wrapper h3 {
  padding-top: 30px;
  text-align: center;
}

.text-wrapper p {
  text-align: center;
}



/*Reminders*/
.policy-section {
  max-width: 650px;
  margin: 100px auto;
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(170, 120, 200, 0.12);
}

.policy-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.policy-group {
  margin-bottom: 30px;
}

.policy-group h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #6A1EB1;
}

.policy-group p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b3a5a;
}

/*How to book*/
.section-title{
  font-size: 30px;
}
.section-subtitle{
  margin-bottom: 20px;
}
.how-section{
text-align: center;
}

.how-container{
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px;
}

.how-card{
  position: relative;
  box-shadow: 0px 15px 40px rgba(170, 120, 200, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  width: 100%;
  padding: 50px 30px 20px;
}

.how-number{
  position: absolute;
  top: -30px;
  background-color: #CFA8E8;
  width: 70px;
  height:70px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.how-icon {
  font-size: 40px;
  margin: 15px 0;
}

.how-card h3 {
  margin-bottom: 10px;
}








/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .middle {
    grid-template-columns: 1fr;
  }

  .text p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {

  .hero {
    padding: 20px;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  .hero-content {
    margin-top: 40px;
  }

  .text h1 {
    font-size: 32px;
  }

  .line {
    height: 35px;
  }

  .card {
    flex: 0 0 100%;
  }

  .card img {
    height: 220px;
  }

  .wrapper {
    padding: 100px 15px 20px;
    margin-top: 100px;
  }

  .image-wrapper {
    width: 150px;
    height: 150px;
    top: -55px;
  }
}
@media (max-width: 992px){
  .how-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .how-grid{
    grid-template-columns: 1fr;
  }
}
