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

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

/* Background image with blur */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('steve_a_johnson-background-7303528.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    transform: scale(1.1);
    z-index: -2;
}

/* Dark overlay for better text contrast */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

/* Main container */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

/* Content wrapper */
.content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    max-width: 90vw;
}

/* Heading */
h1 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

/* Paragraph */
p {
    font-size: clamp(1rem, 3vw, 1.35rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
    letter-spacing: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

/* Mobile optimizations */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        max-width: 100%;
    }
    
    h1 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    p {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: clamp(2rem, 8vh, 4rem);
        margin-bottom: 0.75rem;
    }
}
