/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #0f172a;       /* Deep Navy Blue (Background) */
    --secondary-color: #1e293b;     /* Lighter Navy (Cards) */
    --accent-gold: #d4af37;         /* Luxury Gold */
    --accent-gold-hover: #b5952f;
    --text-light: #f8fafc;          /* White-ish text */
    --text-muted: #94a3b8;          /* Grey text */
    --whatsapp-green: #25d366;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

ul { list-style: none; }
a { text-decoration: none; transition: var(--transition); }
img { width: 100%; display: block; }

/* =========================================
   2. TYPOGRAPHY & UTILITIES
   ========================================= */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* Section Spacing */
.section { padding: 80px 0; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* =========================================
   3. TOP BAR & HEADER
   ========================================= */
.top-bar {
    background: #020617;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-item {
    color: var(--text-muted);
}

.contact-item i { margin-right: 8px; color: var(--accent-gold); }
.contact-item a { color: var(--text-muted); }
.contact-item a:hover { color: var(--accent-gold); }

/* Main Header */
.main-header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo h1 { font-size: 1.8rem; margin: 0; }
.logo i { margin-right: 10px; }

.navbar a {
    color: var(--text-light);
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.navbar a:hover { color: var(--accent-gold); }

/* Buttons */
.btn-primary {
    background: var(--accent-gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: #000;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    height: 85vh;
    background: url('images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15,23,42,0.7), rgba(15,23,42,0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content .subtitle {
    display: block;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* =========================================
   5. ROOMS & CARDS (Crucial Part)
   ========================================= */
.room-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.room-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.room-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img { transform: scale(1.1); }

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.room-details { padding: 25px; text-align: center; }

.room-details h3 { font-size: 1.5rem; margin-bottom: 10px; }
.room-details p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

.room-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.room-meta i { color: var(--accent-gold); margin-right: 5px; }

.btn-outline {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #000;
}

/* =========================================
   6. FACILITIES & GALLERY
   ========================================= */
.facility-box {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.facility-box:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.facility-box i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Gallery */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

/* =========================================
   7. REVIEWS & FOOTER
   ========================================= */
.review-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border-top: 3px solid var(--accent-gold);
}

.stars { margin-bottom: 15px; font-size: 0.9rem; }
.review-card p { font-style: italic; color: #cbd5e1; margin-bottom: 15px; }
.review-card h5 { color: var(--accent-gold); font-weight: 600; }

/* Map */
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 15px;
    filter: grayscale(0.5); /* Stylish Map */
}
.map-container iframe:hover { filter: grayscale(0); }

/* Footer */
.main-footer {
    background: #020617;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 { font-size: 1.4rem; margin-bottom: 20px; color: #fff; }
.footer-col p, .footer-col a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent-gold); padding-left: 5px; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #64748b;
}

/* =========================================
   8. MEDIA QUERIES (Mobile Responsiveness)
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .grid-2 { grid-template-columns: 1fr; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 3rem; }
    .navbar { display: none; } /* Simplified for now */
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .top-bar { display: none; }
    .section { padding: 50px 0; }
}