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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #e5e7eb;
}

/* HEADER */
header {
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #38bdf8;
}

header p {
    margin-top: 8px;
    font-size: 1.2rem;
    color: #cbd5f5;
}

.links {
    margin-top: 20px;
}

.links a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    color: #38bdf8;
    border: 1px solid #38bdf8;
    transition: all 0.3s ease;
}

.links a:hover {
    background: #38bdf8;
    color: #020617;
}

/* SECTIONS */
section {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #38bdf8;
    position: relative;
}

h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #38bdf8;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* SKILLS */
.skills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skills li {
    padding: 10px 16px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #020617;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skills li:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(56, 189, 248, 0.5);
}

/* PROJECTS */
.project {
    padding: 20px;
    border-left: 4px solid #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    margin-top: 50px;
    color: #94a3b8;
}


