@import url("font/stylesheet.css");

/* Reset & Base Styles */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #000000;
    --muted-color: #666666;
    --border-color: #e5e5e5;
    --font-main: Gill Sans Nova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Layout Container */
.container {
    width: 100%;
    /* max-width: 1400px; */
    /* padding: 0 20px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Header / Logo */
header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid;
    width: 100%;
}

.logo-number img {
    width: 200px;
}

.logo-number {
    font-size: 6rem;
    /* 96px */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    /* 24px */
    font-weight: 300;
    letter-spacing: 0.2em;
    display: block;
    margin-top: 0.5rem;
}

/* Main Content */
main {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-tagline {
    font-size: 6rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin-bottom: 3rem;
    opacity: 0.2;
}

.description {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
}

.launch-date {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0rem;
    padding: 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.6;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-separator {
    color: #ccc;
    margin-left: 1.5rem;
    user-select: none;
}

.nav-subtext {
    margin-bottom: 5rem;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Footer */
footer {
    margin-top: auto;
    margin-bottom: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
}

.collaborate-label {
    font-size: 1.6rem;
    font-weight: 300;
}

.email-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.6rem;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
    font-weight: 300;
}

.email-link:hover {
    opacity: 0.7;
    border-bottom-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header {
        margin-top: 10px;
        margin-bottom: 50px;
    }

    .logo-number {
        font-size: 4rem;
    }

    .launch-date {
        font-size: 1.5rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .description {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .nav-list {
        /* flex-direction: column; */
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-subtext {
        font-size: 1.5rem;
    }
}