nav {
    color: aliceblue;
}

nav ul a {
    color: aliceblue;
}

nav ul a:hover {
    color: var(--yellow-color);
}

.btn-return {
    color: aliceblue;
}

.btn-return:hover {
    color: var(--yellow-color);
}

.brand a {
    text-decoration: none;
    color: aliceblue;
}

.highlited {
    border: 2px solid aliceblue;
}

.highlited:hover {
    border: 2px solid var(--yellow-color);
}

.active {
    color: var(--yellow-color);
    pointer-events: all;
}

.highlited-active {
    border: 2px solid var(--yellow-color);
}


.hero-section {
    height: 70vh;
}

.hero-section-header {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-bg-color);
}

.hero-section-header-img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    object-fit: cover;
}

.hero-section-header .description {
    font-family: 'Helvetica Rounded Bold';
    font-size: 2rem;
    color: aliceblue;
    text-shadow: 0px 0px 5px var(--primary-bg-color);
}

.hero-section-header .text-thin {
    color: aliceblue;
}

#cursor-hero-section {
    background-color: transparent;
    border: 0px solid aliceblue;
    mix-blend-mode: normal;
}

.hero-section:hover #cursor-hero-section {
    border: 2px solid aliceblue;
}


/**/

.video {
    /* height: 480px; */
    width: 60%;
    min-width: 50%;
    aspect-ratio: 16/9;
    margin: 2rem auto;
    background-color: black;
    color: aliceblue;
    text-align: center;
    align-content: center;
    animation: rise 400ms ease-out backwards;
    animation-play-state: paused;
}

.video * {
    height: 100%;
    width: 100%;
}


.photo-gallery-grid {
    width: 100%;
    columns: 400px;
    text-align: center;
}

.photo-gallery-grid .photo-gallery-item {
    width: 100%;
    margin-bottom: 1rem;
    transform: scale(1);
    transition: transform 200ms ease;
    animation: rise 400ms ease-out backwards;
    animation-play-state: paused;
    cursor: cell;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(10%);
    }
}

.photo-gallery-grid .photo-gallery-item:hover {
    transform: scale(1.04);
}

.photo-gallery-grid .photo-gallery-item:active {
    pointer-events: auto;
}

/*** See images full size ***/

#lightbox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(15px);
    z-index: 1000;
}


.lightbox img, .lightbox video {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid aliceblue;
    border-radius: 10px;
}

.lightbox .close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2rem;
    color: aliceblue;
    cursor: pointer;
}

.lightbox .close:hover {
    color: var(--yellow-color);
}

.lightbox img, .lightbox video {
    transition: transform 0.3s ease-in-out;
}

.lightbox .prev,
.lightbox .next {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    width: 2.5rem;
    top: 50%;
    font-size: 1.5rem;
    color: aliceblue;
    cursor: pointer;
    transform: translateY(-50%);
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox .prev {
    left: 1rem;
}

.lightbox .next {
    right: 1rem;
}

.lightbox .prev:hover,
.lightbox .next:hover {
    background: var(--yellow-color);
    color: black;
}

::view-transition-group(root) {
    animation-duration: 200ms;
    mix-blend-mode: normal;
    transition: all 200ms ease;
}

/*** Mobile css ***/
@media screen and (max-width: 992px) {
    .photo-gallery-grid {
        columns: 300px;
    }

    .video {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .video {
        width: 95%;
    }

    .photo-gallery-grid {
        columns: 400px;
    }

    .photo-gallery-grid .photo-gallery-item {
        width: 95%;
        cursor: auto;
    }

    .photo-gallery-grid .photo-gallery-item:hover {
        transform: scale(1);
    }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    .photo-gallery-grid {
        columns: 300px;
    }
}