/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors */
    --primary: #8B00FF;
    --primary-dark: #6600CC;
    --primary-light: #A020F0;
    --primary-glow: #B24BF3;
    --secondary: #FF00FF;
    --neutral-dark: #0A0A0A;
    --neutral-mid: #000120;
    --neutral-light: #E0E0E0;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --background: #000000;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 64px;
    --spacing-xxl: 96px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-funky: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Easing curves */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a0a0a, #2e134b, #0d0d1a, #2E134B, #0a0a0a);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
    pointer-events: none;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Disable animation for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
        background: linear-gradient(135deg, #0a0a0a, #1a0033, #0d0d1a);
        background-size: 100% 100%;
    }
}

/* ==================== NAVIGATION ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Highest z-index to ensure nav is always on top */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 0, 255, 0.2);
    overflow: visible;
    /* Changed from hidden to allow menu to extend beyond header */
    isolation: isolate;
    /* Creates a new stacking context */
}

/* Animated gradient background for header */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a, #2e134b, #0d0d1a, #2E134B, #0a0a0a);
    background-size: 300% 300%;
    animation: headerGradientFlow 12s ease infinite;
    opacity: 0.6;
    /* Subtle effect */
    clip-path: inset(0);
    /* Contains the gradient within header bounds */
}

@keyframes headerGradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Disable animation for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .header::before {
        animation: none;
        background: linear-gradient(90deg, #0a0a0a, #1a0033, #0d0d1a);
        background-size: 100% 100%;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.nav-logo:hover .logo-image {
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transform: scale(1.05);
}

/* Responsive logo sizing */
@media (max-width: 600px) {
    .logo-image {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .logo-image {
        width: 85px;
        height: 85px;
    }
}

@media (min-width: 901px) {
    .logo-image {
        width: 100px;
        height: 100px;
    }
}

/* Burger Menu */
.burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 10;
    /* Above menu so X icon is always visible */
}

.burger-line {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition-funky);
    transform-origin: center center;
}

.burger[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.burger[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--neutral-dark);
    list-style: none;
    padding: 80px 30px 30px;
    transition: right var(--transition-funky);
    border-left: 1px solid var(--primary);
    box-shadow: -10px 0 30px rgba(139, 0, 255, 0.3);
    z-index: 1;
    /* Below burger (10) so close icon is visible */
}

/* Mobile menu backdrop overlay */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 9998;
    /* Below header but above everything else */
    backdrop-filter: blur(4px);
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
}

.nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

/* Desktop Navigation */
@media (min-width: 901px) {
    .burger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        padding: 0;
        display: flex;
        flex-direction: row;
        border: none;
        box-shadow: none;
    }

    .nav-menu li {
        margin-bottom: 0;
        margin-left: var(--spacing-md);
        opacity: 1;
        transform: none;
    }

    .nav-link {
        font-size: 16px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1A0033 50%, #330066 100%);
    scroll-margin-top: 0;
    /* Hero starts at top */
    padding: var(--spacing-xl) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--spacing-sm);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.8s var(--ease-out-expo);
}

