body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ece9e6 0%, #ffffff 100%);
    color: #2d3436;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-wrapper {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --- GRID LAYOUT --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 1 del vänster, 2 delar höger */
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.left-profile-column {
    text-align: left;
}

.right-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Stor bild */
.profile-pic-large {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    margin-bottom: 25px;
    display: block;
}

.profile-pic-large:hover {
    transform: scale(1.02);
}

/* --- TYPOGRAFI --- */
h1 {
    margin: 0 0 1.5rem 0;
    font-weight: 900;
    color: #2d3436;
    font-size: 3rem;
    line-height: 1.1;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-left: 5px solid #6c5ce7;
    padding-left: 15px;
    text-align: left;
}

h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: #2d3436;
    font-weight: 700;
}

.bio {
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* --- KNAPPAR --- */
.links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    text-decoration: none;
    color: #2d3436;
    background-color: #f1f2f6;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn:hover {
    background-color: #dfe6e9;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #6c5ce7;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    background-color: #5b4bc4;
    color: white;
}

.divider {
    border: 0;
    height: 1px;
    background: #dfe6e9;
    margin: 4rem 0;
}

.highlight-link {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid rgba(108, 92, 231, 0.3);
    transition: border-color 0.3s;
}

.highlight-link:hover {
    border-bottom-color: #6c5ce7;
}

/* --- STRAVA --- */
.strava-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
}

.strava-box {
    text-align: center;
    flex: 1;
    min-width: 280px;
}

.strava-label {
    font-weight: bold;
    margin-bottom: 15px;
    color: #636e72;
    text-align: center;
}

.strava-widget {
    border: none;
    overflow: hidden;
    width: 100%;
    height: 454px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: block;
}

/* --- TIDSLINJE & BOTTEN --- */
.full-width-section {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.timeline {
    position: relative;
    padding-left: 10px;
    text-align: left;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 3px;
    background: #dfe6e9;
}

.timeline-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 4px solid #6c5ce7;
}

.timeline-item.future::before {
    background: #6c5ce7;
    box-shadow: 0 0 0 5px rgba(108, 92, 231, 0.2);
}

.timeline-date {
    font-size: 0.9rem;
    color: #a4b0be;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

iframe, img {
    max-width: 100%;
}

/* --- MOBILANPASSNING --- */
@media (max-width: 950px) {
    .container {
        padding: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .left-profile-column {
        text-align: center;
    }

    .profile-pic-large {
        margin: 0 auto 25px auto;
    }

    .links {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }
}