/* Global Premium Styling */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary-pink: #d81b60; /* Deep premium pink */
  --secondary-pink: #f48fb1; /* Soft pink */
  --light-bg: #fff5f8;
  --dark-text: #2c1a24;
  --white: #ffffff;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: var(--light-bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Nav */
header {
  background-color: var(--white);
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-pink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 600;
  color: var(--dark-text);
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-pink);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
  color: var(--white);
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 26, 36, 0.6);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(-20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal h2 {
  color: var(--primary-pink);
  margin-bottom: 1.5rem;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input, 
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}

/* Sections */
.section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-pink);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Features/Amenities Cards */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(216, 27, 96, 0.15);
}

.amenity-card .icon {
  font-size: 3rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

/* Gallery Base */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: var(--transition);
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: var(--white);
  padding: 3rem 5% 1rem 5%;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
  max-width: 1400px;
  margin: 0 auto 2rem auto;
}

.footer-col h3 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray);
  font-weight: normal;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.5rem;
  color: var(--gray);
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: var(--primary-pink);
  font-weight: bold;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 3px;
  transition: all 0.35s ease;
  position: relative;
}

.hamburger span + span {
  margin-top: 5px;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1050;
    gap: 0;
    border-top: 2px solid var(--secondary-pink);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 12px 20px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    background-color: var(--light-bg);
    color: var(--primary-pink);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .navbar .btn-primary.book-now-btn {
    display: none;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    position: relative;
  }

  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-container {
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}
