@import url(https://fonts.googleapis.com/css?family=Varela+Round);

.page-content {
    width: 80vw;
    margin: 0 auto;
}

.gallery-container {
    margin: 20px auto;
    max-width: 800px;
    position: relative;
}

.carousel {
    /* width: 60vw; */
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.carousel-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-nav {
    display: flex;
    justify-content: left;
    position: relative;
    height: 80px;
    overflow: hidden;
}

.carousel-thumbnails {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    left: 0;
    transform: none;
    padding: 0;
}


.carousel-thumbnail {
    width: 100px;
    height: 80px;
    margin: 0 5px;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.carousel-thumbnail.active {
    opacity: 1;
}

.carousel-btn {
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.24);
    color: white;
    border: none;
    border-radius: 2px;
    margin-top: -10px;
    cursor: pointer;
}

.carousel-btn span{
    text-align: center;
    font-size: 3.6rem;
    line-height: 1.8rem;
    font-family: "Varela Round", sans-serif;
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* .carousel-btn-next::before {
    content: '→';
} */


.carousel-fullscreen-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.24);
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    z-index: 10;
}

.carousel-fullscreen-btn span{
    text-align: center;
    font-size: 1.6rem;
    line-height: 2.7rem;
    font-family: "Varela Round", sans-serif;
    text-shadow: 0px 0px 15px rgb(119, 119, 119);
}

.carousel-fullscreen-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.fullscreen-image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}