/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #000;
    overflow: hidden;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Times New Roman', Times, serif;
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Teaser page layout */
.teaser-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../assets/images/sepia_background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

/* Logo styling */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.teaser-logo {
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    transition: transform 0.3s ease;
}

.teaser-logo:hover {
    transform: scale(1.05);
}

/* Coming soon text */
.coming-soon {
    animation: fadeInUp 2s ease-out 0.5s both;
}

.coming-soon p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .teaser-logo {
        max-height: 50vh;
    }
    
    .coming-soon p {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .teaser-logo {
        max-height: 40vh;
    }
    
    .coming-soon p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* Print styles */
@media print {
    .teaser-page {
        background: #fff;
        color: #000;
    }
    
    .teaser-logo {
        filter: none;
    }
}