:root {
    --grey-transparent-background: rgba(0, 0, 0, 0.6);
    /* background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3)); */
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100svh;

    background-image: url('images/nightclub.jpg'); /* Replace with the actual path to your image */
    background-size: cover; /* This property ensures the image covers the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    /* backdrop-filter: blur(4px); */
    /* filter: blur(5px); */
}

* {
    min-width: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.back-video {
    min-width: 1400px;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    /* filter: blur(2px); */
}

/* @media (min-aspect-ratio: 16/9) {
    .back-video {
        width: 100%;
        height: auto;
    }
} */

/* @media (max-aspect-ratio: 16/9) {
    .back-video {
        width: auto;
        height: 100%;
    }
} */

.hidden {
    display: none;
}

.hero {
    flex-grow: 1;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    overflow: clip;
}

nav {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    background-image: linear-gradient(rgb(14, 14, 14), rgba(14, 14, 14));

    & > a {
        display: block;
        width: fit-content;

        & .logo {
            width: clamp(150px, 100%, 300px);
        }
    }
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.content {
    text-align: center;
    width: 100%;
}

.grey-background {
    padding-block: 5ch;
    background-color: var(--grey-transparent-background);
}

@keyframes shine {
    0% {
        background-position: -100px;
    }

    100% {
        background-position: 100px;
    }
}


.content h2 {
    font-size: 2em;
    color: #f8f8f8;
    font-weight: 600;
    transition: 0.5s;
    overflow: hidden;
    /* background: linear-gradient(to right, #fff, transparent, #fff);
    background-size: 200% 100%;
    background-position: 0 0; */
    /* animation: shine 5s infinite;  */
}

/* .content h2:hover {
    -webkit-text-stroke: 2px #f8f8f8;
    color: transparent;
} */


.content h1 {
    font-size: calc(2em + 1vw);
    color: #f8f8f8;
    font-weight: 600;
    transition: 0.5s;
    padding-bottom: 1rem;
}

/* .content h1:hover {
    -webkit-text-stroke: 2px #f8f8f8;
    color: transparent;
} */

@media screen and (max-width: 600px) {
    /* .content h1 {
        font-size: 3em;
    }

    .content h2 {
        font-size: 1em;
    } */

    .profile-cards {
        flex-direction: column;
        align-items: center;
    }

    .profile-card {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .content h1 {
        font-size: 2em;
    }

    .content h2 {
        font-size: 1em;
    }
}

/* .name-link {

} */


.content .social-links a {
    text-decoration: none;
    display: inline-block;
    color: #f8f8f8;
    font-size: 24px;
    border: 2px solid #f8f8f8;
    padding: 14px 70px;
    border-radius: 50px;
    margin-top: 20px;
}

.countdown-container {
    background-color: rgba(255, 255, 255, 0.3);
    /* Slightly transparent white background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Optional box shadow for a subtle effect */
    backdrop-filter: blur(10px);
    /* Optional backdrop filter for a frosted glass effect */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: max-content;
    /* Set max-width to fit content */
    width: content;
    margin: 0 auto;
}

.countdown {
    font-size: 2em;
    color: #f8f8f8;
    /* Text color */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.2em;
}

.countdown span strong {
    font-size: 2em;
    color: #FF4081;
    /* Pink color, you can change it to your preferred color */
}

.socials {
    margin-top: 20px;
    font-size: 1.5em;
}

.socials i {
    margin-right: 15px;
    cursor: pointer;
}

.fab {
    color: #f8f8f8;
    font-size: 40px;
}

.profile-cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 20px;
}

.profile-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    background-color: var(--grey-transparent-background);
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    margin: 10px;
    text-align: center;
    color: #f8f8f8;
}

.profile-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.profile-card h3 {
    margin: 10px 0 5px;
}

.profile-card p {
    margin: 0;
    padding: 10px;
}

.social-links {
    margin-top: auto;
    padding-block: 1rem;

    &a {
        color: #333;
        transition: color 0.3s ease-in-out;

        &:hover {
            color: #007BFF;
        }
    }
}



