/* Additional styles for tours page */
.page-header {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.25rem;
}

.tours-listing {
    background: var(--bg-light);
}

.tour-includes {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.tour-includes li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.tour-includes i {
    color: var(--primary-color);
    margin-right: 8px;
}

.tour-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .tour-actions .btn {
        width: 100%;
    }
}
