/* ========================
   Body & Layout
   ======================== */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #FFBDC5;
  color: #670626;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
}

main { flex: 1; }

/* ========================
   Header
   ======================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: #670626; /* default solid */
  color: #FFBDC5;
  z-index: 50;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.transparent {
  background: transparent;
  box-shadow: none;
}

header.scrolled {
  background: #670626;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header::before,
header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 189, 197, 0.1);
  z-index: 0;
}

header::before { width: 100px; height: 100px; top: -20px; left: -30px; }
header::after  { width: 150px; height: 150px; bottom: -40px; right: -50px; }

header .logo,
header nav { position: relative; z-index: 1; }

/* Navbar */
nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav .nav-links li a {
  color: #FFBDC5;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav .nav-links li a:hover { color: rgba(255, 189, 197, 0.8); }

/* Hamburger for mobile */
.hamburger { display: none; font-size: 2rem; cursor: pointer; color: inherit; }

/* Mobile Sidebar Menu */
@media (max-width: 768px) {
  nav .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -240px;
    height: 100vh;
    width: 240px;
    background: #670626;
    padding: 2rem 1rem;
    box-shadow: -4px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 999;
  }
  .hamburger { display: block; }
  #menu-toggle:checked + .hamburger + .nav-links { right: 0; }
  nav .nav-links li { margin: 1rem 0; }
  nav .nav-links li a { font-size: 1.1rem; }
}

/* ========================
   Hero Section with Video
   ======================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #670626;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 1rem;
  color: #FFBDC5;
}

.hero-overlay h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-overlay p { font-size: 1.25rem; margin-bottom: 2rem; }

/* ========================
   Flip Cards / Rooms
   ======================== */
.flip-card { perspective: 1000px; margin-bottom: 2rem; }
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}
.flip-card:hover .flip-card-inner,
.flip-card-inner.flipped { transform: rotateY(180deg); }

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  backface-visibility: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.flip-card-front {
  background: #FFBDC5; /* pastel pink background */
  color: #670626;      /* dark maroon text */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.5rem;
}

.flip-card-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.flip-card-front .p-5 { padding: 1.25rem; }

.flip-card-back {
  background: #670626; /* dark maroon */
  color: #FFBDC5;      /* pastel text */
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  text-align: center;
  overflow-y: auto;
  border-radius: 0.5rem;
}


.flip-card-back a {
  margin-top: 1rem;
  background: #FFBDC5;
  color: #670626;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.flip-card-back a:hover {
  background: rgba(255, 189, 197, 0.8);
}
/* ========================
   Amenity Cards
   ======================== */