.hero-title {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

/* First name - Solid white, HUGE */
.hero-name-first {
    font-size: 80px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s var(--ease-out-expo) 0.1s both;
}

/* Middle name - Outlined/Stroke only */
.hero-name-middle {
    font-size: 160px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}

/* Last name - Gradient fill (violet to pink) */
.hero-name-last {
    font-size: 100px;
    font-weight: 700;
    background: linear-gradient(135deg, #B24BF3 0%, #FF6EC7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

/* Hero statement/description */
.hero-statement {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

.hero-statement strong {
    color: #FFFFFF;
    font-weight: 600;
}

.hero-statement .highlight {
    background: linear-gradient(135deg, #B24BF3 0%, #FF6EC7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-out-expo) 0.5s both;
}

/* Primary button - Filled */
.cta-primary {
    padding: 18px 48px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background: linear-gradient(135deg, #B24BF3 0%, #FF6EC7 100%);
    border: 3px solid transparent;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(178, 75, 243, 0.4);
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(178, 75, 243, 0.6);
}

/* Secondary button - Outlined */
.cta-secondary {
    padding: 18px 48px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background: transparent;
    border: 3px solid #FFFFFF;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Legacy button style - keeping for backward compatibility */
.cta-button {
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Responsive Hero Typography */
@media (max-width: 600px) {
    .hero-content {
        text-align: left;
    }

    .hero-tagline {
        font-size: 11px;
    }

    .hero-name-first {
        font-size: 25px;
    }

    .hero-name-middle {
        font-size: 75px;
    }

    .hero-name-last {
        font-size: 50px;
    }

    .hero-statement {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        padding: 16px 32px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    .email-link,
    .form-submit {
        width: 100%;
        text-align: center;
    }

}

/* Tablet & Desktop - buttons return to auto width */
@media (min-width: 601px) {

    .email-link,
    .form-submit {
        width: auto;
        align-self: flex-start;
    }
}

/* Tablet & Desktop Hero */
@media (min-width: 601px) and (max-width: 900px) {
    .hero-name-first {
        font-size: 50px;
    }

    .hero-name-middle {
        font-size: 125px;

    }

    .hero-name-last {
        font-size: 75px;
    }

    .hero-statement {
        font-size: 18px;
    }
}

/* ==================== SECTIONS ==================== */
main {
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--spacing-xxl) 0;
    scroll-margin-top: 80px;
    /* Account for fixed header */
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--spacing-xl);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1;
    position: relative;
}

/* Section title underline accent */
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B24BF3 0%, #FF6EC7 100%);
    margin-top: var(--spacing-sm);
}

/* Split section titles (multi-word with mixed treatment) */
.section-title-split {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 0.95;
}

.title-solid {
    color: #FFFFFF;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
    font-size: inherit;
    font-weight: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

/* Responsive section titles */
@media (max-width: 600px) {
    .section-title {
        font-size: 32px;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .title-outline {
        -webkit-text-stroke: 1.5px #FFFFFF;
        text-stroke: 1.5px #FFFFFF;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .section-title {
        font-size: 40px;
    }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    text-align: left;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.about-card {
    background: var(--neutral-mid);
    border: 1px solid rgba(139, 0, 255, 0.2);
    border-radius: 0;
    padding: var(--spacing-md);
    transition: all var(--transition-base);
}

.about-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.3);
    transform: translateY(-5px);
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-light);
    margin-bottom: var(--spacing-sm);
}

/* Tablet & Desktop About Grid */
@media (min-width: 601px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: var(--spacing-xxl) 0;
    }

    .container,
    .nav-container,
    .hero-content {
        padding: 0 var(--spacing-md);
    }
}

@media (min-width: 901px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section {
        padding: var(--spacing-xxl) 0;
    }

    .container,
    .nav-container,
    .hero-content {
        padding: 0 var(--spacing-lg);
    }

    .section-title {
        font-size: 48px;
    }
}

/* ==================== TIMELINE (EXPERIENCE) ==================== */
.experience {
    text-align: left;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 0;
    background: var(--primary);
    border: 3px solid var(--background);
    box-shadow: 0 0 20px var(--primary-glow);
}

.timeline-date {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: var(--spacing-xs);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.timeline-company {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    list-style: none;
}

.timeline-tags li {
    padding: 6px 12px;
    background: rgba(139, 0, 255, 0.2);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-light);
}

/* ==================== EDUCATION SECTION ==================== */
.education {
    text-align: left;
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.education-card {
    background: var(--neutral-mid);
    border-left: 4px solid var(--primary);
    padding: var(--spacing-md);
    border-radius: 0;
    transition: all var(--transition-base);
}

.education-card:hover {
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.2);
    transform: translateX(5px);
}

.education-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.education-degree {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.education-institution {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.education-details {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (min-width: 601px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 901px) {
    .education-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    text-align: left;
}

.contact-content {
    max-width: 600px;
}

.contact-info {
    margin-bottom: var(--spacing-lg);
}

.email-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    padding: 18px 48px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background: transparent;
    border: 3px solid #FFFFFF;
    border-radius: 0;
    text-decoration: none;
    transition: all var(--transition-base);
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    color: var(--primary-light);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    background: var(--neutral-mid);
    border: 1px solid rgba(139, 0, 255, 0.3);
    border-radius: 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 0, 255, 0.3);
}

.form-submit {
    padding: 18px 48px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background: linear-gradient(135deg, #B24BF3 0%, #FF6EC7 100%);
    border: 3px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(178, 75, 243, 0.4);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(178, 75, 243, 0.6);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--neutral-mid);
    border-top: 1px solid rgba(139, 0, 255, 0.2);
    padding: var(--spacing-lg) var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

@media (min-width: 601px) {
    .footer .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==================== REVEAL ON SCROLL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}