* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0f14;
    color: #f2f2f2;
    line-height: 1.6;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8%;
    background: rgba(11, 15, 20, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    display: block;
}

.brand,
.brand:visited,
.navbar a,
.navbar a:visited {
    text-decoration: none;
}

nav a {
    color: #f2f2f2;
    margin-left: 24px;
    text-decoration: none;
    font-size: 0.95rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

    nav a {
        color: #f2f2f2;
        text-decoration: none;
        font-size: 0.95rem;
        margin-left: 0;
    }

        nav a:hover {
            color: #d6a94f;
        }

/* CV DROPDOWN */
.cv-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.cv-button {
    background: transparent;
    border: 1px solid #d6a94f;
    color: #d6a94f;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
}

    .cv-button:hover {
        background: #d6a94f;
        color: #0b0f14;
    }

.cv-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    background: #141a22;
    border: 1px solid rgba(214, 169, 79, 0.45);
    border-radius: 6px;
    overflow: hidden;
    z-index: 30;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

    .cv-menu a {
        display: block;
        padding: 11px 16px;
        color: #f2f2f2;
        text-decoration: none;
        font-size: 0.9rem;
        white-space: nowrap;
    }

        .cv-menu a:hover {
            background: #d6a94f;
            color: #0b0f14;
        }

.cv-dropdown:hover .cv-menu {
    display: block;
}

    nav a:hover {
        color: #d6a94f;
    }

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    background: linear-gradient(rgba(11, 15, 20, 0.75), rgba(11, 15, 20, 0.95)), url("images/hero-mytheras.png") center/cover;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    color: #d6a94f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 680px;
}

.hero-buttons {
    margin-top: 32px;
}

.button {
    display: inline-block;
    padding: 12px 22px;
    margin-right: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background: #d6a94f;
    color: #0b0f14;
}

.secondary {
    border: 1px solid #d6a94f;
    color: #d6a94f;
}

.section {
    padding: 80px 8%;
}

    .section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
        color: #d6a94f;
    }

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.project-card {
    background: #141a22;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

    .project-card:hover {
        transform: translateY(-4px);
        border-color: #d6a94f;
    }

    .project-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        display: block;
    }

    .project-card h3 {
        padding: 20px 20px 8px;
        font-size: 1.25rem;
    }

    .project-card p {
        padding: 0 20px 24px;
        color: #c8c8c8;
    }

.about p {
    max-width: 850px;
    margin-bottom: 28px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .skills span {
        border: 1px solid rgba(214, 169, 79, 0.5);
        color: #d6a94f;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 0.9rem;
    }

.contact p {
    margin-bottom: 8px;
    color: #c8c8c8;
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }

    nav a {
        margin: 0 8px;
    }

    .hero {
        min-height: 70vh;
    }
}
.footer {
    padding: 28px 8%;
    background: #070a0e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

    .footer p {
        color: #c8c8c8;
        font-size: 0.9rem;
    }