.hero {
    position: relative;
    width: 100vw;
    min-height: 800px;
    margin: 0;
    overflow: hidden;
    text-align: left;
}
  
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}

/* top bar: logo + nav */
.hero-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
    z-index: 3;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255, 0.3);
}

/* keep your existing logo + nav styling, but remove old layout rules that assume header is a short bar */
#hLogo img{
    display: block;
    height: auto;
    max-width: 100%;
}
#one{
    margin: auto 0px; 
}
.hero-top nav ul{
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.hero-top nav ul li a{
    align-items: center; /* vertically center text inside link */
    justify-content: center;
    width: 100px;
    height: 50px;
    background: none;
    border: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    display: inline-block;
    color: rgb(48, 48, 66);
    text-decoration: none;
}
/* hero text (like old #intro, left aligned) */
.hero-content {
    position: absolute;
    top: 40%;                    /* vertical center */
    left: 24px;                  /* align to page gutter */
    transform: translateY(-50%); /* only shift vertically */
    max-width: 875px;
    z-index: 4;
    margin: 0;
}
.hero-content h1{
    margin: 24px 0px;
}

/* animated gradient look (yours) */
.hero-heading-anim {
    background-image: radial-gradient(
        circle,
        rgba(48, 48, 66, 0.7) 20%, 
        rgba(45, 140, 190, 0.6) 41%, 
        rgba(87, 132, 199, 1) 66%, 
        rgba(169, 108, 208, 0.7) 88%
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientSwipe 5s ease-in-out forwards 500ms;
}

footer{
    width: 100%;
    margin: 0px;
    height: 208px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(48, 48, 66);
    box-sizing: border-box;
}
#footerData{
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 8px;
}
/* #footerData div{
    flex: content;
} */
#fOne{
    flex: 1;
    margin-right: 150px;
    flex-direction: column;
    align-items: left;
    text-align: left;
}
.fTwo{
    flex: 1;
}
.fTwoP{
    margin-bottom: 8px;
}
/* #footerLogo{
    margin-right: 16px;
} */
#opacity{
    width: 1392px;
    height: 1px;
    opacity: 0.4;
    margin: 32px 0px 0px;
}
#footTitle{
    margin-bottom: 16px;

    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.7) 20%, 
        rgba(45, 140, 190, 0.6) 41%, 
        rgba(87, 132, 199, 1) 66%, 
        rgba(169, 108, 208, 0.7) 88%
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    animation: footerGradientSwipe 10s ease-in-out forwards;
    animation-play-state: paused; /* Paused until we tell it to play */
}
footer #footLink{
    display: flex;
    justify-content: space-around;
    margin-left: 24px;
}
footer #footLink a{
    text-decoration: none;
}
footer #footLink div {
    flex-direction: row;
    align-items: center; 
}
.footA{
    margin: 0px;
    padding: 0px
}
footer #btmfoot {
    margin: 16px auto 0px auto;
  
    display: inline-block;
    /* background-image: radial-gradient(
        circle,
        rgba(74, 74, 104, 0.7) 10%,
        rgba(82, 209, 252, 0.7) 30%,
        rgba(207, 240, 255, 1) 31%,
        rgba(229, 156, 252, 1) 32%
    );
    background-size: 300% 300%;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent; */
}
@keyframes gradientSwipe {
    0% {
        background-position: 100% 50%; /* Start on the right */
    }
    50% {
        background-position: 0% 50%; /* Swipe to the left */
    }
    100% {
        background-position: 50% 50%;
        background-image: none;
        color: rgb(255, 255, 255); /* Final solid color */
    }
}
@keyframes footerGradientSwipe {
    0% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 50% 50%;
        background-image: none;
        color: rgb(48, 48, 66); /* Final solid color */
    }
}