/* ===================================
   Treffer Coming Soon Page
   Warm, inviting, minimalist design
   =================================== */

:root {
    /* Color Palette */
    --color-background: #F5F0E8;
    --color-primary: #C4883A;
    --color-text: #3D2C1E;
    --color-text-light: #6B5344;
    --color-accent: #6B2D2D;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-text);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 800px;
    padding: var(--spacing-lg);
    text-align: center;
}

/* Content with fade-in animation */
.content {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-wrapper {
    margin-bottom: var(--spacing-xl);
}

.logo {
    max-width: 100%;
    width: 400px;
    height: auto;
}

/* Main Message */
.message {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

/* Secondary Message */
.submessage {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

/* Location */
.location {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: var(--spacing-md);
    }
    
    .logo {
        width: 280px;
    }
    
    .logo-wrapper {
        margin-bottom: var(--spacing-lg);
    }
}
