/* ═══════════════════════════════════════════════════════
   FLYING V - DRAMATIC STYLING (80vh feathers)
   ═══════════════════════════════════════════════════════ */

#flying-v-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

.feather {
    position: fixed;
    height: 80vh;  /* DRAMATIC HEIGHT */
    width: auto;   /* Maintain aspect ratio */
    will-change: transform, opacity, filter;
    
    /* Remove any default transforms */
    transform-origin: center center;
}

/* LEFT FEATHER - Initial state (GSAP will animate from here) */
#feather-left {
    /* GSAP handles all positioning */
}

/* RIGHT FEATHER - Initial state (GSAP will animate from here) */
#feather-right {
    /* GSAP handles all positioning */
}

/* Remove old CSS animations - GSAP handles everything now */
@keyframes featherFallLeft { /* DELETED */ }
@keyframes featherFallRight { /* DELETED */ }
@keyframes breathe { /* DELETED */ }
