/* --- Global Styles & Variables --- */
:root {
    --primary-color: #0d1b2a;
    --secondary-color: #415a77;
    --accent-color: #8fd113;
    --text-color: #333;
    --light-text-color: #e0e1dd;
    --bg-color: #f8f9fa;
    --white-color: #FFFFFF;
    --font-family: 'Poppins', sans-serif;
    --header-height: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); line-height: 1.6; color: var(--text-color); background-color: var(--bg-color); overflow-x: hidden; }
.container { max-width: 1200px; margin: auto; padding: 5rem 2rem; }
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 10px;
    overflow: hidden; /* For animation */
}
.title-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 3rem auto; color: #666; }

/* --- HEADER & NAVIGATION (Unchanged) --- */
#header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; background-color: transparent; transition: background-color 0.4s ease, box-shadow 0.4s ease; }
#header.scrolled { background-color: rgba(13, 27, 42, 0.95); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); }
.nav-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: var(--header-height); padding: 0 2rem; transition: height 0.4s ease; }
#header.scrolled .nav-container { height: 70px; }
.logo { color: var(--white-color); font-size: 1.8rem; font-weight: 700; text-decoration: none; letter-spacing: -1px; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { color: var(--white-color); text-decoration: none; font-weight: 500; position: relative; padding-bottom: 8px; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; transform: translateX(-50%); background-color: var(--accent-color); transition: width 0.4s ease; }
.nav-links a:hover { color: var(--accent-color); }
.nav-links a:hover::after { width: 100%; }

/* --- HERO SECTION WITH VIDEO --- */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 0;
}
.hero-content { max-width: 800px; z-index: 1; }
/* Helper for text reveal animation */
.text-reveal-container { overflow: hidden; }
.hero-headline { font-size: 4rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: -2px; }
.hero-subheadline { font-size: 1.3rem; margin-bottom: 2.5rem; font-weight: 300; color: var(--light-text-color); }
.btn-primary { background-color: var(--accent-color); color: var(--primary-color); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(224, 177, 203, 0.3); }

/* --- ROOMS SECTION --- */
.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.card-buttons {
    display: flex;
    gap: 15px;
}

.btn-view,
.btn-book {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.btn-view {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-view:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.btn-book {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 2px solid var(--secondary-color);
}

.btn-book:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* --- AMENITIES SECTION (5x2 Grid & Larger Cards) --- */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;    /* centers rows horizontally */
  align-items: center;        /* centers items vertically */
  gap: 2rem;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  height: 150px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.amenity-item i {
    /* Increased icon size */
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    align-items: center;
}

.amenity-item span {
    display: block;
    font-weight: 500;
    /* Increased font size */
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.4;
}


/* --- CONTACT, FOOTER, MODALS, FABs, RESPONSIVE (Unchanged) --- */
/* (All other styles from the previous version are still valid and work here) */
.map-container { border-radius: 15px; overflow: hidden; margin-top: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
footer { background-color: var(--primary-color); color: var(--light-text-color); padding: 3rem 5%; text-align: center; }
.social-links { margin-top: 1rem; }
.social-links a { color: var(--light-text-color); font-size: 1.2rem; margin: 0 15px; transition: color 0.3s ease; }
.social-links a:hover { color: var(--accent-color); }
.modal { display: none; position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.9); opacity: 0; transition: opacity 0.3s ease; }
.modal.active { display: block; opacity: 1; }
.modal-content { position: relative; margin: auto; padding: 20px; width: 90%; max-width: 900px; top: 50%; transform: translateY(-50%); }
.close-modal { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.close-modal:hover, .close-modal:focus { color: #bbb; }
.slider { position: relative; }
.slides img { width: 100%; height: 80vh; object-fit: contain; display: none; }
.slides img.active { display: block; }
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px; color: white; font-weight: bold; font-size: 24px; transition: 0.6s ease; user-select: none; }
.next { right: -50px; border-radius: 3px 0 0 3px; }
.prev { left: -50px; border-radius: 0 3px 3px 0; }
.prev:hover, .next:hover { background-color: rgba(255,255,255,0.2); }
.booking-form-content { background-color: #fff; max-width: 500px; padding: 40px; border-radius: 10px; text-align: center; }
.booking-form-content h2 { color: var(--primary-color); margin-bottom: 10px; }
#bookingForm { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
#bookingForm input { padding: 15px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; font-family: var(--font-family); }
#bookingForm button { padding: 15px; }
.fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; gap: 15px; }
.fab { width: 60px; height: 60px; border-radius: 50%; color: var(--white-color); display: flex; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.3s ease, box-shadow 0.3s ease; transform: scale(0); } /* Initially hidden for animation */
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.whatsapp-fab { background-color: #25D366; }
.location-fab { background-color: var(--secondary-color); }
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--white-color); margin: 5px; transition: all 0.3s ease; }
@media screen and (max-width: 992px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (max-width: 768px) { .nav-links { position: fixed; right: 0; height: 100vh; top: 0; background-color: var(--primary-color); flex-direction: column; align-items: center; justify-content: center; width: 70%; transform: translateX(100%); transition: transform 0.5s ease-in; gap: 25px; } .nav-links.nav-active { transform: translateX(0%); } .burger { display: block; z-index: 1001; } #header.scrolled .burger div { background-color: var(--white-color); } .hero-headline { font-size: 2.8rem; } .section-title { font-size: 2.2rem; } .room-cards { grid-template-columns: 1fr; } .prev, .next { right: 10px; } .prev { left: 10px; } }
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }