/* Hotels Page Styles */

header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 1rem;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Hotel Grid */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.hotel-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-stars {
    color: gold;
    margin-bottom: 0.5rem;
}

.hotel-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: var(--primary);
}

.hotel-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #005a9c;
}

@media (max-width: 800px) {
    header h1 {
        font-size: 2rem;
    }

    .stats {
        gap: 1rem;
    }
}

/* ======================================== DARK MODE ======================================== */

.body-dark .stats {
    background: var(--dark-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

.body-dark .stat-label {
    color: var(--white);
}

.body-dark .hotel-card {
    background: var(--dark-bg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.body-dark .hotel-title {
    color: var(--tertiary);
}

.body-dark .hotel-location,
.body-dark .hotel-desc {
    color: var(--white);
}