/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Miller Display Roman (Regular) */
@font-face {
    font-family: 'Miller Display';
    src: url('/assets/fonts/Miller-DisplayRoman.woff2') format('woff2'),
         url('/assets/fonts/Miller-DisplayRoman.woff') format('woff'),
         url('/assets/fonts/Miller-DisplayRoman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Miller Display Italic (if needed) */
@font-face {
    font-family: 'Miller Display';
    src: url('/assets/fonts/Miller-DisplayItalic.woff2') format('woff2'),
         url('/assets/fonts/Miller-DisplayItalic.woff') format('woff'),
         url('/assets/fonts/Miller-DisplayItalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* System font stack for fallback */
:root {
    --font-miller: 'Miller Display', Georgia, 'Times New Roman', serif;
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --color-feather: #F5E6D3;
    --color-structure: #5DADE2;
    --color-text: #2C3E50;
    --color-bg: #FDFBFB;
}

/* Base Styles */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-system);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

/* Content */
.content {
    animation: fadeIn 1s ease-out;
}

/* Logo */
.logo {
    width: 100%;
    max-width: 400px;  /* Increase from 300px */
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
    transition: transform 0.3s ease;
    transform: scale(1.02);
}

/* Typography */
.tagline {
    font-family: var(--font-miller);
    font-size: 2rem;
    font-weight: normal;
    color: var(--color-text);
    margin-bottom: .75rem;
    letter-spacing: 0.02em;
}

.coming-soon {
    font-family: var(--font-system);
    font-size: 1.125rem;
    color: rgba(44, 62, 80, 0.5);  /* More subtle */
    font-size: 1rem;  /* Slightly smaller */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 200px;
        margin-bottom: 2rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .coming-soon {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .content {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-text: #000;
        --color-bg: #FFF;
    }
}