/**
 * Custom Styles për KPK Website
 * Kosovo Paralympics Committee
 */

/* ========================================
   RRETH NESH - About Section on Homepage
   ======================================== */

.kpk-about-section {
    padding: 80px 20px;
    background: #ffffff;
}

.kpk-about-section h2 {
    color: #c1272d;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.kpk-about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* ========================================
   VLERAT Section (Values)
   ======================================== */

.kpk-values-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.kpk-values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    list-style: none;
    padding: 0;
}

.kpk-values-list li {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpk-values-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* ========================================
   VIZION & MISIONI Section
   ======================================== */

.kpk-vision-mission-section {
    padding: 80px 20px;
    background: #ffffff;
}

.kpk-vision-box,
.kpk-mission-box {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 12px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.kpk-vision-box h3,
.kpk-mission-box h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
}

.kpk-mission-box ul {
    list-style: none;
    padding: 0;
}

.kpk-mission-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
}

.kpk-mission-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 20px;
}

/* ========================================
   PRESIDENTJA Section
   ======================================== */

.kpk-president-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.kpk-president-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.kpk-president-photo {
    text-align: center;
}

.kpk-president-photo img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.kpk-president-info h2 {
    color: #c1272d;
    margin-bottom: 20px;
}

.kpk-president-info h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ========================================
   PARTNERËT Section
   ======================================== */

.kpk-partners-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.kpk-partners-section h2 {
    color: #1e3a8a;
    margin-bottom: 40px;
}

.kpk-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.kpk-partner-logo {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.kpk-partner-logo:hover {
    transform: scale(1.05);
}

.kpk-partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.kpk-partner-logo:hover img {
    filter: grayscale(0%);
}

/* ========================================
   KONTAKTI Updates
   ======================================== */

.kpk-contact-info {
    background: #1e3a8a;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 600px;
}

.kpk-contact-info h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.kpk-contact-info p {
    margin: 15px 0;
    line-height: 1.8;
}

.kpk-contact-info a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kpk-contact-info a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* ========================================
   Social Media Icons Styling
   ======================================== */

.kpk-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.kpk-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    color: #1e3a8a;
    font-size: 24px;
    transition: all 0.3s ease;
}

.kpk-social-links a:hover {
    background: #c1272d;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .kpk-president-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kpk-values-list {
        grid-template-columns: 1fr;
    }
    
    .kpk-about-section h2,
    .kpk-vision-mission-section h2 {
        font-size: 28px;
    }
    
    .kpk-vision-box,
    .kpk-mission-box {
        padding: 30px 20px;
    }
}

/* ========================================
   Logo KPK Styling
   ======================================== */

.kpk-logo-section {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
}

.kpk-logo-container {
    max-width: 400px;
    margin: 0 auto;
}

.kpk-logo-description {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
    color: #4b5563;
}

/* ========================================
   Buttons & CTA Styling
   ======================================== */

.kpk-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #c1272d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.kpk-btn:hover {
    background: #991f24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 39, 45, 0.3);
}

.kpk-btn-secondary {
    background: #1e3a8a;
}

.kpk-btn-secondary:hover {
    background: #1e40af;
}
