/* Experiences Page Styles */

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Experience Filters */
.experience-filters {
    background-color: #f8f8f8;
    padding: 20px 0;
    margin-bottom: 30px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 1rem;
}

.filter-btn {
    padding: 10px 20px;
    height: 42px;
}

/* Experiences List */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.experience-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.experience-content {
    padding: 20px;
}

.experience-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.experience-location {
    color: var(--text-color-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.experience-location i {
    margin-right: 5px;
    color: var(--accent-color);
}

.experience-description {
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.5;
}

.experience-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.detail i {
    margin-right: 5px;
    color: var(--primary-color);
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    display: flex;
    flex-direction: column;
}

.price .amount {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.price .per {
    font-size: 0.8rem;
    color: var(--text-color-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 40px 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #f0f0f0;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

.pagination a.next i {
    margin-left: 5px;
}

/* Host Experience Section */
.host-experience {
    background-color: var(--secondary-color);
    padding: 60px 0;
    margin-top: 40px;
}

.host-experience-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.host-experience-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.host-experience-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.host-experience-content .btn {
    background-color: white;
    color: var(--secondary-color);
}

.host-experience-content .btn:hover {
    background-color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-group {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        max-width: 100%;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .host-experience-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .experience-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .experience-footer .btn {
        width: 100%;
    }
    
    .pagination a {
        width: 35px;
        height: 35px;
    }
}