/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Cinzel', serif; color: #D4AF37; }
img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; transition: 0.3s; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.divider { height: 3px; width: 60px; background: #D4AF37; margin: 10px auto; }

/* ================= HEADER ================= */
.top-header {
    background: #2c2c2c;
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}
.flex-between { display: flex; justify-content: space-between; align-items: center; }

.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; }
.logo-text h1 { font-size: 1.5rem; line-height: 1; margin: 0; }
.logo-text small { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: #555; }

.nav-menu a {
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    transition: 0.3s;
}
.nav-menu a:hover { color: #D4AF37; }

.btn-gold {
    background: linear-gradient(45deg, #D4AF37, #F3E5AB);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); }

/* Mobile Nav Hide */
@media (max-width: 768px) {
    .nav-menu { display: none; }
}

/* ================= HERO SECTION ================= */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    z-index: -2;
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}
.hero-content { z-index: 2; padding: 20px; animation: fadeInUp 1s ease-out; }

.badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #D4AF37;
    padding: 5px 15px;
    border-radius: 20px;
    color: #F3E5AB;
    display: inline-block;
    margin-bottom: 20px;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-group { display: flex; justify-content: center; gap: 15px; }
.btn-gold-lg {
    background: #D4AF37; color: #000; padding: 15px 30px; border-radius: 5px; font-weight: 700; font-size: 1rem;
}
.btn-outline {
    border: 2px solid #fff; background: transparent; color: #fff; padding: 15px 30px; border-radius: 5px; font-weight: 700; font-size: 1rem;
}
.btn-gold-lg:hover, .btn-outline:hover { transform: translateY(-3px); }

/* ================= AMENITIES ================= */
.section { padding: 80px 0; }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.amenity-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}
.amenity-box:hover { transform: translateY(-5px); border-color: #D4AF37; }
.amenity-box i { font-size: 2.5rem; color: #D4AF37; margin-bottom: 15px; }

/* ================= ROOMS ================= */
.rooms { background: #fdfbf7; }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.room-card:hover { transform: translateY(-10px); }

.image-box { height: 250px; position: relative; overflow: hidden; }
/* IMAGE FIX: Force all room images to fill the box */
.image-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.room-card:hover .image-box img { transform: scale(1.1); }

.price {
    position: absolute; bottom: 15px; right: 15px;
    background: #D4AF37; color: #fff; padding: 5px 15px; font-weight: 700; border-radius: 5px;
}
.room-details { padding: 25px; }
.icons { display: flex; gap: 15px; margin: 15px 0; color: #666; font-size: 0.9rem; }
.icons i { color: #D4AF37; }

.btn-block {
    width: 100%; background: #333; color: #fff; padding: 12px; font-weight: 600; border-radius: 5px;
}
.btn-block:hover { background: #D4AF37; }

/* ================= GALLERY (FIXED) ================= */
.gallery-grid {
    display: grid;
    /* Strict Grid for Uniform Sizes */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.gallery-item {
    height: 250px; /* Force Height */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* IMAGE FIX: Force all gallery images to same size */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop to fit, don't stretch */
    transition: 0.3s;
}
.gallery-item img:hover { transform: scale(1.05); }

/* ================= CONTACT ================= */
.contact { background: #222; color: #fff; text-align: center; }
.info-row {
    display: flex; justify-content: center; gap: 40px; margin-top: 30px; flex-wrap: wrap;
}
.info-row div {
    display: flex; align-items: center; gap: 10px; font-size: 1.2rem; cursor: pointer; transition: 0.3s;
}
.info-row div:hover { color: #D4AF37; }

/* ================= FOOTER & FLOAT ================= */
footer { background: #111; color: #555; text-align: center; padding: 20px; border-top: 1px solid #333; }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; color: #fff;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 2000; transition: 0.3s;
}
.whatsapp-float:hover { transform: translateY(-5px); }

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .btn-group { flex-direction: column; }
    .nav-menu { display: none; }
}