/* ======================
   RESET & BASE
====================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Times New Roman", serif;
}

/* ======================
   BACKGROUND
====================== */

body {
    background-image: url("images/logo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* ======================
   LANDING LAYOUT
====================== */

.landing-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

/* ======================
   NAME / TITLE
====================== */

.logo-name {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: white;
    mix-blend-mode: difference;
}

/* ======================
   TEXT PANEL
====================== */

.text-panel {
    margin-top: 1.5rem;
    padding: 1.6rem 2.4rem;
    max-width: 520px;
    border-radius: 16px;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255, 255, 255, 0.75) 0%,
            rgba(255, 255, 255, 0.70) 60%,
            rgba(255, 255, 255, 0.60) 80%,
            rgba(255, 255, 255, 0.55) 100%
        );
}

.subtitle,
.about-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #444;
}

/* ======================
   NAV LINKS
====================== */

.nav-links {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 1.05rem;
    border-bottom: 1px solid #444;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #000;
    border-bottom-color: #000;
}

/* ======================
   MOBILE
====================== */

@media (max-width: 768px) {
    .logo-name {
        font-size: 2.4rem;
    }

    .text-panel {
        padding: 1.4rem 1.8rem;
    }
}
