/* ========================================
   MINIMALIST VIDEO HERO SECTION
   ======================================== */

   :root {
    --dark-bg: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --accent: #00d4ff;
    --gradient-primary: linear-gradient(135deg, #ff2d55 0%, #6c5ce7 100%);
}

.video-hero {
    position: relative;;
    width: 100%;
    height: 90vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Subtle, not overpowering */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 10, 10, 0.1) 0%,
        rgba(10, 10, 10, 0.1) 100%
    );
    pointer-events: none;
}

.video-hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    padding: 2rem;
    text-align: center;
}

/* ========================================
   TYPOGRAPHY - BOLD & MINIMAL
   ======================================== */

.video-hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CTA BUTTONS - CLEAN & EFFECTIVE
   ======================================== */

.video-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    text-transform: none; /* Professional, not shouty */
    letter-spacing: 0.01em;
}

.cta-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 45, 85, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 45, 85, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SCROLL INDICATOR - SUBTLE
   ======================================== */

.video-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    margin-top: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   ANIMATIONS - SMOOTH & PERFORMANT
   ======================================== */

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.animate-fade-in:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-in:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.3s; }

/* ========================================
   RESPONSIVE - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
    .video-hero {
        height: 100svh; /* Better mobile viewport */
    }
    
    .video-hero-content {
        padding: 1.5rem;
    }
    
    .video-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .video-hero-subtitle {
        font-size: 1rem;
    }
}

/* Remove all particle/overlay noise */
.particles-container {
    display: none; /* Minimalism = less is more */
}



/* ========================================
   FIX 2: HERO VIDEO TITLE SPACING
   ======================================== */

   .video-hero {
    position: relative;
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--dark-bg);
    padding-top: 2%; /* Remove extra padding that pushes content down */
    padding-bottom: 2%;
}

.video-hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    padding: 2rem;
    text-align: center;
    /* margin-top: 1rem; Pull content slightly up to avoid nav overlap */
}

.video-hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

/* Keep "Skip the Resume" on one line on desktop */
.video-hero-title br {
    display: none;
}

/* Only break on mobile if needed */
@media (max-width: 640px) {
    .video-hero-title br {
        display: block;
    }
}


/* ========================================
   DYNAMIC TEXT ANIMATION
   ======================================== */

   #dynamic-action,
   #dynamic-value {
       display: inline-block;
       position: relative;
       transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   /* Fade out animation */
   .text-fade-out {
       opacity: 0;
       transform: translateY(-20px);
   }
   
   /* Fade in animation */
   .text-fade-in {
       animation: textFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
   }
   
   @keyframes textFadeIn {
       from {
           opacity: 0;
           transform: translateY(20px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* Optional: Add subtle pulse to highlight changed text */
   .text-pulse {
       animation: textPulse 0.6s ease-out;
   }
   
   @keyframes textPulse {
       0%, 100% {
           transform: scale(1);
       }
       50% {
           transform: scale(1.05);
       }
   }
   