/* --- Hero Sadaļa --- */
.about-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(11,11,11,0.85), rgba(11,11,11,0.95)), url('../images/main/Tatami-Blue.jpg');
    background-position: center;
    background-size: cover;
}

.meta-tag { 
    color: var(--red); 
    text-transform: uppercase; 
    font-weight: 800; 
    letter-spacing: 2px; 
}

/* --- JAUNUMS: Mans Stāsts (Story Section) --- */
.my-story-section {
    padding: 100px 0;
    background: #0b0b0b;
    position: relative;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content .sub-title {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.1;
}

.story-content h2 span {
    color: var(--red);
}

.story-text {
    text-align: left; /* Stāsts labāk lasās, ja tas ir pie kreisās malas vai abpusēji taisnots */
}

.story-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-text p strong {
    color: #fff;
    font-weight: 700;
}

/* --- Treneru bloks / Profesionālais Profils --- */
.team-section {
    padding-bottom: 100px;
    background: #0b0b0b;
}

.coach-full-profile {
    padding: 80px 40px;
    background: var(--card-bg);
    border-radius: 40px;
    border: 1px solid var(--glass-border);
}

.coach-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.coach-image-box { 
    position: sticky;
    top: 120px; /* Bilde "sekos" līdzi, kamēr lasa sertifikātus */
    text-align: center;
}

.coach-image-box img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.coach-role {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.coach-details h2 { 
    font-size: 3rem; 
    text-transform: uppercase; 
    line-height: 1; 
    margin-bottom: 25px; 
}

.coach-details h2 span { color: var(--red); }

.coach-links { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 40px; 
    flex-wrap: wrap; 
}

.t-link {
    padding: 8px 18px;
    border: 1px solid var(--red);
    color: var(--red);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.t-link:hover { 
    background: var(--red); 
    color: #fff; 
}

/* Info kartītes (Sasniegumi, Izglītība utt.) */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.info-card h3 { 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #fff;
}

.info-card h3 i { color: var(--red); }

.info-card ul { list-style: none; padding: 0; }
.info-card ul li { 
    color: #aaa; 
    margin-bottom: 12px; 
    font-size: 15px; 
    padding-left: 20px;
    position: relative;
}

.info-card ul li::before { 
    content: ""; 
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--red); 
    border-radius: 50%;
}

.cert-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-grid span { 
    background: #222; 
    padding: 6px 14px; 
    border-radius: 8px; 
    font-size: 13px; 
    color: #eee;
    border: 1px solid #333;
}

.main-cta { 
    width: 100%;
    display: block;
}

.btn-outline {
    border: 1px solid white;
}

/* Footer Ikonu Fix */
.social-icons a i { font-size: 1.6rem; color: #fff; transition: 0.3s; }
.social-icons a:hover i { color: var(--red); transform: translateY(-3px); }

/* --- Responsivitāte (Mobilie telefoni) --- */
@media (max-width: 968px) {
    .coach-grid { 
        grid-template-columns: 1fr; 
    }
    
    .coach-image-box {
        position: static;
        margin-bottom: 40px;
    }

    .story-content h2, .coach-details h2 { 
        font-size: 2.2rem; 
    }

    .my-story-section {
        padding: 60px 0;
    }
    
    .coach-full-profile {
        padding: 40px 20px;
    }

    .story-text p {
        font-size: 1rem;
    }
}