/* General Body */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #0f0f0f;
    color: #fff;
    scroll-behavior: smooth;
}

/* Header */
header {
    background: linear-gradient(135deg, #ff4081, #6a00ff);
    text-align: center;
    padding: 40px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 20px;
    font-weight: 300;
}

header nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffeb3b;
}

/* Sections */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio */
.projects {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.project {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    background: #1c1c1c;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.project:hover {
    transform: scale(1.02);
}

.project img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px 0 0 15px;
    object-fit: cover;
    flex: 1 1 400px;
}

.project-info {
    flex: 1 1 300px;
    padding: 20px;
}

.project-info h3 {
    margin-top: 0;
    color: #ff4081;
}

.project-info p {
    line-height: 1.5;
}

/* Contact */
section#contact ul {
    list-style: none;
    padding: 0;
}

section#contact ul li {
    margin: 5px 0;
}

/* Footer */
footer {
    background: #111;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    font-size: 0.9em;
    color: #888;
}
