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

:root {
    --primary: #D4A762; /* Warm gold/sand color */
    --primary-dark: #B38D4F;
    --secondary: #4A2C1A; /* Deep brown */
    --light: #F8F5F0; /* Cream/light sand */
    --dark: #2A2118;
    --text: #333333;
    --text-light: #777777;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary);
}

/* Hero Section */
.hotels-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(42, 33, 24, 0.6), rgba(42, 33, 24, 0.6)), 
                url('../../img/hotels/anatara.jpeg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 4rem;
}

.hotels-hero div {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hotels-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    color: orange; /* Matching the excursions page */
}

.hotels-hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Filters Section */
.hotels-filters {
    padding: 3rem 0;
    background-color: white;
}


.filters-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group, .search-group {
    min-width: 250px;
}

.filter-group label, .search-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.filter-group select, .search-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.3s ease;
}

.filter-group select:focus, .search-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(212, 167, 98, 0.2);
}

/* Hotels List */
.hotels-list {
    padding: 4rem 0;
    background-color: var(--light);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

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

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hotel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.category {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem 1.5rem;
    gap: 1rem;
}

.secondary-button {
    display: block;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    flex: 1;
}

.secondary-button:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.cta-buttons {
    display: block;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex: 1;
}

.cta-buttons:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
    color: var(--text-light);
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.load-more-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.load-more-button.hidden {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hotels-hero h1 {
        font-size: 3.5rem;
    }
    .hotels-hero p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hotels-hero {
        height: 60vh;
    }
    .hotels-hero h1 {
        font-size: 3rem;
    }
    .hotels-hero p {
        font-size: 1.3rem;
    }
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    .filters-grid {
        flex-direction: column;
        align-items: center;
    }
    .filter-group, .search-group {
        width: 100%;
        max-width: 350px;
    }
    .card-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hotels-hero h1 {
        font-size: 2.5rem;
    }
}