/**
 * LC Photographer Profile Styles - v1.6.5
 * Clean white design matching provided screenshot
 */

/* Main Container - Simple, no background */
.lc-photographer-profile-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    line-height: 1.6 !important;
    color: #333333 !important;
}

/* Simple text color, no forced backgrounds */
.lc-photographer-profile-container {
    color: #333333 !important;
}

/* Header Section - Simple layout without background */
.lc-photographer-header {
    margin-bottom: 40px !important;
    padding: 0 !important;
}

/* Main Content Area - No forced background */
.lc-photographer-main-content {
    /* Inherits background from theme */
}

/* Photographer Name */
.lc-photographer-name {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

/* Bio */
.lc-photographer-bio {
    font-size: 1.1rem !important;
    color: #555555 !important;
    margin-bottom: 30px !important;
    line-height: 1.6 !important;
}

/* Detail Items */
.lc-photographer-details {
    margin-bottom: 20px !important;
}

.lc-detail-item {
    margin-bottom: 15px !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Special styling for location item */
.lc-location-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 20px !important;
}

.lc-location-item .lc-detail-icon {
    margin-right: 8px !important;
    font-size: 1.1rem !important;
}

.lc-location-item .lc-detail-value {
    margin-left: 0 !important;
    color: #555555 !important;
    font-size: 1rem !important;
}

.lc-detail-label {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 5px !important;
    display: block !important;
}

.lc-detail-icon {
    margin-right: 8px !important;
}

.lc-detail-value {
    color: #555555 !important;
    margin-left: 0 !important;
}

.lc-detail-value a {
    color: #3498db !important;
    text-decoration: none !important;
}

.lc-detail-value a:hover {
    text-decoration: underline !important;
}

/* Social media profiles styling */
.lc-social-profiles {
    margin-top: 8px !important;
}

.lc-social-profile-line {
    margin-bottom: 6px !important;
    display: block !important;
}

.lc-social-profile-line:last-child {
    margin-bottom: 0 !important;
}

.lc-social-profile-line strong {
    display: inline-block !important;
    min-width: 100px !important;
    color: #333 !important;
}

.lc-social-profile-line a {
    color: #007cba !important;
    text-decoration: none !important;
    word-break: break-all !important;
}

.lc-social-profile-line a:hover {
    text-decoration: underline !important;
}

/* LEGACY CODE REMOVED - Sidebar no longer used in single-column layout */

/* Social Buttons */
.lc-social-buttons {
    display: flex !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    justify-content: flex-start !important;
}

.lc-social-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease !important;
}

.lc-social-btn:hover {
    opacity: 0.8 !important;
}

.lc-social-btn.x {
    background-color: #000000 !important;
}

.lc-social-btn.facebook {
    background-color: #1877f2 !important;
}

.lc-social-btn.linkedin {
    background-color: #0a66c2 !important;
}

/* LEGACY CODE REMOVED - Award status and camera gear cards no longer used in current design */

/* Awarded Photos Section - Simple, no background */
.lc-awarded-photos-section {
    padding: 0 !important;
    margin-bottom: 40px !important;
    clear: both !important;
}

.lc-section-title {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
}

/* 6-Column Masonry Grid Layout */
.lc-awarded-photos-grid {
    column-count: 6 !important;
    column-gap: 15px !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    clear: both !important;
    float: none !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.lc-awarded-photo-card {
    background: #ffffff !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    break-inside: avoid !important;
    margin-bottom: 15px !important;
    display: inline-block !important;
    width: 100% !important;
    padding: 0 !important;
    float: none !important;
}

.lc-awarded-photo-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.lc-photo-image-container {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
    background: #f5f5f5 !important;
}

.lc-photo-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.lc-awarded-photo-card:hover .lc-photo-image {
    transform: scale(1.03) !important;
}

.lc-photo-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 15px !important;
    z-index: 2 !important;
}

.lc-awarded-photo-card:hover .lc-photo-overlay {
    opacity: 1 !important;
}

.lc-photo-category-tag {
    background: #e74c3c !important;
    color: #ffffff !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    align-self: flex-start !important;
}

.lc-photo-registration-badge {
    color: #ffffff !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    line-height: 1.2 !important;
}

.lc-photo-info {
    padding: 15px !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    position: relative !important;
    z-index: 1 !important;
}

.lc-photo-title {
    margin: 0 0 10px 0 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

.lc-photo-title a {
    color: #2c3e50 !important;
    text-decoration: none !important;
}

.lc-photo-title a:hover {
    color: #3498db !important;
}

.lc-photo-score {
    color: #e74c3c !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
}

.lc-photo-date {
    color: #888888 !important;
    font-size: 0.85rem !important;
}

/* No Awards Message */
.lc-no-awards-message {
    text-align: center !important;
    padding: 40px 20px !important;
    color: #666666 !important;
    font-style: italic !important;
    background: #f8f9fa !important;
    background-color: #f8f9fa !important;
    border-radius: 8px !important;
    margin-top: 20px !important;
}

.lc-no-awards-message p {
    margin: 0 !important;
    font-size: 1.1rem !important;
}

/* Responsive Masonry Design */
@media (max-width: 1200px) {
    .lc-awarded-photos-grid {
        column-count: 4 !important;
        column-gap: 12px !important;
    }
}

@media (max-width: 768px) {
    .lc-photographer-profile-container {
        padding: 15px !important;
    }
    
    .lc-photographer-header {
        padding: 20px !important;
    }
    
    .lc-photographer-name {
        font-size: 2rem !important;
    }
    
    .lc-social-buttons {
        justify-content: center !important;
    }
    
    .lc-awarded-photos-grid {
        column-count: 3 !important;
        column-gap: 10px !important;
    }
    
    .lc-awarded-photo-card {
        margin-bottom: 12px !important;
    }
    
    .lc-awarded-photos-section {
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .lc-photographer-name {
        font-size: 1.5rem !important;
    }
    
    .lc-awarded-photos-grid {
        column-count: 2 !important;
        column-gap: 8px !important;
    }
    
    .lc-awarded-photo-card {
        margin-bottom: 10px !important;
    }
    
    .lc-photo-info {
        padding: 12px !important;
    }
    
    .lc-awarded-photos-section {
        padding: 30px 0 !important;
    }
    
    .lc-section-title {
        font-size: 1.25rem !important;
        margin-bottom: 25px !important;
    }
}