body {
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    background-color: #fafafa;
    color: #222;
    line-height: 1.6;
}

header {
    background-color: #BF5700;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

header h1 {
    font-size: 2.4rem;
    margin: 0.5rem 0;
}

header p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 1rem;
}

.header-buttons .button {
    background-color: white;
    color: #BF5700;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.header-buttons .button:hover {
    background-color: #f2f2f2;
}

nav {
    margin-top: 1.2rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.8;
}

section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

h2 {
    color: #BF5700;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

ul {
    margin-top: 0.5rem;
}

.job,
.project,
.leadership {
    background: white;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.skills-grid div {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #f1f1f1;
    font-size: 0.9rem;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.media-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.media-content {
    flex: 1.2;
}

.media-gallery {
    flex: 0.8;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
}

.media-gallery img,
.media-gallery video {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
    header {
        padding: 2rem 1rem;
    }

    header h1 {
        font-size: 1.9rem;
    }

    .header-buttons .button {
        display: inline-block;
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }

    section {
        margin: 2rem 0;
    }

    .media-row {
        flex-direction: column;
    }
}