/* Guides Page Specific Styles */

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.svg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Guide Filters */
.guide-filters {
    background-color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.5rem;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.filter-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
}

/* Guides List */
.guides-list {
    padding: 2rem 0 5rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guide-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.guide-img {
    height: 250px;
    overflow: hidden;
}

.guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-img img {
    transform: scale(1.1);
}

.guide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.guide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.guide-location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.guide-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.guide-specialties span {
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--dark-color);
}

.guide-bio {
    margin-bottom: 1.5rem;
    color: #555;
    flex-grow: 1;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #777;
}

.guide-actions {
    display: flex;
    gap: 1rem;
}

.guide-actions .btn {
    flex: 1;
    text-align: center;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.pagination a.next {
    width: auto;
    padding: 0 1rem;
    border-radius: 20px;
}

/* Become a Guide Section */
.become-guide {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.svg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
    margin-top: 3rem;
}

.become-guide-content {
    max-width: 700px;
    margin: 0 auto;
}

.become-guide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.become-guide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 7rem 1rem 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .guide-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .guide-actions {
        flex-direction: column;
    }
}