/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-1: #fe6b35;
    --orange-2: #fb7f29;
    --white: #FFFFFF;
    --dark-text: #1a1a1a;
    --overlay-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Subtle Film Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Background Layers - 3 tilted vertical sections */
.background-layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    gap: 0;
}

.layer {
    height: 100%;
    flex: 1;
    transform: skewX(3deg);
    transform-origin: top;
    margin-left: -2px; /* Overlap to prevent white lines */
}

.layer:first-child {
    margin-left: 0;
}

.layer-white {
    background: var(--white);
}

.layer-orange-1 {
    background: var(--orange-1);
}

.layer-orange-2 {
    background: var(--orange-2);
}

/* Container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Polaroid Frame */
.polaroid {
    background: white;
    padding: 20px;
    /* Layered shadows for depth */
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.15),
        0 24px 48px rgba(0, 0, 0, 0.2);
    width: 66.666%;
    max-width: 900px;
    transform: rotate(-2deg);
    margin-bottom: 3rem;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Splash Image */
.splash-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Text Content */
.text-content {
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    /* Layered shadows for depth */
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 16px 48px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tagline {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--orange-1);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.coming-soon {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #666;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .polaroid {
        width: 75%;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .polaroid {
        width: 85%;
        padding: 15px;
        margin-bottom: 2rem;
        transform: rotate(-1.5deg);
    }

    .text-content {
        padding: 2rem 2.5rem;
    }

    .layer {
        transform: skewX(2deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .polaroid {
        width: 95%;
        padding: 12px;
        margin-bottom: 1.5rem;
        transform: rotate(-1deg);
    }

    .text-content {
        padding: 1.5rem 1.5rem;
    }

    .tagline {
        margin-bottom: 0.75rem;
    }

    .coming-soon {
        margin-bottom: 0.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .polaroid {
        border: 2px solid var(--dark-text);
    }
}
