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

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* BODY */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #e2e8f0;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* NAVBAR */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    color: #38bdf8;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

nav a {
    color: #e2e8f0;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

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

/* HERO */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

#hero h1 {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    color: transparent;
}

#hero h2 {
    font-size: 26px;
    color: #38bdf8;
    margin: 10px 0;
}

#hero p {
    margin: 20px 0;
    max-width: 600px;
    color: #94a3b8;
}

/* BUTTONS */
.btn {
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 10px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid #38bdf8;
    color: #38bdf8;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #38bdf8;
    color: black;
}

/* SECTIONS */
section {
    padding: 100px 0;
}

section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

/* PROJECTS */
.project-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: #38bdf8;
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.2);
}

.project-card h3 {
    color: #38bdf8;
    margin-bottom: 10px;
}

/* TEXT */
#skills p,
#about p {
    color: #94a3b8;
    font-size: 15px;
}

/* CONTACT */
#contact a {
    color: #38bdf8;
    text-decoration: none;
}

#contact p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 20px 0;
    color: #94a3b8;
}
