/* couples-section.css - Styling for the couple's section with photos and names */

.couple-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
    max-width: 100%;
}

.couple-profile {
    text-align: center;
    flex-shrink: 1;
    min-width: 0;
}

.couple-profile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ae6070;
    margin-bottom: 0.5rem;
    max-width: 100%;
}

.couple-name {
    font-size: 1.6rem;
    color: #a18b42;
    word-break: break-word;
}

p.couple-thai-name {
    font-size: 0.9rem;
    color: #4a471e;
    word-break: break-word;
}

.heart-separator {
    display: flex;
    align-items: center;
    color: #ae6070;
    margin: 0 0.25rem;
    flex-shrink: 0;
}

.heart-separator svg {
    width: 24px;
    height: 24px;
    fill: #ae6070;
}

/* Enhanced desktop styling */
@media (min-width: 992px) {
    .couple-container {
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .couple-profile img {
        width: 150px;
        height: 150px;
        border-width: 5px;
        transition: all 0.3s ease;
    }
    
    .couple-profile img:hover {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(174, 96, 112, 0.5);
    }
    
    .couple-name {
        font-size: 2.2rem;
    }
    
    p.couple-thai-name {
        font-size: 1.2rem;
    }
    
    .heart-separator img {
        width: 64px !important;
        transition: transform 0.5s ease;
    }
    
    .heart-separator:hover img {
        transform: scale(1.2);
    }
}

@media (max-width: 375px) {
    p.couple-thai-name {
        font-size: 0.8rem;
    }
}