@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&family=Quattrocento:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Original+Surfer&display=swap');

body {
    background-image: url(assets/sea.png);
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    align-items: center;
    height: auto;
    z-index: -99999;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(42, 35, 112);
    outline: 1px solid slategrey;
    border-radius: 100px;
    width: 10px;
}

header {
    display: flex;
    justify-content: center;
    width: 100vw;
    box-shadow: 1px 1px 26px #000,
        -1px -1px 26px #0000;
    position: fixed;
    background-color: white;
    top: 0;
    z-index: 99999;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    height: 70px;
    width: 90vw;
    max-width: 1300px;

}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

}

.logo div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.logo div,
.logo img {
    height: 90%;
}

.logo div h4,
.logo div h6 {
    margin: 0;
    font-family: "Orbitron", serif;
}

.logo div h6 {
    font-weight: 400;
}

nav {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
    width: 40%;
}

nav a {
    text-decoration: none;
    color: black;
    font-family: "Orbitron", serif;
    font-weight: 500;
}
.phone-nav-btn{
    background-color: transparent;
    border: none;
    display: none;
}
.phone-nav-btn svg{
    width: 80%;
    height: 80%;
}
@keyframes menuDown {
    from{
        transform: translateY(-110%);

    }
    to {
        transform: translateY(0);
    }
}
@keyframes menuUp {
    from{
        transform: translateY(0);
    }
    to {
        transform: translateY(-110%);
    }
}
.phone-nav{
    position: fixed;
    padding-top:10px ;
    top: 55px;
    width: 100%;
    background-color: white;
    list-style: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 998;
    /*animation: menu 2s;*/
    display: none;
    padding: 0;
}
.phone-nav li{
    margin: 25px 0;
}
.phone-nav li a{
    text-decoration: none;
    color: black;
    font-family: "Orbitron", serif;
}
.games {
    padding: 10px 5px;
    border-radius: 10px;
    color: #0FA3B1;
    border: 1px solid #0FA3B1;

}

.games:hover {
    background-color: #0FA3B1;
    color: white;
    transition: 1s;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: px;
    position: relative;

}

h1 {
    font-family: "Original Surfer", serif;
    font-size: 3rem;
    color: #faffff;
    justify-content: center;
    margin: 0;
    position: absolute;
    top: 100px;

}

.fish {
    position: absolute;
    width: 150px;
    left: -1px;
    top: 70px;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.diver {
    position: relative;
    width: 250px;
    /* left: 70px; */
    top: 170px;
    z-index: -1;
}

.phonediver {
    position: relative;
    width: 250px;
}

.bubbles {
    position: absolute;
    width: 150px;
    rotate: 90deg;
    z-index: -1;
}

.formulier {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(assets/paperscroll.png);
    background-size: 100%;
    width: 100vw;
    max-width: 600px;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 190px;
    margin-top: -10px;
    padding-bottom: 200px;
    margin-bottom: -10px;

}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50%;
}

input {
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-family: "Orbitron", serif;
}

#formtext {
    font-family: "Orbitron", serif;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    padding: 12px 20px;
    margin: 8px 0;
}

input:focus {
    border-color: #4CAF50;
}

.foso {
    height: 56px;
    width: auto;
}

#foso1 {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

#foso2 {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

#foso3 {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}
footer {
    background-image: url("./images/sand footer (1) 1.png");
    background-size: 100% 100%;;
    width: 100vw;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;


}

.inner-footer {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-part {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 33.33%;
}

.footer-part img {
    /*height: 80%;*/
    width: 60%;
    display: block;
}

.footer-part ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-part ul li {
    margin: 10px 0;
}

.footer-part ul li a {
    position: relative;
    text-decoration: none;
    color: black;
    font-family: "Original Surfer", serif;
    font-size: 1.5rem;

}

.footer-part ul li a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    height: 2px;
    left: 50%;
    width: 0%;
    background-color: #000000;
    transition: 0.3s;
}

.footer-part ul li a:hover:before {
    left: 0;
    width: 100%;
}

.footer-middle {
    flex-direction: column;
    justify-content: center;
}

.footer-middle img {
    width: 50%;
}

.footer-middle h1 {
    font-family: "Orbitron", serif;
    text-align: center;
}

.footer-right ul li {
    text-align: right;
}
@media screen and (max-width: 1000px) {
    .text-container {
        position: absolute;
        width: 567px;
        top: 10px;
        left: calc(50% - 270px);
    }

    .big-photo-part .text-container h1 {
        font-size: 74px;
        text-align: center;
    }
    .hat {
        position: absolute;
        width: 60px;
        left: 5px;
        top: 55px;
    }

    .glasses {
        position: absolute;
        width: 55px;
        right: 128px;
        top: 75px;
    }

    .umbrella {
        position: absolute;
        width: 70px;
        right: 20px;
        top: 55px;

    }
    .seaText {
        width: 90vw;
    }
    .diver-container {
        width: 7vw;
    }
    .submarine-container {
        left: calc(50% - 45vw);
        width: 90vw;
    }
    .game-container {
        bottom: 15%;
    }
    .game-container div {
        width: 15vw;
        height: 15vw;
    }

    .big-fish{
        width: 50vw;
    }
    .footer-part ul li a {
        font-size: 1rem;
    }
    .footer-middle h1 {
        font-size: 1rem;
    }
}
@media screen and (max-width: 650px) {
    nav{
        display: none;
    }
    .phone-nav-btn{
        display: block;
    }
    .text-container {
        position: absolute;
        width: 375px;
        top: 10px;
        left: calc(50% - 160px);

    }
    .big-photo-part .text-container h1 {
        font-size: 45px;
    }
    .hat {
        position: absolute;
        width: 35px;
        left: 5px;
        top: 35px;
    }

    .glasses {
        position: absolute;
        width: 35px;
        right: 106px;
        top: 45px;
    }

    .umbrella {
        position: absolute;
        width: 40px;
        right: 43px;
        top: 34px;

    }
    .diver-container {
        width: 10vw;
    }
    .submarine-container {
        left: calc(50% - 45vw);
        width: 90vw;
    }
    .game-container {
        bottom: 15%;
    }
    .game-container div {
        width: 10vw;
        height: 10vw;
    }
    .game-container a {
        font-size: 0.75rem;
    }
    .welcome-container {
        left: calc(50% - 22.5vw);
    }
    .about-us-container {
        right: calc(50% - 22.5vw);
    }
}
@media screen and (max-width: 485px) { 

    .diver {
        top: 230px;
        left: -10px;
    }
    input {
        padding: 5px 0px;
           
    }
    form {
        gap: 0px;
    }



}
