/* Partners Page Specific Styles */

/* Partners Intro Section */
.professionals-intro {
    padding: 60px 0;
    background-color: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Filter Section */
.professionals-filter {
    padding: 20px 0 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.professionals-filter h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-btn {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #555;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #f1f1f1;
}

.filter-btn.active {
    background-color: #b87333;
    color: #fff;
    border-color: #b87333;
}

/* Partners Grid */
.professionals-grid {
    padding: 60px 0;
    background-color: #fff;
}

.professionals-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Partner Card */
.professional-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.professional-header {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.professional-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 5px;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
}

.professional-info {
    display: flex;
    flex-direction: column;
}

.professional-title {
    color: #b87333;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.professional-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.specialty {
    background-color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

.professional-bio {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.professional-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.professional-contact p {
    font-size: 1rem;
}

.professional-contact .social-links {
    display: flex;
    gap: 15px;
}

.professional-contact .social-links a {
    color: #555;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.professional-contact .social-links a:hover {
    color: #b87333;
}

.booking-options {
    display: flex;
    gap: 15px;
}

.booking-options .btn {
    padding: 10px 20px;
}

.booking-options .primary {
    background-color: #b87333;
    color: #fff;
    border: 1px solid #b87333;
}

.booking-options .primary:hover {
    background-color: #a0662e;
    border-color: #a0662e;
}

.booking-options .secondary {
    background-color: #fff;
    color: #b87333;
    border: 1px solid #b87333;
}

.booking-options .secondary:hover {
    background-color: #f9f9f9;
}

.booking-options .outline {
    background-color: transparent;
    border: 1px solid #b87333;
    color: #b87333;
}

/* Partner Gallery */
.professional-gallery {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    width: 200px;
}

.gallery-thumbnail {
    width: 100%;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnail:hover img {
    transform: scale(1.1);
}

/* Join Our Team Section */
.join-our-team {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.join-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Media queries */
@media (max-width: 1024px) {
    .professional-content {
        grid-template-columns: 1fr;
    }
    
    .professional-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .professional-card {
        padding: 20px;
    }
    
    .booking-options {
        justify-content: center;
    }
    
    .professional-contact {
        flex-direction: column;
        gap: 15px;
    }
    
    .professional-header h3 {
        font-size: 1.6rem;
    }
} 