:root {
    --primary: #d4af37; /* Gold */
    --primary-dark: #b5952f;
    --dark: #121212;
    --dark-surface: #1e1e1e;
    --light: #ffffff;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--light);
    background-color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: invert(1);
    transform: scale(1.8);
    transform-origin: left center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/images/the_elite_inn_room_3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

/* Search Bar */
.search-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.input-group input, .input-group select {
    padding: 1rem;
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    min-width: 150px;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.btn-search {
    padding: 1.1rem 2rem;
    background: var(--primary);
    color: var(--dark);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    background: var(--primary-dark);
}

/* Common Section */
.section {
    padding: 6rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-text {
    flex: 1;
}
.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.about-text strong {
    color: var(--light);
}
.about-image {
    flex: 1;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--dark-surface);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.amenity-card p {
    color: var(--text-muted);
}

/* Rooms */
.rooms {
    background: #0a0a0a;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.room-card {
    background: var(--dark-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.room-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-info {
    padding: 1.5rem;
    text-align: center;
}

.room-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.room-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
}

.room-info .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #555;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Floating WA */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.float-wa:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 15px;
    }
    .logo-img {
        height: 40px;
        transform: scale(1.8);
        transform-origin: left center;
    }
    .nav-links {
        display: none;
    }
    .btn-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .hero {
        align-items: flex-start;
        padding-top: 130px;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 1rem;
    }
    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .input-group input, .input-group select {
        width: 100%;
    }
    .btn-search {
        margin-top: 1rem;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        flex-direction: column;
    }
    .about-text h2 {
        text-align: center !important;
    }
}
