/* ============================================
   Font Definitions - Alte Haas Grotesk
   ============================================ */

@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('fonts/AlteHaasGroteskRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('fonts/AlteHaasGroteskBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS Variables
   ============================================ */

:root {
    /* Font */
    --font-primary: 'Alte Haas Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Colors */
    --color-background: #F3F3F3;
    --color-text: #000000;
    --color-bluesky: #0085ff;
    --color-instagram: #E1306C;
    --color-email: #808080;
    --color-streamdeck: #d3d007;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;

    /* Line height for links */
    --line-height-links: 1.2;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-background);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.25'/%3E%3C/svg%3E");
    line-height: var(--line-height-links);
    min-height: 100vh;
}

/* ============================================
   Layout Container
   ============================================ */

.container {
    padding: var(--space-xl) var(--space-lg);
    min-height: 100vh;
}

/* ============================================
   Header
   ============================================ */

.header {
    margin-bottom: 3rem;
}

.title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* ============================================
   Main Content & Links
   ============================================ */

.main-content {
    max-width: 900px;
}

.coming-soon {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: var(--line-height-links);
    margin-bottom: 1rem;
}

.meanwhile {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: var(--line-height-links);
    margin-bottom: 3rem;
}

.links-list {
    display: flex;
    flex-direction: column;
}

.link-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2em;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    line-height: var(--line-height-links);
    width: fit-content;
}

.link-item:focus {
    outline: 2px solid var(--color-text);
    outline-offset: 4px;
}

/* Bullet point */
.bullet {
    flex-shrink: 0;
    font-weight: 400;
    line-height: inherit;
    font-size: 0.6em;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Link text with underline on hover */
.link-text {
    display: inline;
    line-height: inherit;
}

.link-item:hover .link-text,
.link-item:focus .link-text {
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 0.08em;
}

/* Color variants for specific links */
.link-bluesky .bullet {
    color: var(--color-bluesky);
}

.link-instagram .bullet {
    color: var(--color-instagram);
}

.link-email .bullet {
    color: var(--color-email);
}

.link-streamdeck .bullet {
    color: var(--color-streamdeck);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Mobile-first: Default padding already set in .container */

/* ============================================
   Performance Optimizations
   ============================================ */

/* Reduce animations on slow devices */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    body {
        background-color: white;
        color: black;
    }

    .link-item {
        color: black;
        text-decoration: underline;
    }

    .bullet {
        color: black;
    }
}
