* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

body {
    background: #0b0e14;
    color: #e6e6e6;
    overflow-x: hidden;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(255,200,120,0.08), transparent 40%),
        linear-gradient(135deg, #0b0e14, #141824);
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.hero h1 span {
    color: #f2c97d;
}

.hero h2 {
    font-weight: 400;
    color: #b8bcc8;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #c9ccd6;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ---------- BUTTONS ---------- */
.btn {
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background: #f2c97d;
    color: #0b0e14;
}

.btn.secondary {
    border: 1px solid #3a3f52;
    color: #e6e6e6;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 90px 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 25px;
}

.section h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #f2c97d;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cfd3df;
}

/* ---------- SKILLS ---------- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.skills-grid span {
    background: #151a26;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.skills-grid span:hover {
    transform: translateY(-4px);
}

/* ---------- PROJECTS ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #151a26;
    padding: 28px;
    border-radius: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.card h4 {
    margin-bottom: 10px;
    color: #f2c97d;
}

/* ---------- EXPERIENCE ---------- */
.exp-card {
    background: #151a26;
    padding: 28px;
    border-radius: 14px;
}

/* ---------- CONTACT ---------- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #0f1320;
    color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid #f2c97d;
}

.direct-contact {
    margin-top: 25px;
    color: #b8bcc8;
}

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    padding: 25px;
    background: #07090f;
    color: #8b8f9c;
}
