/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@font-face {
    font-family: "GeneralSans-Variable";
    src: url(../fonts/GeneralSans-Variable.ttf);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #444444;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header and Navigation */
.logo {
    font-size: 20px;
    position: fixed;
    top: 40px;
    left: 40px;
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    border: 3px solid #444444;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.header {
    font-size: 20px;
    color: #444444;
    text-decoration: none;
    font-weight: bold;
}


.nav-link {
    color: #444444;
    text-decoration: none;
}

.nav-link:hover {
    color: #b3b3b3;
}

.contact-button {
    background: white;
    border: 2px solid #444444;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    color: #444444;
    font-size: 14px;
}

/* Footer Styles */
.footer-tags {
    color: grey;
    font-size: 25px;
    margin: 60px;
}

.footer-tags:hover {
    color: lightgray;
}

a {
    text-decoration: none;
}

#footer-button {
    color: #444444;
    padding: 5px;
    position: relative;
    left: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .logo {
        position: static;
        margin-bottom: 20px;
    }

    nav {
        position: static;
        margin-bottom: 40px;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999;
    display: none;
}

.popup-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    display: none;
}

.popup-card h2 {
    font-size: 24px;
    color: #444444;
    margin-bottom: 20px;
    font-weight: 500;
}

.popup-card p {
    color: #444444;
    font-size: 16px;
    line-height: 1.5;
}

.popup-card a[href*="linkedin"] {
    color: #de807e;
    text-decoration: underline;
}

.popup-card a[href*="github"] {
    color: #89cfa9;
    text-decoration: underline;
}

.popup-card a[href*="mailto"] {
    color: #81a6f0;
    text-decoration: underline;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #444444;
    text-decoration: none;
} 