@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a;
    color: #e2e8f0;
    line-height: 1.7;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(15, 23, 42, 0.95);
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header h1 {
    color: #38bdf8;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #e2e8f0;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #38bdf8;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 40px 8%;
    background: linear-gradient(to right, #0f172a, #1e293b);
}

.hero-text {
    max-width: 800px;
}

.hero h2 {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
}

button {
    margin-top: 30px;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    background: #38bdf8;
    color: #0f172a;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: translateY(-3px);
}

.content {
    width: 85%;
    max-width: 1200px;
    margin: 60px auto;
}

.content h2 {
    color: #38bdf8;
    margin-bottom: 15px;
}

.content p,
.content ul {
    margin-bottom: 25px;
    color: #cbd5e1;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skills span {
    padding: 12px 20px;
    border-radius: 30px;
    background: #1e293b;
    color: #38bdf8;
}

.project-card {
    background: #1e293b;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 20px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 25px;
    background: #020617;
    margin-top: 50px;
    color: #94a3b8;
}

#message {
    margin-top: 15px;
    color: #38bdf8;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    .hero h2 {
        font-size: 42px;
    }

    nav ul {
        gap: 15px;
    }
}
