body {
    font-family: 'Poppins', sans-serif;
}
.bio-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.bio-block img {
    width: 300px;
    border-radius: 10px;
}

.bio-block.reverse {
    flex-direction: row-reverse;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .bio-block {
        flex-direction: column;
    }

    .bio-block.reverse {
        flex-direction: column;
    }

    .bio-block img {
        width: 100%;
    }
}
/* BIOGRAPHY SECTION */
.biography {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

/* TITLE */
.biography h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* TEXT */
.biography p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* BIO BLOCK (IMAGE + TEXT) */
.bio-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

/* IMAGE */
.bio-block img {
    width: 40%;
    max-width: 350px;
    border-radius: 12px;
    object-fit: cover;
}

/* TEXT SIDE */
.bio-block p {
    width: 60%;
}

/* REVERSE LAYOUT */
.bio-block.reverse {
    flex-direction: row-reverse;
}

/* 🔥 MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    .biography h1 {
        font-size: 24px;
    }

    .biography p {
        font-size: 15px;
    }

    .bio-block {
        flex-direction: column;
        text-align: center;
    }

    .bio-block.reverse {
        flex-direction: column;
    }

    .bio-block img {
        width: 100%;
    }

    .bio-block p {
        width: 100%;
    }
}
/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f0c040;
}
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #f0c040;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
    color: #fff;
    position: relative;
}

.logo {
    font-weight: 600;
    font-size: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}