* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FFFDFB;
  color: #3A3442;
  font-family: 'Poppins', sans-serif;
}
/* HERO SEARCH — placement & style fix only */
.hero-search {
  margin: 26px auto 36px;
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 50px;
  max-width: 520px;

  background: linear-gradient(
    90deg,
    rgba(242,184,198,0.75),
    rgba(201,182,228,0.75)
  );
  backdrop-filter: blur(10px);
}

.hero-search input {
  flex: 1;
  border: none;
  background: rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 10px 14px;
  font-size: 13px;
  color: #4E445E;
}

.hero-search input::placeholder {
  color: #7A6E8C;
}

.hero-search button {
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.4);
  color: #3A3442;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-search button:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Ensure Airbnb button sits clearly below */
.hero-btn {
  display: inline-block;
  margin-top: 6px;
}
/* SECTION HEADINGS — shadow + animation (Your Stay, Gallery only) */
.section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;

  opacity: 0;
  transform: translateY(18px);
  text-shadow: 0 0 0 rgba(201,182,228,0);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    text-shadow 1.2s ease;
}

/* When section is revealed */
.section.reveal.active h2 {
  opacity: 1;
  transform: translateY(0);
  text-shadow: 
    3px 6px 18px rgba(201,182,228,0.45);
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #F2B8C6, #C9B6E4);
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 500;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: white;
  color: #C9B6E4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(242,184,198,0.45),
    rgba(201,182,228,0.45)
  );
}

.hero-text {
  position: relative;
  text-align: center;
  animation: fadeUp 1.6s ease forwards;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 600;
  color: #3A3442;
}

.hero-text p {
  margin: 18px 0 32px;
  font-size: 18px;
  color: #5B5169;
}

.hero-btn {
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(90deg, #F2B8C6, #C9B6E4);
  color: white;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(201,182,228,0.45);
}

/* SECTIONS */
.section {
  padding: 120px 20px;
  text-align: center;
}

.dreamy-bg {
  background: linear-gradient(180deg, #FFFDFB, #F7F1FA);
}

/* STAY */
.stay-cards {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.stay-card {
  width: 300px;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
}

.stay-card:hover {
  transform: translateY(-12px);
}
/* AMENITIES */
.amenities {
  margin-top: 70px;
  text-align: center;
}

.amenities-title {
  font-size: 16px;
  color: #6A5C7A;
  margin-bottom: 35px;
  letter-spacing: 0.5px;
}

.amenities-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 110px;
  transition: transform 0.4s ease;
}

.amenity i {
  font-size: 22px;
  color: #B6A3DC; /* pastel */
  transition: transform 0.4s ease, color 0.4s ease;
}

.amenity span {
  font-size: 14px;
  color: #4A4358;
}

/* hover – soft & premium */
.amenity:hover {
  transform: translateY(-6px);
}

.amenity:hover i {
  color: #9C86C9;
  transform: scale(1.1);
}

/* mobile spacing */
@media (max-width: 768px) {
  .amenities-list {
    gap: 28px;
  }
}

/* GALLERY */
.gallery-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 28px;
}

.gallery-grid img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s ease;
}

.gallery-grid img:hover {
  transform: scale(1.06);
}

/* LOCATION */
.location-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.map-card iframe {
  width: 100%;
  height: 340px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* CONTACT */
.contact-section {
  background: linear-gradient(180deg, #F7F1FA, #FFFDFB);
}

.contact-sub {
  color: #6A5C7A;
  margin-bottom: 40px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 45px;
}

.contact-btn {
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-btn.call {
  background: linear-gradient(90deg, #F2B8C6, #C9B6E4);
}

.contact-btn.mail {
  background: linear-gradient(90deg, #C9B6E4, #E6C3E8);
}

.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(201,182,228,0.45);
}

/* SOCIALS */
.socials {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.social {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EBDDF4;
  color: #9B86BD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
}

.social.ig:hover { background:#E1306C; color:white; }
.social.fb:hover { background:#1877F2; color:white; }
.social.yt:hover { background:#FF0000; color:white; }
.social.wa:hover { background:#25D366; color:white; }

/* FOOTER */
.footer {
  background: #1E1E1E;
  color: white;
  text-align: center;
  padding: 25px;
}
/* FOOTER LINKS — aesthetic fix only */
.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(201,182,228,0.85);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: rgba(201,182,228,0.6);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #F2B8C6;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-text h1 { font-size: 42px; }
  .location-wrapper { grid-template-columns: 1fr; }
}
.hero-text h1 {
  color: #2F2A36; /* deeper charcoal, not black */
  text-shadow: 
    0 2px 12px rgba(255,255,255,0.25),
    0 6px 28px rgba(0,0,0,0.25);
}
.hero-text p {
  color: #3F384B;
  text-shadow: 0 1px 8px rgba(255,255,255,0.35);
}

/* Navbar logo SVG sizing */
.logo-icon {
  width: 34px;
  height: 34px;
  display: block;
}
