* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* Header with Logo */
.site-header {
    background: #000;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 222, 89, 0.2);
}

.header-logo {
    max-height: 10vh;
    width: auto;
    height: auto;
    display: inline-block;
}

/* Hero Section - Sky Background with Coming Soon and Poster */
.hero-section {
    min-height: 90vh;
    background-image: url('https://images.squarespace-cdn.com/content/v1/5970050e29687fd94a814f66/31103a2e-8105-42c5-bec0-1bba3aae20b6/One+Last+Drive+-+Sky+BG.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 90vw;
}

.coming-soon {
    font-family: 'Shadows Into Light Two', cursive;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #FFDE59;
    text-align: left;
    flex: 1 1 0;
    max-width: 600px;
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1.2;
}

.coming-soon a {
    color: #FFDE59;
    text-decoration: none;
    transition: opacity 0.3s;
    display: inline;
}

.coming-soon a:hover {
    opacity: 0.7;
    text-decoration: underline;
    text-decoration-color: rgba(255, 222, 89, 0.5);
    text-underline-offset: 4px;
}

.poster-link {
    flex: 1 1 0;
    display: block;
    transition: transform 0.3s;
}

.poster-link a {
    transform: scale(1.02);
}

.poster-link img {
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

/* Tagline Section - Black Background */
.tagline-section {
    background: #000;
    padding: 6rem 2rem;
    text-align: center;
}

.tagline-section h2 {
    font-family: 'Shadows Into Light Two', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #FFDE59;
    font-weight: normal;
}

/* Instagram Section - Sky Background */
.instagram-section {
    background-image: url('https://images.squarespace-cdn.com/content/v1/5970050e29687fd94a814f66/31103a2e-8105-42c5-bec0-1bba3aae20b6/One+Last+Drive+-+Sky+BG.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.instagram-icon {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.instagram-handle {
    font-family: 'Montserrat', 'DM Sans', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #FFDE59;
    text-decoration: none;
    transition: opacity 0.3s;
}

.instagram-handle:hover {
    opacity: 0.8;
}

/* Production Photos Section - Black Background */
.photos-section {
    background: #000;
    padding: 4rem 0;
    text-align: center;
}

.production-photos {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* Footer Section - Light Background */
.footer-section {
    background: #F3F5F9;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(13, 13, 13, 0.1);
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left {
    text-align: left;
}

.footer-left p {
    font-size: 0.9rem;
    color: #0D0D0D;
    margin: 0.25rem 0;
}

.footer-center {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.emoji {
    font-size: 1.5rem;
}

.footer-item p {
    font-size: 0.85rem;
    color: #0D0D0D;
}

.footer-right {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-right p {
    font-size: 0.9rem;
    color: #0D0D0D;
}

.wyoming-icon {
    width: 40px;
    height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .coming-soon {
        text-align: center;
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .poster {
        max-width: 300px;
    }
    
    .footer-section {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
}
