@import url(//fonts.googleapis.com/css?family=Lato:300:400);
@font-face {
    font-family: 'Lato';
    src:url('Lato-Light.ttf') format('truetype'); /* Safari, Android, iOS */
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Moonbright';
    src: url('Moonbright.ttf') format('truetype');
}

body {
    margin: 0;
    width: 100%;
    height: 100vh;
    background: -webkit-linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
    background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);


    overflow-x: hidden;
    overflow-y: hidden; /* Prevent vertical scroll */
}

h1 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 48px;
    color: white;
    margin: 0;
}

.small-text {
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.face text {
    font-family: 'Moonbright', sans-serif;
    font-size: 15px;
    fill: black;
}

p {
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    color: #fff;
}

.header {
    position: relative;
    text-align: center;
    color: white;
}

.logo {
    width: 50px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
}

.wave {
    width: 100%;
    height: 100%;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* Circle animations */
.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.7));
    position: absolute;
    animation: circleMove 8s infinite ease-in-out;
}

@keyframes circleMove {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.circles.left {
    position: absolute;
    top: 15%;
    left: 5%;
}

.circles.left .circle:nth-child(1) {
    top: -40px;
    left: 190px;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}

.circles.left .circle:nth-child(2) {
    top: 190px;
    left: 30%;
    width: 90px;
    height: 90px;
    animation-delay: 4s;
}

.circles.left .circle:nth-child(3) {
   top: 90%;
    left: 500px;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
}

.circles.left .circle:nth-child(4) {
     top: 250px;
    left: 350px;
    width: 70px;
    height: 70px;
    animation-delay: 3s;
}

.circles.left .circle:nth-child(5) {
    
       top: 0px;
    left: 0px;
    width: 60px;
    height: 60px;
    animation-delay: 1s;

}

.circles.left .circle:nth-child(6) {
top: 400px;
    left: 50px;
    width: 170px;
    height: 170px;
    animation-delay: 5s;
}

/* Right-side circles */
.circles.right {
    position: absolute;
    top: 10%;
    right: 10%;
}

.circles.right .circle:nth-child(1) {
    top: 200px;
    left: 20px;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.circles.right .circle:nth-child(2) {
   top: 50px;
    right: 10px;
    width: 70px;
    height: 70px;
    animation-delay: 2s;
}

.circles.right .circle:nth-child(3) {
    top: 300px;
    right: 200px;
    width: 130px;
    height: 130px;
    animation-delay: 4s;

}

/* Footer styling */
.footer {
    position: relative;
    width: 100%;
    background: #000;
    min-height: 150px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.copyright {
    text-align: center;
    color: white;
    padding: 10px;
    margin: 0;
}

/* Social icons layout */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    padding: 0 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #1DA1F2;
}

/* Responsive layout */
@media screen and (max-width: 950px) {
    body {
        background: -webkit-linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
        background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
    
       min-height: 100vh; /* Ensure body takes full height */
   }
    .waves {
        height: 40px;
        min-height: 40px;
    }
    .content {
        height: 30vh;
    }
    h1 {
        font-size: 24px;
        color: white;
    }
/*
    .inner-header {
    height: 75vh;
    }
*/
    .footer {
      flex-direction: column;
        padding: 10px;
        min-height: 250px; /* Increase if needed */
         
    }
    .copyright{
 transform: translateY(-30px); 
    }
    .social-icons {
        flex-direction: row;
        margin-top: 5px;
    }
    .circles.right .circle:nth-child(3) {
          right: 30px;
           width: 30px;
		  height: 30px;
    }
    .circles.left .circle:nth-child(n+4),
    .circles.right .circle:nth-child(n+3) {
        display: none; /* Hide extra circles */
    }

    .circles.left .circle:nth-child(1) {
       width: 120px;
        height: 120px;
        top: 90px;
        left: 20%;
    }

    .circles.left .circle:nth-child(2),
    .circles.right .circle:nth-child(1) {
        width: 70px;
        height: 70px;
        top: 400px;
        left: 10%; /* For left */
        right: 10%; /* For right */
    }
    .circles.right .circle:nth-child(1) {
         width: 230px;
        height: 230px;
        left: -130px;
    }

    .circles.left .circle:nth-child(3),
    .circles.right .circle:nth-child(2) {
        width: 40px;
        height: 40px;
        top: 60%;
        left: 15%; /* For left */
        right: 15%; /* For right */
    }
    .circles.right .circle:nth-child(2) {
        width: 190px;
        height: 190px;
        left:-100px;
      
        
    }
}
@media screen and (max-width: 600px) {
    body {
        background: -webkit-linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
        background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(40, 40, 40, 1) 100%);
    }
    .footer {
        flex-direction: column;
          padding: 10px;
          min-height: 300px; /* Increase if needed */
      }
}

/* Prevent vertical scrolling if not necessary */
html, body {
    overflow-x: hidden; /* Disable horizontal scroll */
    overflow-y: hidden; /* Disable vertical scroll */
    box-sizing: border-box;
}