/* =============================================
   Voxlure Studios — Premium Single-Page Styles
   ============================================= */

:root {
    /* Color Palette */
    --charcoal: #1a1a1f;
    --deep-teal: #2d7a7a;
    --dark-navy: #0f1729;
    --muted-copper: #b87333;
    --text-light: #e8e6e3;
    --text-muted: #9a9894;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vh, 8rem);

    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

/* Animated gradient background */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(45, 122, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(15, 23, 41, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(184, 115, 51, 0.05) 0%, transparent 70%),
        var(--charcoal);
    animation: gradientShift 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        opacity: 0.9;
        background-position: 100% 100%, 0% 0%, 50% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

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

.logo {
    width: clamp(200px, 35vw, 360px);
    height: auto;
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Studio Name */
.studio-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.name-primary {
    font-family: 'Cinzel', var(--font-display);
    font-size: clamp(2.4rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #c37f5d;
    text-indent: 0.25em; /* balance letter-spacing */
}

.name-secondary {
    font-family: 'Cinzel', var(--font-display);
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    color: #578380;
    text-indent: 0.5em;
}

/* Tagline */
.tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.1em;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1.2s ease-out 1s both;
}

.scroll-indicator svg {
    width: 28px;
    height: 16px;
    color: var(--muted-copper);
    opacity: 0.5;
    animation: chevronBounce 2s ease-in-out infinite;
}

@keyframes chevronBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(6px);
        opacity: 0.9;
    }
}

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

/* =============================================
   About Section
   ============================================= */

.about {
    position: relative;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark-navy) 50%, var(--charcoal) 100%);
    padding: var(--section-padding) 2rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Divider */
.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted-copper), transparent);
    margin: 3rem auto;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.divider.visible {
    opacity: 1;
    transform: scaleX(1);
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Text */
.about-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text:last-of-type {
    margin-bottom: 0;
}

/* =============================================
   Footer
   ============================================= */

.footer {
    background-color: var(--charcoal);
    padding: 4rem 2rem 3rem;
    border-top: 1px solid rgba(184, 115, 51, 0.1);
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Coming Soon */
.coming-soon {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--deep-teal);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.coming-soon.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.social-links.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    border: 1px solid rgba(232, 230, 227, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--muted-copper);
    border-color: var(--muted-copper);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Copyright */
.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 768px) {
    .name-primary {
        letter-spacing: 0.2em;
        text-indent: 0.2em;
    }

    .name-secondary {
        letter-spacing: 0.4em;
        text-indent: 0.4em;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }

    .scroll-indicator svg {
        width: 24px;
        height: 14px;
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: clamp(160px, 60vw, 240px);
    }

    .name-primary {
        letter-spacing: 0.15em;
        text-indent: 0.15em;
    }

    .name-secondary {
        letter-spacing: 0.3em;
        text-indent: 0.3em;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* =============================================
   Reduced Motion
   ============================================= */

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

    .logo {
        animation: none;
    }

    .hero-bg {
        animation: none;
    }

    .scroll-indicator svg {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}
