:root {
    --primary-blue: #0f2f57; --accent-gold: #d4af37; --light-beige: #f9f7f2;
    --white: #ffffff; --text-dark: #333333; --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --font-heading: 'Playfair Display', serif; --font-body: 'Poppins', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--light-beige); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--primary-blue); }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: #fff; }
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary-blue); font-family: var(--font-heading); }
.logo span { color: var(--accent-gold); }
.nav-menu { display: flex; gap: 25px; align-items: center; }
.nav-link { color: var(--primary-blue); font-weight: 500; }
.btn-nav { background: var(--accent-gold); color: #fff; padding: 8px 20px; border-radius: 50px; }
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: var(--primary-blue); margin: 5px; }
.hero { height: 100vh; position: relative; overflow: hidden; }
.slider { height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; opacity: 0; transition: 1.2s; }
.slide::before { content: ''; position: absolute; width: 100%; height: 100%; background: rgba(15,47,87,0.4); }
.slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.hero-content h1 { font-size: 48px; color: #fff; margin-bottom: 20px; }
.btn-primary { background: var(--accent-gold); color: #fff; padding: 15px 30px; border-radius: 50px; border: none; cursor: pointer; display: inline-block; margin: 10px; font-weight: 600; }
.btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; padding: 13px 30px; border-radius: 50px; display: inline-block; margin: 10px; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.room-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.room-card:hover { transform: translateY(-10px); }
.room-img { height: 220px; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.price { position: absolute; bottom: 15px; right: 15px; background: var(--accent-gold); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 600; }
.room-info { padding: 20px; text-align: center; }
.features { display: flex; justify-content: center; gap: 10px; font-size: 13px; margin: 15px 0; color: #666; }
.btn-room { display: block; padding: 10px; border: 1px solid var(--primary-blue); color: var(--primary-blue); border-radius: 5px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { height: 200px; cursor: pointer; overflow: hidden; border-radius: 10px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.booking-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: #fff; padding: 30px; border-radius: 20px; box-shadow: var(--shadow); }
input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; }
.map-wrapper { height: 400px; border-radius: 15px; overflow: hidden; position: relative; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }
.location-details { position: absolute; bottom: 10px; left: 10px; right: 10px; background: rgba(255,255,255,0.9); padding: 15px; border-radius: 10px; font-size: 14px; }
footer { background: var(--primary-blue); color: #fff; padding: 50px 0 20px; text-align: center; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.float-whatsapp { position: fixed; bottom: 25px; right: 25px; background: #25d366; color: #fff; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); display: none; justify-content: center; align-items: center; z-index: 2000; }
.lightbox-content { max-width: 90%; max-height: 80%; border: 3px solid #fff; }
.close-lightbox { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }
@media (max-width: 768px) {
    .nav-menu { position: fixed; right: -100%; top: 70px; background: #fff; width: 100%; flex-direction: column; padding: 30px; transition: 0.4s; }
    .nav-menu.active { right: 0; }
    .menu-toggle { display: block; }
    .booking-container { grid-template-columns: 1fr; }
}