/* General styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: url('images/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Main content container */
.content {
    padding: 20px;
    max-width: 900px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Shared section styling */
section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* Biography section */
.biography img {
    border-radius: 50%;
    height: 250px;
    display: block;
    margin: 0 auto 20px;
}

.biography h2,
.biography p {
    text-align: center;
}

/* Techstack section */
.techstack h2,
.techstack p {
    text-align: center;
}

.horizontal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

/* Projects section */
.projects ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.projects li {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.projects li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.projects strong {
    font-size: 18px;
}

.projects a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.projects a:hover {
    color: #005fa3;
    text-decoration: underline;
}

.projects li::before {
    content: "💻";
    margin-right: 10px;
    font-size: 18px;
}

/* Contact section */
.contact {
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
}

.contact h2 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
}

.contact p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.contact li {
    font-size: 16px;
    color: #333;
}

.contact a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

/* Mobile view */
@media (max-width: 600px) {
    .biography img {
        height: 180px;
    }

    .projects li {
        padding: 15px;
    }

    .projects strong {
        font-size: 16px;
    }
}
