/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes scroll-bg {
    0% {
        background-position: 100% 0; /* Start from the right */
    }
    100% {
        background-position: 0 0; /* Move to the left */
    }
}

/* FONTS */
@font-face {
    font-family: 'Titlecard';
    src: url('../fonts/font2.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Basic Text';
    src: url('../fonts/font3.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Users';
    src: url('../fonts/font6.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    background-color: #0F2027 !important;
}

.banner {
    height: 82vh;
    width: 100vw; /* Set the width to viewport width */
    background-image: url('../images/banner2.png');
    background-repeat: repeat-x;
    background-size: auto 100%; /* Ensure the image repeats properly */
    animation: scroll-bg 10s linear infinite;
    display: flex;
    color: white;
    align-items: center;
    flex-direction: column;
    font-family: 'Titlecard', serif;
    overflow: hidden; /* Hide overflow if necessary */
}

#slogan {
    margin-top: 17%;
    font-family: 'Basic Text', serif;
    font-size: 55px;
}


#create {
    font-family: 'Users, serif';
    font-size: 40px;
    color: white;
}

a {
    display: inline-block; 
     transition: transform 0.25s ease;
}

a:link, a:visited, a:hover, a:active {
    text-decoration: none;--bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  }

a:hover {
     transform: translateY(-4px) scale(1.05);
}

#text {
    font-family: 'Users', serif;
    color: gray;
}

.section {
    margin-top: 2%;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.bottom-nav {
    height: 50vh;
    width: 100vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    background-color:rgba(0, 0, 0, 0.37) !important;
    margin-top: 5%;
}

.link1 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;

}

.link2 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.link3 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
#sub-text {
    font-family: 'Users, serif';
    color: gray;
    font-size: xx-small;
}


.icons {
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(0, 0, 0, 0.37) !important;
}

#icon {
    height: 40px;
    width: 40px;
}


/* @Media Code */
@media (max-width: 480px) {

.banner {
    height: 60vh;
    background-size: auto 100%;
}

.banner h3 {
    font-size: 22px;
}

#slogan {
    font-size: 28px;
    margin-top: 25%;
    text-align: center;
}

#create {
    font-size: 26px;
    text-align: center;
}

#text {
    font-size: 14px;
    text-align: center;
}

.bottom-nav {
    flex-direction: column;
    height: auto;
    gap: 20px;
}

.link1, .link2, .link3 {
    text-align: center;
}

#sub-text {
    font-size: 10px;
    text-align: center;
}

#icon {
    height: 30px;
    width: 30px;
}

}

@media (max-width: 1023px) {

.banner {
    height: 70vh;
    background-size: auto 100%;
}

.banner h3 {
    font-size: 28px;
}

#slogan {
    font-size: 40px;
    margin-top: 20%;
}

#create {
    font-size: 32px;
}

#text {
    font-size: 16px;
}

.bottom-nav {
    height: auto;
    gap: 40px;
    flex-wrap: wrap;
}

.link1, .link2, .link3 {
    text-align: center;
}

#sub-text {
    font-size: 12px;
}

#icon {
    height: 35px;
    width: 35px;
}

}

@media (min-width: 1440px) {

.banner h3 {
    font-size: 42px;
}

#slogan {
    font-size: 70px;
}

#create {
    font-size: 50px;
}

#text {
    font-size: 22px;
}

.bottom-nav p a {
    font-size: 20px;
}

#sub-text {
    font-size: 14px;
}

#icon {
    height: 50px;
    width: 50px;
}

}
