main {
    height: 200vh;
}

#edition-main {
    height: 300vh;
}

#edition-bg {
    height: 100vh;
    background: -webkit-radial-gradient(circle, #6297a1, #182026);

    position: sticky;
    top: 0;

    z-index: -1;
}

/* SECTION 1 */
#edition-sec1 {
    width: 100%;
    height: 100vh;

    position: absolute;
    top: 0;
}

#sec1-bg {
    width: 100%;
    height: 100vh;

    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

h1 {
    color: white;
    font-family: "Cinzel", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 400;
    font-size: 3rem;
    margin: 30vh 50px 2vh 50px;
    letter-spacing: 0.2rem;
}

#edition-sec1 p, #edition-sec1 #shop-link {
    color: white;
    margin: 1vh 50px;
}

#edition-sec1 #price {
    font-family: "Cinzel", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 2rem;
    margin: 5vh 50px;
}

#edition-sec1 #shop-link {
    border: 1px solid white;
    padding: 10px 175px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

#edition-sec1 #shop-link:hover {
    background-color: white;
    color: #182026;
}

#edition-sec1 #details {
    margin-top: 5vh;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
}

#img1 {
    height: 95vh;

    position: absolute;
    top: 0;
    left: 40vw;

    box-shadow: 20px 20px 20px #182026;
    border-radius: 5px;
}

#img2 {
    position: absolute;
    top: 10vh;
    right: 30px;

    width: 18vw;
}

#img3 {
    position: absolute;
    top: 55vh;
    right: 30px;

    width: 18vw;
}

#action-link {
    position: absolute;
    bottom: 10vh;
    left: 50px;

    display: inline-flex;
    align-items: center;

    letter-spacing: 0.1vw;

    color: white;
}

#action-link a {
    color: white;
}

/* SECTION 2 */
#edition-sec2 {
    width: 100%;
    height: 200vh;

    position: absolute;
    top: 100vh;
}

#edition-sec2 h2 {
    width: 50vw;
    min-width: 300px;
    margin: 5vw auto;
    margin-bottom: 1vw;

    font-family: "Cinzel", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 400;
    color: white;
}

#description {
    width: 50vw;
    min-width: 300px;
    margin: 5vw auto;
    margin-top: 0;

    color: white;

    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.5rem;
}

/* TABLE */
#edition-sec2 table {
  width: 50vw;
  min-width: 300px;
  margin: 5vw auto;
  border-collapse: collapse;
  letter-spacing: 0.1rem;
  color: white;
}

#edition-sec2 th {
  text-align: left;
  font-family: "Cinzel", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 400;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid #dedede;
  color: white;
  font-size: 1.5rem;
}

#edition-sec2 td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #c0c0c0;
}

.horizontal-gallery-book-jacket {
    position: relative;
    height: 100vh;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 10vw;
    box-sizing: border-box;

    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;

    scrollbar-width: none;
}

#book-jacket {
    display: block;

    width: 75vw;
    margin: 20vh auto;
    margin-bottom: 0;
}




/* BEHIND THE SCENES PAGE */
#bs-sec1 {
    width: 100%;
    height: 100vh;

    position: absolute;
    top: 0;
}

#bs-sec1 .breadcrumb {
    color: white;
    margin-left: 50px;
    margin-top: 15vh;
}

#bs-sec1 .breadcrumb a {
    color: white;
    text-decoration: none;

    letter-spacing: 0.1rem;

    transition: all 0.2s ease-in-out;
}

#bs-sec1 .breadcrumb a:hover {
    color: #b8d7dd;
}

/* HORIZONTAL GALLERY */
.horizontal-gallery {
    position: relative;
    height: 80vh;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;

    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;

    scrollbar-width: none;
}

.horizontal-gallery::-webkit-scrollbar {
    display: none;
}

.horizontal-gallery .scrollsection {
    display: flex;
    align-items: center;
    height: 100%;
}

.horizontal-gallery .item {
    position: relative;
    flex: 0 0 auto;
    margin: 0 4vh 0 0;
}

.horizontal-gallery .item.-big {
    height: 62vh;
    width: 48vh;
    z-index: 1;
}

.horizontal-gallery .item.-big.-horizontal {
    height: 50vh;
    width: auto;
}

.horizontal-gallery .item.-normal {
    height: 50vh;
    width: 35vh;
    z-index: 2;
}

.horizontal-gallery .item.-normal.-horizontal {
    height: 40vh;
    width: auto;
}

.horizontal-gallery .item.-small {
    height: 40vh;
    width: 28vh;
    z-index: 3;
}

.horizontal-gallery .item .image {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.5s ease;
}

.horizontal-gallery .item .image:hover {
    transform: scale(1.02);
}








/* FOR SMALLER DESKTOP */
@media (max-width: 1439px) {
    h1 {
        font-size: 2rem;
    }

    #edition-sec1 #shop-link {
        padding: 10px 100px;
    }

    #img1 {
        width: 35vw;
        height: auto;

        top: 10vh;
    }
}



/* FOR TABLET */
@media (max-width: 1024px) {
    
}



/* FOR MOBILE */
@media (max-width: 768px) {
    #edition-main {
        height: 400vh;
    }

    #edition-sec1 {
        height: 200vh;
    }

    #img1 {
        display: block;
        margin: auto;
        width: auto;
        max-width: 100%;
        height: 100vh;
        max-height: calc(100vw * 1.5);
        position: static;
        top: auto;
        left: auto;
    }

    #img2, #img3 {
        display: inline-block;
        
        width: 48vw;
        height: auto;

        margin-top: 3vh;

        position: static;
        top: auto;
        right: auto;
    }

    h1, #edition-sec1 p, 
    #edition-sec1 #shop-link,
    #edition-sec1 #price, 
    #details {
        text-align: center;
        margin: 1vh auto;
    }

    h1 {
        margin-bottom: 5vh;
    }

    #edition-sec1 #price {
        margin: 3vh auto;
    }

    #action-link {
        position: static;
        bottom: auto;
        left: auto;

        display: block;
        width: fit-content;
        margin: 3vh auto;
    }

    #edition-sec2 {
        top: 200vh;
    }

    #book-jacket {
        width: auto;
        height: 90vh;
        margin: 0;
    }

    
}