/* === ACHTERGROND PAGE STYLES === */
.about {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

/* primary content card */
.about-card{
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 15px var(--shadow);
    line-height: 1.8;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.about-card .intro{
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.6;
}

.about-card p{
    margin: 0 0 1.5rem;
    color: var(--light-text);
}

.about-card p:last-child{
    margin-bottom: 0;
}

/* pull quote */
.pull-quote{
    margin: 2rem 0;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-color);
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.pull-quote:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px var(--shadow);
}

/* profile card (aside) */
.profile-card{
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.profile-card h3{
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.profile-card .muted{
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.profile-card .small{
    font-size: 0.9rem;
}

/* facts */
.facts{
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.facts li{
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--navbar-border);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.facts li:hover {
    padding-left: 10px;
    color: var(--primary-color);
}

.facts strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* skills section */
.skills {
    margin-top: 1.5rem;
}

.skills h4{
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.chips{
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.chip{
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid var(--navbar-border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.chip:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* actions */
.profile-actions{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn{
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn:not(.ghost) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn:not(.ghost):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

.btn.ghost{
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--navbar-border);
}

.btn.ghost:hover {
    background: var(--card-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Responsive */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-card {
        position: static;
    }

    .profile-actions{
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-card .intro {
        font-size: 1.1rem;
    }
    
    .pull-quote {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .profile-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 0.75rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card .intro {
        font-size: 1rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .pull-quote {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .avatar {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .profile-card h3 {
        font-size: 1.3rem;
    }
    
    .chips {
        gap: 0.5rem;
    }
    
    .chip {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 360px) {
    .about-card {
        padding: 1.25rem;
    }
    
    .about-card .intro {
        font-size: 0.95rem;
    }
    
    .about-card p {
        font-size: 0.85rem;
    }
    
    .pull-quote {
        font-size: 0.95rem;
    }
    
    .profile-card {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 300px) {
    .about {
        padding: 2rem 0.5rem;
    }
    
    .about-card {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .about-card .intro {
        font-size: 0.85rem;
    }
    
    .about-card p {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    
    .pull-quote {
        padding: 1rem;
        font-size: 0.85rem;
        margin: 1.5rem 0;
    }
    
    .avatar {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .profile-card {
        padding: 1rem;
    }
    
    .profile-card h3 {
        font-size: 1.1rem;
    }
    
    .profile-card .muted {
        font-size: 0.8rem;
    }
    
    .facts li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .chip {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}
