/* header section */

.header-section {
    background-color: #040404;
    color: #F0F0F0;
}

.header-section h1 {
    font-size: 38px;
    font-weight: 400;
    padding: 0px;
    margin: 0px;
}

.header-section-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
    
.header-section-description p {
    font-size: 14px;
    margin-top: 24px;
    padding: 0px;
}

/* desktop */
@media (min-width: 1060px) {
    .header-section-content-mobile {
        display: none;
    }

    .header-section-content-desktop {
        display: flex;
        flex-direction: row;
    }

    .statue-left {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        min-width: 0;
        display: flex;
    }
    .statue-left img {
        width: 100%;
        flex-grow: 1;
        max-width: 1024px;
        max-height: 1024px;
        margin-top: auto;
    }

    .header-section-description {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        min-width: 0;
    }

    .statue-right {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        min-width: 0;
        display: flex;
    }
    .statue-right img {
        width: 100%;
        flex-grow: 1;
        max-width: 1024px;
        max-height: 1024px;
        margin-top: auto;
        margin-left: auto;
    }
}

/* mobile */
@media (max-width: 1060px) {
    .header-section-content-desktop {
        display: none;
    }

    .header-section-content-mobile {
        display: flex;
        flex-direction: column;
    }

    .header-section-description {
        margin: 24px;
    }

    .statues {
        display: flex;
        flex-direction: row;
    }
    
    .statue-left {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        min-width: 0;
        display: flex;
    }
    .statue-left img {
        width: 100%;
        flex-grow: 1;
        max-width: 1024px;
        max-height: 1024px;
        margin-top: auto;
    }

    .statue-right {
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 0;
        min-width: 0;
        display: flex;
    }
    .statue-right img {
        width: 100%;
        flex-grow: 1;
        max-width: 1024px;
        max-height: 1024px;
        margin-top: auto;
        margin-left: auto;
    }
}

/* showcase section */

.showcase-section {
    background-color: #F0F0F0;
    color: #040404;
}

.showcase-section-content {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
}

.showcase-section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.showcase-section-group {
    display: flex;
}
.showcase-section-group h1 {
    font-size: 32px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.showcase-section-navigation {
    align-self: flex-end;
    display: flex;
    flex-direction: row;
}
.showcase-section-navigation button {
    padding: 0;
    background: none;
    border: none;
}
.showcase-section-navigation button:hover {
    cursor: pointer;
}

#showcase-prev {
    margin-right: 4px;
}

.showcase-section-gallery {
    margin-top: 24px;
    margin-left: -24px;
    margin-right: -24px;
    display: flex;
    overflow-x: auto;
    gap: 24px;

    /* hide scrollbar */
    -ms-overflow-style: none; /* edge */
    scrollbar-width: none; /* firefox  */
}
.showcase-section-gallery::-webkit-scrollbar {
    /* hide scrollbar */
    display: none;
}

#gallery-start {
    padding-left: 24px;
}

#gallery-end {
    padding-right: 24px;
}

.gallery-item {
    width: 540px;
}

.gallery-item-pictures {
    display: flex;
    flex-direction: row;
}
.gallery-item-pictures img {
    width: calc(270px - 12px);
    margin-right: 24px;
}

.gallery-item-description h2 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    padding-top: 24px;
    padding-bottom: 12px;
}
.gallery-item-description p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/* description section */

.description-section {
    background-color: #040404;
    color: #F0F0F0;
}
.description-section h2 {
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 12px;
}
.description-section p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/* desktop */
@media (min-width: 700px) {
    .description-section-content {
        padding: 24px;
        display: flex;
        flex-direction: row;
        gap: 24px;
    }
}

/* mobile */
@media (max-width: 700px) {
    .description-section-content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

.description-section-group1 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: 0;
    background-image: url("/assets/forest-blur.png");
    background-size: cover;
    background-position: bottom;
    border-radius: 16px;
}

.description-section-group2 {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: 0;
    background-image: url("/assets/forest-blur.png");
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.description-section-group-content {
    padding: 24px;
}
