/**
 * Woven Coming Soon Website - Stylesheet
 * 
 * Design Philosophy: Modern Minimalism with Motion
 * - Clean, minimal layout with deep navy blue brand color
 * - Staggered animations for elegant visual hierarchy
 * - Responsive design for all devices
 */

/* ============================================
   CSS Variables & Root Styles
   ============================================ */

:root {
    /* Brand Colors */
    --primary: #003DA5;
    --primary-light: #0052CC;
    --primary-lighter: #1A73E8;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --gray: #E8E8E8;
    --dark-gray: #666666;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    
    /* Typography */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius: 0.5rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Layout & Container
   ============================================ */

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

.content-wrapper {
    max-width: 48rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* ============================================
   Logo Section
   ============================================ */

.logo-section {
    display: flex;
    justify-content: center;
}

.woven-logo {
    height: 4rem;
    width: auto;
}

/* ============================================
   Video Section
   ============================================ */

.video-section {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
}

.video-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--light-gray);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Tagline Section
   ============================================ */

.tagline-section {
    text-align: center;
}

.tagline-section h1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tagline-primary {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.tagline-secondary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============================================
   Accent Line
   ============================================ */

.accent-line {
    height: 0.25rem;
    width: 4rem;
    background: linear-gradient(to right, transparent, #2563eb, transparent);
    border-radius: 2px;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--primary-light);
    color: var(--text-light);
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.contact-button:hover {
    background-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contact-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.coming-soon {
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-align: center;
}

/* ============================================
   Spacer
   ============================================ */

.spacer {
    height: 2rem;
}

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

.footer-section {
    border-top: 1px solid var(--gray);
    padding-top: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

.native-link {
    display: inline-block;
    transition: var(--transition);
}

.native-link:hover {
    opacity: 0.8;
}

.native-logo {
    height: 1.3rem;
    width: auto;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleInX {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.fade-in-1 {
    animation: fadeInScale 0.7s ease-out 0s forwards;
    opacity: 0;
}

.fade-in-2 {
    animation: fadeInScale 0.7s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-3 {
    animation: fadeInUp 0.7s ease-out 0.3s forwards;
    opacity: 0;
}

.fade-in-4 {
    animation: scaleInX 0.7s ease-out 0.4s forwards;
    opacity: 0;
    transform-origin: center;
}

.fade-in-5 {
    animation: fadeInUp 0.7s ease-out 0.5s forwards;
    opacity: 0;
}

.fade-in-6 {
    animation: fadeInUp 0.7s ease-out 0.6s forwards;
    opacity: 0;
}

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

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

    .woven-logo {
        height: 2.5rem;
    }

    .tagline-primary {
        font-size: 1rem;
    }

    .tagline-secondary {
        font-size: 1.25rem;
    }

    .contact-button {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .native-logo {
        height: 1.3rem;
    }

    .spacer {
        height: 1rem;
    }
}

@media (min-width: 769px) {
    .container {
        padding: 3rem 1rem;
    }

    .woven-logo {
        height: 6rem;
    }

    .tagline-primary {
        font-size: 1.25rem;
    }

    .tagline-secondary {
        font-size: 1.875rem;
    }

    .contact-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .native-logo {
        height: 1.3rem;
    }

    .spacer {
        height: 3rem;
    }
}
