.first-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
}

.hero video {
    position: absolute;
    inset: 0;
    top: -1%;
    left: -5%;
    width: 110%;
    height: 104%;
    object-fit: cover;
    filter: blur(.5rem) brightness(0.8);
    z-index: -1;
}

.hero-text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

    position: absolute;   
    bottom: 5rem;        
    left: 8rem;             
    color: var(--base-color);           
    z-index: 1;             
    max-width: 40%; 
    font-family: Inter;
    font-weight: bold;
    
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);

    opacity: 0;
    transform: translateY(10px);
    animation: heroTextIn 1.6s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes heroTextIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    margin: 0;
}

.hero-text p {
    font-family: 'Public Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: var(--base-color);
}

#nav-trigger {
  height: 1px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    color: var(--base-color);
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    color: var(--hover-color);
}

.arrow {
    width:12px;
    height: 12px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce 5s infinite;
    
}

.arrow:hover{
    color: whitesmoke;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) rotate(45deg);}
    40% {transform: translateY(-10px) rotate(45deg);}
}

.scroll-up .arrow {
    transform: rotate(-135deg);
    margin-bottom: 10px;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-135deg); }
    40% { transform: translateY(10px) rotate(-135deg); }
}

.scroll-up .arrow {
    animation: bounceUp 5s infinite;
}


.gallry-hub {
    height: 100vh;
}

.gallery-hub img {
    height: 10rem;
    width: auto;
    border-radius: 1rem;
}

.aboutMe {
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: auto;
    padding: 1rem; 
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}


.aboutMe img {
    position: relative;
    width: auto;
    height: 18rem;
    border-radius: 1rem;
}

.aboutMe-text {
    display: block;
}

.aboutMe-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}


h2 {
    font-family: Inter;
    color: var(--text-color);
    font-size: 2rem;
}

p {
    font-family: public sans;
    color: var(--base-color);
    font-size: 1.2rem;

    margin:3rem auto;
    max-width: 50rem;
}

.cta-button {
    text-decoration: none;
    color: var(--base-color);
    background-color: var(--text-color);
    padding: .75em 1.25em;
    border-radius: .5em;
    font-weight: bold;
    font-family: Inter;
    margin-right: 1rem;
}

