

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
: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: #2A2118;
}

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/circuits/douz2.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 4rem;
}

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

.hotels-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    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);
}

/* General Section */
.general {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    
}


.general .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--secondary);

}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Destinations Section */
.destinations {
    padding: 6rem 0;
    background-color: var(--light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-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;
}

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

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

.destination-content {
    padding: 1.5rem;
}

.destination-content p {
    font-size: 1.1rem;
    color: var(--light);
    margin: 0;
}

/* 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;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

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