/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* Reset and global base */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #fdfaf6;
  line-height: 1.6;
}

body {
  position: relative;
  z-index: 1;
}

/* Background video (index only) */
.video-background {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

/* Header & navbar */
.site-header {
  background: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 0; width: 100%;
  z-index: 999;
  backdrop-filter: blur(10px);
  font-family: 'Playfair Display', serif;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 25px;
}

.logo {
  font-size: 2em;
  font-weight: 900;
  color: #a05260;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  letter-spacing: 1.2px;
  animation: fadeInLeft 3s infinite alternate ease-in-out;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

@keyframes fadeInLeft {
  from { opacity: 0.2; transform: translateX(-10%); }
  to { opacity: 1; transform: translateX(0); }
}

.logo-hover {
  color: #f3c300;
  text-shadow: 2px 2px 10px rgba(243, 195, 0, 0.8);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05em;
  font-weight: 600;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f3c300;
  left: 0;
  bottom: -4px;
  transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a[aria-current="page"]::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #f3c300;
}

/* Hamburger menu toggle (hidden by default) */
.menu-toggle {
  display: none;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .logo {
    font-size: 1.5em;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.8em;
    color: #fff;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background: rgba(0,0,0,0.95);
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 10px 0;
  }

  .nav-links li a {
    font-size: 1.1em;
  }
}

/* Hero (index) */
.fancy-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: rgba(0, 0, 0, 0.55);
  text-align: center;
  padding: 0 15px;
}

.hero-content {
  max-width: 700px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.8em;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  text-shadow: 3px 3px 14px rgba(0,0,0,0.85);
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.35em;
  margin-bottom: 36px;
  font-weight: 500;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* CTA button */
.cta-button {
  display: inline-block;
  background: #f3c300;
  color: #333;
  padding: 14px 38px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.15em;
  box-shadow: 0 5px 14px rgba(243,195,0,0.75);
  transition: background 0.3s, transform 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #e0b100;
  transform: translateY(-4px);
}

/* About section */
.blended-about {
  background: rgba(255,250,240,0.95);
  margin: 80px auto;
  max-width: 1100px;
  border-radius: 18px;
  padding: 80px 20px;
  text-align: center;
}

.blended-about h2 {
  font-size: 2.8em;
  color: #a05260;
  font-family: 'Playfair Display', serif;
  margin-bottom: 42px;
  letter-spacing: 0.8px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 38px;
  max-width: 980px;
  margin: 0 auto;
}

.about-item {
  transition: transform 0.3s;
}

.about-item:hover {
  transform: translateY(-5px);
}

.about-icon {
  width: 68px;
  margin-bottom: 14px;
}

.about-item h3 {
  font-size: 1.65em;
  color: #a05260;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.about-item p {
  color: #6e4a45;
  font-weight: 600;
}

/* Testimonial */
.testimonial {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 24px;
  border-left: 6px solid #a05260;
  box-shadow: 0 6px 22px rgba(160,82,96,0.1);
  border-radius: 6px;
  font-style: italic;
}

/* Gallery section */
.gallery-section {
  background: rgba(255,255,255,0.85);
  padding: 90px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.8em;
  color: #a05260;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  letter-spacing: 0.8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.07);
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 24px;
}

/* ROOMS HERO BANNER */
.rooms-hero {
  position: relative;
  background: url('bedroom.png.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.rooms-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.rooms-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.rooms-hero-content h1 {
  font-size: 3em;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeSlideUp 1.2s ease-out forwards;
}

.rooms-hero-content p {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeSlideUp 1.8s ease-out forwards;
  animation-delay: 0.3s;
}

/* Fade-slide up keyframes */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ROOMS LIST */
.rooms-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  background: #fdfaf6;
}

/* ROOM CARD DESIGN */
.room-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  font-weight: 800;
  color: #8b3e4e;
  margin: 16px;
  letter-spacing: 0.5px;
}

.room-card p {
  margin: 0 16px 16px;
  color: #555;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 400;
}

.room-card .cta-button {
  margin: 0 16px 20px;
  align-self: flex-start;
  background: #f3c300;
  color: #333;
  padding: 10px 26px;
  font-size: 0.95em;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(243,195,0,0.5);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s, transform 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-card .cta-button:hover {
  background: #e0b100;
  transform: translateY(-2px);
}



/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
  background: #1ebea5;
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}
