/* About Page Styles */

:root {
    --sunset-primary: #E5802D;
    --sunset-dark: #2C3E50;
    --sunset-darker: #1a252f;
    --sunset-teal: #1ABC9C;
}

.about-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sunset-dark) 0%, var(--sunset-darker) 100%);
    padding: 40px 20px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Section */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-badge .badge-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.about-header h1 {
    color: #ffffff;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Card */
.about-card {
    background: linear-gradient(145deg, var(--sunset-dark), var(--sunset-darker));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E5802D, #f39c12, #1ABC9C);
}

/* Feature Sections */
.feature-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-section-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.feature-section-icon.teal {
    background: linear-gradient(135deg, #1ABC9C, #16a085);
}

.feature-section-icon.blue {
    background: linear-gradient(135deg, #3498DB, #2980b9);
}

.feature-section-icon.purple {
    background: linear-gradient(135deg, #8E44AD, #9B59B6);
}

.feature-section h3 {
    color: #ffffff;
    font-size: 1.4em;
    margin: 0;
}

.feature-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

.feature-section a {
    color: #1ABC9C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-section a:hover {
    color: #E5802D;
    text-decoration: underline;
}

/* Version Info Card */
.version-card {
    background: linear-gradient(145deg, var(--sunset-dark), var(--sunset-darker));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.version-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.version-item {
    text-align: center;
}

.version-item .label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.version-item .value {
    color: #E5802D;
    font-size: 1.3em;
    font-weight: 600;
}

/* Partners Section */
.partners-section {
    text-align: center;
    margin-top: 40px;
}

.partners-section h3 {
    color: #ffffff;
    font-size: 1.4em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
    max-height: 45px;
    width: auto;
    filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2em;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .feature-section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-section p {
        text-align: left;
    }
    
    .version-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-logo {
        padding: 15px 20px;
    }
}
