/* ==========================================================================
   THE VISTUDIO — PRODUCTION LANDING PAGE
   Pure White Stage Canvas • Independent Feature Film & Media Production
   ========================================================================== */

:root {
    --bg-white: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent-blue: #0284c7;
    --accent-indigo: #6366f1;
}

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

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Centered Stage Wrapper */
.stage-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
}

/* Main Brand Centerpiece */
.brand-centerpiece {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 950px;
    width: 100%;
    margin-bottom: 44px;
}

/* Logo & Title Lockup */
.logo-lockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

/* Camera Lens / Aperture SVG Icon */
.logo-lens-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-lockup:hover .logo-lens-icon {
    transform: rotate(30deg) scale(1.05);
}

/* Brand Headline (Example 3 Styling) */
.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6.2vw, 64px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
}

.brand-name .word-the {
    font-weight: 700;
    margin-right: 8px;
    color: var(--text-primary);
}

.brand-name .word-vi {
    background: linear-gradient(135deg, #0284c7 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.brand-name .word-studio {
    color: var(--text-primary);
    font-weight: 800;
}

/* Subtitle */
.brand-subtitle {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Footer Section */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.imdb-link {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.imdb-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.imdb-logo-img {
    width: 105px;
    height: auto;
    display: block;
}

.contact-email {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #0284c7;
    text-decoration: underline;
}

.copyright-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.02em;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-lockup {
        flex-direction: column;
        gap: 14px;
    }
    .logo-lens-icon {
        width: 52px;
        height: 52px;
    }
}
