/* Destinations page specific styles */

.destinations-main {
    padding-top: 0; /* Remove navbar padding */
}

/* Hero section */
.destinations-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/placeholder-hero.svg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.destinations-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destinations-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Trek categories section */
.trek-categories {
    padding: 4rem 10%;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background-color: #f0f0f0;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background-color: #e0e0e0;
}

.filter-btn.active {
    background-color: #2c3e50;
    color: white;
}

/* Trek cards grid */
.treks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.trek-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trek-info {
    padding: 1.5rem;
}

.trek-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.trek-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.trek-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trek-details i {
    color: #e67e22;
}

.trek-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trek-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.trek-button:hover {
    background-color: #34495e;
}

/* Custom trek section */
.custom-trek {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('placeholder-hero.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 10%;
    text-align: center;
    color: white;
}

.custom-trek-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-trek h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.custom-trek p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .category-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
    }

    .trek-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .custom-trek h2 {
        font-size: 2rem;
    }

    .custom-trek p {
        font-size: 1rem;
    }
}

/* Animation for trek cards */
.trek-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.trek-card.visible {
    opacity: 1;
    transform: translateY(0);
}