@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;300;400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://www.w3schools.com/w3css/5/w3.css");

@font-face {
    font-family: "MiamiPro-Display-Medium";
    src:    url("/src/assets/fonts/core/miami/MiamiPro-Display-Medium.otf") format('opentype'),
            url("/src/assets/fonts/core/miami/MiamiPro-Display_Medium.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MiamiPro-Display-Light";
    src:    url("/src/assets/fonts/core/miami/MiamiPro-Display-Light.otf") format('opentype'),
    url("/src/assets/fonts/core/miami/MiamiPro-Display_Light.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MiamiPro-Display-Medium", sans-serif;
}

/* 
audio {
    background: url(/src/assets/audios/backgroundmusic.mp3);
}
*/

/* video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    filter: blur(0px);
    -webkit-filter: blur(0px);
}  */

/* #bg-video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    border: none;
    visibility: hidden;
    z-index: -1;
} */

body, ul {
    margin: 0px;
    padding: 0px;
}

p {
    margin: 20px;
    padding: 5px;
    text-align: center;
}

/* 
Nav Bar
*/
.title {
    display: block;
    margin: 0 auto;
    width: 10%;
}

nav {
    background-color: #1D1D1D;
    padding: 25px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #EFEFEF;
    font-weight: bold;
}

nav ul li a:hover {
    color: #455CFF;
}

/* 
Main Section
*/
main {
    text-align: center;
    padding: 50px;
    background-color: #455CFF;
    margin: 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #1D1D1D;
}

/* 
Top Card
*/
.single-card-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.single-card-section .card {
    width: 940px;
    height: 300px;
}

/* 
3 Bottom Cards
*/
.card-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #1D1D1D;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h3 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    margin: 0;
    color: #EFEFEF;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #1D1D1D;
}

.card-content {
    text-align: right;
    margin: 0;
    font-size: 1px;
    color: #EFEFEF;
    padding: 1rem;
}

/* 
Contact Form On Home Page
*/
.contact-form {
    padding: 50px;
    margin: 25px;
    background-color: #1D1D1D;
    box-shadow: 0px 0px 5px #1D1D1D;
    text-decoration: none;
    color: #EFEFEF;
    font-weight: bold;
    padding: 50px;
    border-radius: 10px;
}

.contact-form h1 {
    font-size: 25px;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #EFEFEF;
    border-radius: 10px;
}

.contact-form button {
    margin-top: 15px;
    width: 50%;
    padding: 10px;
    background-color: #455CFF;
    color: #EFEFEF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin: 15px auto 0 auto;
}

.contact-form button:hover {
    background-color: #BC002D;
}

/* 
Footer
*/
footer {
    text-align: center;
    padding: 50px;
    background-color: #1D1D1D;
    color: #EFEFEF;
    margin-top: 15px;
    padding-bottom: 75px;
}

main p a {
    color: #EFEFEF;
}

main p a:hover {
    color: #BC002D;
}

header div p a {
    color: #EFEFEF;
}

header div p a:hover {
    color: #BC002D;
}

/* 
Maintenance Page
*/
.maintenance-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 0 10px;
    overflow: hidden;
    z-index: 2;
}

.maintenance-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1D1D1D;
    background-position: center;
    background-size: cover;
    z-index: -2;
}

.maintenance-page .wrapper {
    width: 400px;
    border-radius: 1px;
    padding: 50px;
    text-align: center;
    border: 1px solid #EFEFEF;
    background: rgb(29 29 29 / 50%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.maintenance-page form {
    display: flex;
    flex-direction: column;
}

.maintenance-page h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #EFEFEF;
}

.maintenance-page h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #EFEFEF;
}

.maintenance-page .text_404 {
    font-family: "MiamiPro-Display-Light", sans-serif;
    font-size: 1.50rem;
    color: #455CFF;
    text-shadow: 1px 1px 1px #1D1D1D;
    font-weight: normal;
    font-style: normal;
}

.maintenance-page .wrapper a {
    color: #EFEFEF;
    text-decoration: none;
}

.maintenance-page .wrapper a:hover {
    text-decoration: underline;
}

/* 
.input-field {
    position: relative;
    border-bottom: 2px solid #EFEFEF;
    margin: 15px 0;
}

.input-field label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #EFEFEF;
    font-size: 16px;
    pointer-events: none;
    transition: 0.15s ease;
}

.input-field input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #EFEFEF;
}

.input-field input:focus~label,
.input-field input:valid~label {
    font-size: 0.8rem;
    top: 10px;
    transform: translateY(-120%);
}

.forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 25px 0 35px 0;
    color: #EFEFEF;
}

#remember {
    accent-color: #455CFF;
}

.forget label {
    display: flex;
    align-items: center;
}

.forget label p {
    margin-left: 8px;
}
 
button {
    background: #EFEFEF;
    color: #455CFF;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 1px;
    font-size: 16px;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

button:hover {
    color: #EFEFEF;
    border-color: #EFEFEF;
    background: #455CFF;
}

.register {
    text-align: center;
    margin-top: 30px;
    color: #EFEFEF;
}

.text-center-footer {
    font-family: "MiamiPro-Display-Light", sans-serif;
    font-size: 0.75rem;
    font-weight: normal;
    font-style: normal;
    text-align: center;
    margin-top: 0px;
}
*/

/* 
BEGIN LOGIN LOADER
*/
/* .loader-container {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(29 29 29 / 50%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.fading-bars {
    display: flex;
    justify-content: space-between;
    width: 80px;
}

.bar {
    width: 10px;
    height: 40px;
    background-color: #455CFF;
    animation: fade 1s infinite;
}

.bar:nth-child(1) {
    animation-delay: 0s;
}

.bar:nth-child(2) {
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    animation-delay: 0.6s;
}

.bar:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes fade {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.input-field-pay {
    position: relative;
    border-bottom: 2px solid #EFEFEF;
    margin: 15px 0;
}

.input-field-pay label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #EFEFEF;
    font-size: 16px;
    pointer-events: none;
    transition: 0.15s ease;
}

.input-field-pay input {
    width: 100%;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #EFEFEF;
}

.input-field-pay input:focus~label,
.input-field-pay input:valid~label {
    font-size: 0.8rem;
    top: 10px;
    transform: translateY(-120%);
}

.input-field-pay i {
    padding: 10px;
    background: transparent;
    color: #efefef;
    min-width: 50px;
    text-align: center;
} */