.amenity-card {
  display: block;
  background: #FFBDC5;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.8s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

[data-animate="top"] { transform: translateY(-50px); }
[data-animate="left"] { transform: translateX(-50px); }
[data-animate="right"] { transform: translateX(50px); }
[data-animate].active { transform: translateX(0) translateY(0); opacity: 1; }

/* ========================
   Sections
   ======================== */
.rooms-section { background-color: #670626; color: #FFBDC5; padding: 6rem 1rem; }
.reviews-section { background-color: #670626; color: #670626; padding: 6rem 1rem; }

/* ========================
   Footer
   ======================== */
footer {
  position: relative;
  background: #670626;
  color: #FFBDC5;
  padding: 2rem 1rem;
  text-align: center;
  overflow: hidden;
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 189, 197, 0.05);
  z-index: 0;
}

footer * { position: relative; z-index: 1; }

/* ========================
   Buttons
   ======================== */
.btn-primary {
  background-color: #FFBDC5;
  color: #670626;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background-color: rgba(255, 189, 197, 0.8);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #670626;
  color: #FFBDC5;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  background-color: rgba(103, 6, 38, 0.8);
  transform: translateY(-2px);
}

/* ========================
   Floating Buttons
   ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 100;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #670626;
  color: #FFBDC5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 100;
  transition: background 0.3s, transform 0.2s;
}
.back-to-top:hover {
  background-color: rgba(103, 6, 38, 0.8);
  transform: translateY(-3px);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 1024px) { .hero { height: 70vh; } }
@media (max-width: 768px) {
  .hero { height: 60vh; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay p { font-size: 1rem; }
  .flip-card-inner { height: 300px; }
}
@media (max-width: 480px) {
  .hero { height: 50vh; }
  .hero-overlay h1 { font-size: 1.5rem; }
  .hero-overlay p { font-size: 0.875rem; }
  .btn-primary { padding: 0.5rem 1rem; font-size: 0.875rem; }
  .flip-card-inner { height: 280px; }
}
section.py-20.bg-white h2 {
  color: #4F4F4F !important;
}

section.py-20.bg-white p {
  color: #A8A8A8 !important;
}
/* Amenity Card Base */
.amenity-card {
  background: #FFBDC5;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  display: block;
  text-align: center;
}

/* Hover Effect: Rotation */
.amenity-card:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Smooth Icon Animation */
.amenity-card svg {
  transition: transform 0.6s ease;
}
.amenity-card:hover svg {
  transform: rotate(360deg);
}
/* Room Cards – Larger and More Visible */
.rooms-section .flip-card-inner {
  height: 450px; /* increased from 350px */
}

.rooms-section .flip-card-front img {
  width: 100%;
  height: 100%;          /* full height */
  object-fit: cover;     /* ensures no distortion */
  border-radius: 0.75rem;
  display: block;
}

.rooms-section .flip-card-front {
  background: #FF97A0; /* slightly darker pink to stand out more */
  color: #670626;
  border-radius: 0.75rem; /* more rounded */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.rooms-section .flip-card-back {
  background: #FF6B7D; /* darker shade for back side */
  color: #111111;      /* text more readable */
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Book Now button inside rooms */
.rooms-section .btn-primary {
  background-color: #FFBDC5;
  color: #670626;
  padding: 0.75rem 1.5rem;
}

.rooms-section .btn-primary:hover {
  background-color: #FF6B7D;
}
.hero-overlay .btn-primary {
  background-color: #670626; /* dark theme */
  color: #FFBDC5;            /* pastel text */
}
.hero-overlay h1,
.hero-overlay p {
  color: #670626; /* explicitly force darker shade */
}
/* Dark theme for Check Availability button in booking section */
section.relative.z-20 .btn-primary {
  background-color: #670626; /* dark maroon */
  color: #FFBDC5;            /* pastel text for contrast */
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s, transform 0.2s;
}

section.relative.z-20 .btn-primary:hover {
  background-color: rgba(103, 6, 38, 0.85); /* slightly lighter on hover */
  transform: translateY(-2px);
}
.rooms-section{
  justify-items: center; /* centers items horizontally */
  align-items: start;
}
/* Room buttons stay light pink and centered */
.room-btn {
  background-color: #FFBDC5 !important; /* light pink */
  color: #670626 !important;           /* dark text */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;                       /* ensures margin auto works */
  width: fit-content;                    /* shrink to content */
}

/* Remove hover darkening for room buttons */
.room-btn:hover {
  background-color: #FFBDC5 !important;
  transform: translateY(-2px);
}
/* Overlay for title + description at top */
.rooms-section .flip-card-front .overlay {
  position: absolute;
  top: 0;              /* stick to the top instead of bottom */
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(103, 6, 38, 0.6); /* semi-transparent maroon */
  color: #FFBDC5;
  text-align: center;
}

/* Title */
.rooms-section .flip-card-front .overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Description */
.rooms-section .flip-card-front .overlay p {
  margin: 0;
  font-size: 1rem;
  color:#111111; /* lighter shade for readability */
}
.transparent-text * {
  color: inherit; /* Keep text color visible */
  opacity: 1;     /* Ensure text is fully visible */
}

.transparent-text img {
  display: none; /* Hide any image inside, if accidentally present */
}

.transparent-text {
  background: transparent; /* Optional: make background see-through */
}
.partners-section {
  background: #FFBDC5;
  padding: 4rem 0;
  text-align: center;
}

.partners-section h2 {
  color: #1E3A29;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.partners-wrapper {
  overflow: hidden;
  width: 100%;
}

.partners-container {
  display: flex;
  width: max-content; /* important for scrolling */
}

.partners {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.partner-logo {
  height: 80px;
  object-fit: contain;
}


