/*COMMON SECTION*/
body{
    padding: 0;
    margin: 0;
    font-family: geologica ,'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: url(backgroundImg/milky-way-67504.jpg);
}

@font-face {
    font-family: geologica;
    src: url(fonts/Calm/Geologica/Geologica-VariableFont_CRSV\,SHRP\,slnt\,wght.ttf);
}
@font-face {
    font-family: museo;
    src: url(fonts/Calm/MuseoModerno/MuseoModerno-VariableFont_wght.ttf);
}

:focus-visible  {
    outline: lime 1.5px solid;
            box-shadow: 0 0 10px lime;
}

button:hover{
    cursor: pointer;
}
select:hover{
    cursor: pointer;
}


/*NAV SECTION*/
header {
    background-image: linear-gradient(to top left, rgb(204, 0, 255), rgb(0, 32, 146));
    min-height: 80px; 
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}


header img {
    display: block;
    width: 70%;
    max-width: 230px;
    height: auto;
    margin: 0 auto;
}


header input#navInput {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    margin: 0;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
}

header button.hamburgerMenu {
    position: absolute;
    z-index: 9;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.hamburgerLines {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.line {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

input:checked ~ .hamburgerMenu .hamburgerLines .line1 {
    transform: translateY(8px) rotate(45deg);
    background-color: black;
}
input:checked ~ .hamburgerMenu .hamburgerLines .line2 {
    opacity: 0;
    transform: translateX(-18px);
}
input:checked ~ .hamburgerMenu .hamburgerLines .line3 {
    transform: translateY(-8px) rotate(-45deg);
    background-color: black;
}

.mobileNav {
    background-color: rgb(160, 75, 225);
    width: 100%;
    height: auto;
    min-height: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    padding-top: 60px; 
}


input:checked ~ .mobileNav {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.mobileNav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 25px;
}

.mobileNav a {
    text-decoration: none;
    color: white;
    font-size: 28px; 
    font-size: clamp(24px, 6vw, 34px);
    font-weight: bold;
}





footer{
    background-image: linear-gradient(to top left, rgb(204, 0, 255), rgb(0, 32, 146));
    min-height: 80px; 
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}
footer p{
    color: lightblue;
    font-size: 12px;
}
footer a{
    color: white;
}
.right{
    display: flex;
}
.right a{
margin: 20px;   
}

#yt{
    background-color: rgb(255, 255, 255);
    color: rgb(255, 0, 0);
    text-decoration: none;
    padding: 3px;
    scale: 120%;
    border-radius: 5px;
    box-sizing: border-box;
}

#IMDb{
    background-color: gold;
    color: black;
    text-decoration: none;
    padding: 3px;
    border-radius: 5px;
    box-sizing: border-box;
}