/* Trips Page */
.trips-page {
    padding: 3rem 0;
}

.page-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--brand-silver);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Trips Grid */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.trip-card {
    background: rgba(31, 41, 55, 0.8);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trip-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.trip-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.trip-content {
    padding: 1.5rem;
}

.trip-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trip-description {
    color: var(--brand-silver);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trip-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.375rem;
}

.trip-distance {
    font-size: 0.875rem;
    color: var(--brand-silver);
}

.trip-bike {
    font-size: 0.875rem;
    color: var(--brand-red);
    font-weight: 700;
}

/* Trip Planning Section */
.trip-planning {
    background: rgba(31, 41, 55, 0.5);
    padding: 4rem 0;
}

.planning-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.planning-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.planning-content > p {
    font-size: 1.125rem;
    color: var(--brand-silver);
    margin-bottom: 3rem;
}

.planning-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--brand-silver);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .trips-grid {
        grid-template-columns: 1fr;
    }
    
    .trip-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .planning-content h2 {
        font-size: 2rem;
    }
    
    .planning-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}