/* Fonts */
@font-face {
    font-family: dolceVitaBold;
    src: url("../resources/fonts/Dolce\ Vita\ Heavy\ Bold.ttf");
}

@font-face {
    font-family: dolceVita;
    src: url("../resources/fonts/Dolce\ Vita.ttf");
}

@font-face {
    font-family: dolceVitaLight;
    src: url("../resources/fonts/Dolce\ Vita\ Light.ttf");
}

@font-face {
    font-family: poppins;
    src: url("../resources/fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: poppinsLight;
    src: url("../resources/fonts/Poppins-Light.ttf");
}

@font-face {
    font-family: poppinsBold;
    src: url("../resources/fonts/Poppins-Bold.ttf");
}

/* HTML -- Body */
html, body {
    /* touch-action: pan-y; */
    /* overflow: hidden; */
    overflow-x: hidden;
    /* padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); */
    background-color: black;
    height: 100%;
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; 
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* Scroll Icon */


/* Video */
.video-container {
    position: relative;
    width: 100%;
    /* user-select: none;
    -webkit-user-select: none; */
    /* touch-action: none;
    pointer-events: none; */
}

#header-video {
    width: 100vw;
    height: 101vh;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
}

.main-wrapper {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 0px;
    background-color: black;
}

section {
    position: relative;
    padding: 50px;
    background-color: black;
    color: #202020;
    height: auto;
    width: 100%;
    text-align: center;
}

.header {
    position: absolute;
    width: 100vw;
    height: 100%;
    min-height: 100%;
    text-align: center;
    justify-content: center;
    /* font-family: dolceVitaBold; */
    user-select: none;
    -webkit-user-select: none;
    pointer-events: all;
    /* touch-action: none; */
    color: white;
}

#scroll-gif {
    width: 100px;
    filter: invert(1);
    -webkit-filter: invert(1);
    position: fixed;
    bottom: 10px;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    touch-action: none;
}

.hidden {
    animation: fadeOut 1.5s forwards;
}

.show {
    animation: fadeIn 3s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}


.header-section {
    position: absolute;
    width: 80%;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header h1, .header h2 {
    text-shadow: 0px 0px 20px #000000f5;
}

.colored {
    /* background-color: #c7beb0; */
    background-color: #cccccc;
    color: rgb(39, 39, 39);
}

.main-text {
    color: rgb(39, 39, 39);
    font-size: 1.5rem;
}

.main {
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    margin-top: 50px;
    margin-bottom: 50px;
}

.grid {
    position: relative;
    width: 100%; 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
    margin-bottom: 20px;
}

.grid img {
    width: 100%;
    background-color: #888;
    overflow: hidden;
    border-radius: 2px;
}

.social a {
    padding: 10px;
    color: white;
}

.section a {
    font-size: 2.4rem;
    outline: none;
    text-decoration: none;
    color: white;
}

.grid-img {
    width: 100%;
    transition: all 0.5s ease;
}

.grid-img:hover {
    opacity: 0.6;
}

.footer {
    text-align: center;
    color: white;
    background-color: black;
    width: 100%;
    padding: 20px;
    z-index: 1;
}

.footer p {
    font-size: small;
    color: rgb(194, 194, 194);
}


section .icon {
    font-size: 2.5rem;
    outline: none;
    text-decoration: none;
    margin: 15px;
    color: #555;
    /* font-size: 60px; */
}

.card {
    padding: 20px;
}

.avatar-icon {
    padding: 10px 50px 10px 50px;
}

/* Texts & Fonts */
h1 {
    font-family: dolceVitaBold;
    text-align: center;
    font-size: 3rem;
    /* margin-bottom: 10px; */
}

h2 {
    font-family: poppins;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    /* margin-bottom: 10px; */
}

p {
    /* font-family: dolceVitaLight; */
    text-align: center;
    font-size: 1.2rem;
    font-family: poppinsLight;
    font-weight:100;
    color: #555;
    line-height: 2.2rem;
}


.reveal {
    /* position: relative; */
    transform: translateY(150px);
    opacity: 0;
    transition: all 1.6s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

@media only screen and (max-width: 768px) {

    html, body {
        height: 100%;
    }

    section {
        padding: 20px;
    }

    #header-video {
        height: 100vh;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .main {
        padding: 0px;
    }

    p {
        font-size: 1rem;
    }

    .grid-img:hover {
        opacity: 1;
    }
}


.start-experience-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

.start-experience-btn:hover {
    background-color: white;
    color: black;
}

.mute-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}

.mute-button img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.mute-button img.muted {
    opacity: 0.5;
}


@keyframes fadeOut {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}
