/* 14LM - Supreme-style minimal index */

* {
    box-sizing: border-box;
}

html {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Header - Logo */
.supreme-header {
    padding: 0 2rem;
    text-align: center;
}

.supreme-logo {
    max-width: 115px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.supreme-header a {
    text-decoration: none;
}

/* Date - smaller, secondary importance */
.supreme-date {
    font-size: 0.65rem;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 0.08em;
    margin: 0.6rem 0 2.5rem 0;
    font-variant-numeric: tabular-nums;
}

/* Navigation - large gap from date (2-3x line height) */
.supreme-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.supreme-nav ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.supreme-nav li {
    margin: 0.7rem 0;
}

/* Moderate spacing between links (~1 line height) */
.supreme-nav a {
    display: inline-block;
    padding: 0.05rem 0.5rem;
    margin: 0 -0.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.3;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.supreme-nav a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

/* Footer - large gap from nav (2-3x line height) */
.supreme-footer {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}

/* Social icons - horizontal spacing 1-1.5x icon width */
.supreme-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.supreme-social a {
    color: #A8A8A8;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
    -webkit-font-smoothing: antialiased;
}

.supreme-social a:hover {
    color: #A8A8A8;
}

.supreme-social i {
    font-weight: 300;
}

.supreme-copy {
    font-size: 0.65rem;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 600px) {
    .supreme-header {
        padding: 0 1rem;
    }

    .supreme-logo {
        max-width: 88px;
    }

    .supreme-date {
        font-size: 0.55rem;
        margin: 0.5rem 0 2rem 0;
    }

    .supreme-nav a {
        font-size: 0.85rem;
        padding: 0.05rem 0;
    }

    .supreme-footer {
        padding: 2rem 1rem 1.25rem;
    }

    .supreme-social {
        gap: 1.25rem;
    }
}
