@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100vw; /* Ensures content doesn't extend past screen */
}

body {
    font-family: Montserrat;
    
}


/* Background Video */
#background-video {
    position: fixed; /* Ensures video stays fullscreen */
    top: 0;
    left: 0;
    width: 110vw; /* Full width */
    height: 110vh; /* Full height */
    object-fit: cover; /* Ensures video fills screen */
    z-index: -1;
}

a {
    font-size: .1rem;
}
/* Logo */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    z-index: 1;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Explore Button */
.explore {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.explore img {
    width: 50px;
    height: auto;
    cursor: pointer;
}

/* Popup Menu */
.popup-menu {
    position: absolute;
    bottom: -35%; /* Initially hidden */
    left: 0;
    width: 100%;
    height: 35vh;
    background-color: white;
    transition: bottom 0.5s ease-in-out;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);

}

/* Popup Content Layout */
.popup-content {
    display: flex;
    width: 90%;
    justify-content: space-between;
    align-items: center;
}

/* Left Side - Links */
.popup-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.popup-link {
    font-size: 1.2rem;
    font-weight: 200;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease-in-out;
}

.popup-link:hover {
    color: red;
}

/* Right Side - Text */
.popup-right {
    width: 50%;
    text-align: left;
    font-size: .8rem;
    font-weight: 500;
}

/* Show Popup on Hover or Click */
.explore:hover + .popup-menu,
.popup-menu:hover {
    bottom: 0;
}
