/* ==========================================
   TRUSTED PARTNERS SECTION - Large Images Only
   ========================================== */

/* Section Container */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Section Title */
.partners-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #664131;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a88d5e, #e59756);
    border-radius: 2px;
}

.partners-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 25px;
    margin-bottom: 0;
}

/* Partner Box - No styling */
.partner-box {
    text-align: center;
}

.partner-link {
    text-decoration: none;
    display: block;
}

/* Partner Image Container - Just for image */
.partner-image-container {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.partner-image-container:hover {
    transform: translateY(-5px);
}

/* Partner Image - Large and Clear */
.partner-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.partner-image-container:hover .partner-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Partner Name */
.partner-name-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #664131;
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partner-image {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-title {
        font-size: 1.75rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
    }
    
    .partner-image {
        max-width: 180px;
    }
    
    .partner-name-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .partner-image {
        max-width: 150px;
    }
    
    .partner-name-text {
        font-size: 0.8rem;
    }
}
