
/* 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 */
.hero-tozeur {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(42, 33, 24, 0.6), rgba(42, 33, 24, 0.6)), 
                url('../../img/tozeur/palmeraie\ 2.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-tozeur div {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-tozeur 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 */

}

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

/* General Section Styling */
.intro-section, .highlights, .attractions, .culture, .practical-info {
    padding: 6rem 0;
}

.intro-section {
    background-color: white;
}

.highlights, .culture {
    background-color: var(--light);
}



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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

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

/* Highlights Grid */
.highlights-grid, .attractions-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card, .attraction, .info-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;
    padding: 1.5rem;
}

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

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

/* Culture Section */
.culture-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.culture-text {
    flex: 1;
}

.culture-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-tozeur h1 { font-size: 3.5rem; }
    .hero-tozeur p { font-size: 1.5rem; }
    .culture-content { flex-direction: column; }
}

@media (max-width: 768px) {
    .hero-tozeur { height: 60vh; }
    .hero-tozeur h1 { font-size: 3rem; }
    .hero-tozeur p { font-size: 1.3rem; }
    .section-header h2 { font-size: 2.4rem; }
    .highlights-grid, .attractions-grid, .info-grid { grid-template-columns: 1fr; }
}

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