/* =====================================================
   OM OSS - STYLING
   =====================================================
   Ablas Om Oss-sida
   ===================================================== */

/* =====================================================
   RESET & BASE
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* =====================================================
   NAVBAR (om ej redan i global styles.css)
   ===================================================== */
.about-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.about-navbar.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 15, 0.95);
}

.about-navbar .logo {
    font-size: 28px;
    font-weight: 700;
    color: #e50914;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.about-navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.about-navbar .nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-navbar .nav-links a:hover,
.about-navbar .nav-links a.active {
    color: #fff;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.about-hero {
    padding: 180px 50px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(102, 126, 234, 0.08) 0%, 
        rgba(118, 75, 162, 0.05) 50%,
        rgba(10, 10, 15, 1) 100%);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================================================
   SECTION HEADER (Gemensam)
   ===================================================== */
.about-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.about-section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   MISSION SECTION
   ===================================================== */
.about-mission-section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.about-mission-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.about-stat {
    text-align: left;
}

.about-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #667eea;
    display: block;
    line-height: 1;
}

.about-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-mission-visual {
    position: relative;
}

.about-mission-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
}

.about-mission-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.about-mission-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.about-mission-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.about-team-section {
    padding: 100px 50px;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 1) 0%,
        rgba(102, 126, 234, 0.05) 50%,
        rgba(10, 10, 15, 1) 100%);
}

.about-team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-team-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 4px;
}

.about-team-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #1a1a2e;
}

.about-team-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}

.about-team-name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.about-team-role {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-team-education {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-team-bio {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.about-team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.about-team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 18px;
}

/* =====================================================
   COLLABORATION SECTION
   ===================================================== */
.about-collaboration-section {
    padding: 100px 50px;
    background: rgba(102, 126, 234, 0.03);
}

.about-collaboration-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-collaboration-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(22, 33, 62, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
}

.about-collaboration-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.about-collaboration-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.about-collaboration-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* =====================================================
   BOARD SECTION
   ===================================================== */
.about-board-section {
    padding: 80px 50px;
    background: #0a0a0f;
}

.about-board-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-board-members {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4), rgba(22, 33, 62, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.about-board-member {
    text-align: center;
    padding: 0 30px;
}

.about-board-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.about-board-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-board-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* =====================================================
   VALUES SECTION
   ===================================================== */
.about-values-section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-value-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.about-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.about-cta-section {
    padding: 100px 50px;
    text-align: center;
    background: linear-gradient(180deg,
        rgba(10, 10, 15, 1) 0%,
        rgba(102, 126, 234, 0.1) 100%);
}

.about-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.about-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* =====================================================
   FOOTER
   ===================================================== */
.about-footer {
    padding: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.about-footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 15px;
}

.about-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   LIGHT MODE
   ===================================================== */

body.light-mode .about-hero {
    background: linear-gradient(180deg,
        rgba(102, 126, 234, 0.08) 0%,
        rgba(118, 75, 162, 0.05) 50%,
        rgba(245, 245, 247, 1) 100%);
}

body.light-mode .about-hero p {
    color: rgba(0, 0, 0, 0.6);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values-grid,
    .about-collaboration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-navbar {
        padding: 15px 25px;
    }

    .about-navbar .nav-links {
        display: none;
    }

    .about-hero {
        padding: 140px 25px 70px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-mission-section,
    .about-team-section,
    .about-values-section,
    .about-collaboration-section,
    .about-board-section,
    .about-cta-section {
        padding: 70px 25px;
    }

    .about-mission-content h2,
    .about-section-header h2,
    .about-cta-section h2 {
        font-size: 30px;
    }

    .about-mission-stats {
        flex-direction: column;
        gap: 25px;
    }

    .about-team-grid,
    .about-values-grid,
    .about-collaboration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-board-members {
        flex-direction: column;
        gap: 30px;
    }

    .about-board-divider {
        width: 80px;
        height: 1px;
    }
}