*{
    margin:0;
    Padding:0;
}

/* HTML5 Semantic Tags */
header, section, footer {
    width: 100vw;
    height: 170vh;
}

@font-face {
    font-family: Girdle;
    src: url(../../../fonts/GoldenGirdle.otf)
}


ol {
    list-style-type: none;
}


/* SECTION CONTAINER */
.section-two-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 60px 0;
}

/* IMAGE WRAPPER (POSITIONED FOR OVERLAY) */
.section-two-image-wrapper {
    position: relative;
    width: 40%;        /* Takes up the left half of the page */
    height: auto;
    perspective: 1200px; 
}

/* IMAGE */
.section-two-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 10vw;
    margin-top: 20vw;
   transform-style: preserve-3d;
    transition: transform 1.2s ease-in-out;
    overflow: hidden;
    position: relative;
}

.section-two-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );

    transform: skewX(-20deg);
    transition: left 1.2s ease-in-out;
}

.section-two-image:hover {
    transform: rotateY(360deg);
}

.section-two-image:hover::after {
    left: 150%;
}


.image-text h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.image-text p {
    font-size: 1.1rem;
}



nav{
    position:fixed;
    top: 10vh;
    
}



a:link{
    display: inline-block;
    width: 2vw;
    height: 2vw;
    margin-bottom: 2vh;
    padding: 2px;
    text-decoration: none;
}

a:visited{
    text-decoration:none;
    color: black;
}

a:hover span{
    font-size: 0px;
    opacity: 0;
    position: relative;
    top: 0.2vw;
    right: 2vw;
    white-space: nowrap;
    transition: right 0.2s, opacity 0.2s;
}

a:hover span{
    font-size:1.2vw;
    right: 9vw;
    opacity: 1;
}

span{
    font-size: 0px;
    opacity: 0;
    position: relative;
    top: 0.2vw;
    right: -4vw;
    white-space: nowrap;
    transition: right 5s, opacity 1s;
}


h3{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 6em;
    Text-align: center;
    Padding-top: 40vh;
    color: white
}


.button{
    width: 80px;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hover-label{
    font-family: Girdle;
    font-size: 0.9rem;
    color: white;

    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; 
}

.nav-link:hover.hover-label {
    opacity: 1;
    transform: translateX(0);
}


.movies{
    width: 100vw;                 /* full width */
    height: 100vh;                /* full height of screen */
    background-image: url("img/movies-full.jpg"); /* your image path */
    background-size: contain;     /* FITS THE WHOLE IMAGE */
    background-repeat: no-repeat; /* no tiling */
    background-position: center;  /* keeps it centered */
    background-color: black; 
}

.tech-image-section {
    width: 100vw;
    overflow-x: hidden;
    background-color: black;
}

.tech-full-image {
    width: 60%;
    height: auto;        /* keeps correct tall aspect ratio */
    display: block;
}

.aesthetics{ 
    width: 100vw;                 /* full width */
    height: 100vh;                /* full height of screen */
    background-image: url("img/movies-full.jpg"); /* your image path */
    background-size: contain;     /* FITS THE WHOLE IMAGE */
    background-repeat: no-repeat; /* no tiling */
    background-position: center;  /* keeps it centered */
    background-color: black;
    padding-top: 1vw; 
}



/* Color Classes */

.intro{
    background-image: url(../img/y2kwindowsbackground.jpg);
    background-size:cover;
    background-position: center;
    background-attachment:fixed;

}

.bubbles{
    background-image: url(../img/y2kbubblesbackground.png);
    background-size:cover;
    background-position: center;
    background-attachment:fixed;
}

.movies{
    background-image: url(../img/Zine25.png);
    background-size:cover;
    width:100vw;
}

.tech{
    background:url(../img/Zine24.png);
    background-size: cover;
    width:100vw;
}

.aesthetics{
    background-image: url(../img/Zine23.png);
    background-size:cover;
    width:100vw;
}

.yellow{
    background-color:#f6ae2d
}


.music{
    background-image: url(../img/Zine26.png);
    background-size:cover;
    width:100vw;
}

.purple{
    background-image: url(../img/y2kaesthetic.jpg);
    background-size:cover;
    width:100vw;
}