/*ALL MADE BY BENNY HUI*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Whitney SSm A', 'Whitney SSm B', Arial, sans-serif;
    color: white;
}

/* ===== Navigation Bar (50% transparent) ===== */
.nav {
    width: 100%;
    background-color: rgba(40, 40, 40, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav ul {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.nav li {
    display: inline-block;
}

.nav a {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

/* ===== Resume Button ===== */
.resume-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 12px 25px;
    margin-left: 15px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.resume-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.35);
}

/* ===== Background ===== */
body {
    background-image: url(image/nasa-Q1p7bh3SHj8-unsplash.jpg); /* your wallpaper */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* ===== Intro Section (Centered) ===== */
.intro-center {
    text-align: center;
    margin-top: 180px; /* below nav bar */
    margin-bottom: 40px;
}

.intro-center h1 {
    font-size: 90px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.intro-center p {
    font-size: 28px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== Glass Contact Box ===== */
.contact-glass {
    margin: 40px auto;
    width: 70%;
    max-width: 800px;
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-glass p {
    font-size: 22px;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* ===== Contact Info Links ===== */
.contact-info a {
    color: #9cd4ff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ===== Footer ===== */
.copy {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    opacity: 0.8;
}
