/* THE INFINITY COLLECTIVE */
.collective {
    padding: 100px 0;
    background: linear-gradient(45deg, #f5623d, #c92b87);
    color: #fff;
    height: auto;
}

.collective_title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff; /* White title */
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.collective_subtitle {
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 80px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.profile-card {
    display: flex;
    align-items: center;
    background: #9c27b0; /* Lighter purple/magenta for cards */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 auto 60px auto;
    max-width: 1100px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-image {
    width: 40%;
    height: 500px; /* Taller image area */
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-content {
    width: 60%;
    padding: 50px;
    color: #fff;
}

.profile-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 400;
}

.profile-bio {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

.learn-more-btn {
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 10px 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* Layout Variations */
.layout-left {
    flex-direction: row;
}

.layout-right {
    flex-direction: row-reverse;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid #eee;
    background-color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #4b004a;
}

.modal-body {
    padding: 40px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #333;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .profile-card {
        flex-direction: column !important; /* Stack on smaller screens */
        text-align: center;
    }

    .profile-image {
        width: 100%;
        height: 350px;
    }

    .profile-content {
        width: 100%;
        padding: 40px 30px;
    }
    
    .profile-content h2 {
        font-size: 2.2rem;
    }

    .collective_title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
}
