/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
    font-size: 20px;
    line-height: 1.8;
}

/* Fixed Header Navigation */
header {
    background-color: #1e1e1e;
    padding: 15px;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 22px;
}

nav a:hover {
    text-decoration: underline;
}

/* ========== HOMEPAGE LAYOUT ========== */
.profile-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 40px 20px;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left column: image and social icons */
.left-column {
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.15);
}

/* Right column: name, title, bio, CV link */
.right-column {
    flex: 2 1 600px;
}

.profile-name {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e1e1e;
}

.right-column h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
}

.right-column p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links a {
    display: inline-block;
    margin-top: 10px;
    color: #1e1e1e;
    font-weight: bold;
    text-decoration: underline;
}

.footer-links a:hover {
    text-decoration: none;
}

/* ========== OTHER PAGES (unchanged) ========== */
.about-section {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 40px;
}

.about-section h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-section a {
    color: #1e1e1e;
    text-decoration: underline;
}

.about-section a:hover {
    text-decoration: none;
}

.nature-images {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.nature-images img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nature-images img:hover {
    transform: scale(1.05);
}

.box {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.box:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.box h2 {
    font-size: 30px;
    color: #1e1e1e;
    margin-bottom: 15px;
}

.experience p, .education p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.experience h3, .education h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.experience i, .education i {
    margin-right: 8px;
}

.education {
    background-color: #e8f5e9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.experience {
    background-color: #f4e1d2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    nav a {
        font-size: 18px;
        margin: 0 10px;
    }

    .profile-section {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column {
        max-width: 100%;
        text-align: center;
    }

    .profile-name {
        font-size: 30px;
    }

    .right-column h3 {
        font-size: 22px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
