/*====================================================*
HOME IMAGE SHOWCASE
*====================================================*/

.home-showcase {

    width: 100%;

    background: #dfe9dd;

    padding: 20px 0;

    box-sizing: border-box;

}


/*====================================================*
CONTAINER
====================================================*/

.home-showcase-container {

    width: 90%;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(400px, 1fr) minmax(500px, 1.25fr);

    gap: 60px;

    align-items: stretch;

}


/*====================================================*
LARGE IMAGE
====================================================*/

.showcase-large-image {

    width: 100%;

    height: 750px;

    overflow: hidden;

    border-radius: 32px;

    background: #d4ddd2;

}


.showcase-large-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 1;

    transition:
        opacity 0.35s ease,
        transform 0.5s ease;

}


/*====================================================*
RIGHT CONTENT
====================================================*/

.showcase-content {

    position: relative;

    min-width: 0;

    min-height: 750px;

    padding-top: 0;

    display: flex;

    flex-direction: column;

}


/*====================================================*
HEADING
====================================================*/

.showcase-content h2 {

    margin: 0;

    color: #080808;

    font-family: "Poppins", sans-serif;

    font-size: clamp(42px,
            4.2vw,
            76px);

    font-weight: 600;

    line-height: 1.12;

    letter-spacing: -2px;

}


/*====================================================*
DESCRIPTION
====================================================*/

.showcase-content p {

    max-width: 720px;

    margin: 25px 0 18px;

    color: #747878;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.9;

}


/*====================================================*
KNOW MORE BUTTON
====================================================*/

.showcase-button {

    width: 195px;

    height: 68px;

    padding: 0 25px;

    box-sizing: border-box;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-radius: 40px;

    background: #080808;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 500;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;

}


.showcase-button:hover {

    background: #182b34;

    transform: translateY(-3px);

}


.showcase-button-arrow {

    font-size: 26px;

    font-weight: 300;

    line-height: 1;

    transition:
        transform 0.3s ease;

}


.showcase-button:hover .showcase-button-arrow {

    transform: translateX(5px);

}


/*====================================================*
ROTATING LOGO
====================================================*/

.showcase-logo {

    position: absolute;

    top: 170px;

    right: 15px;

    width: 230px;

    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 5;

    pointer-events: none;

}


/*====================================================*
ROTATING OUTER TEXT
====================================================*/

.showcase-logo-text {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: visible;

    animation:
        showcaseLogoTextRotate 18s linear infinite;

}


/*====================================================*
SVG TEXT
====================================================*/

.showcase-logo-text text {

    fill: #292929;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 400;

    letter-spacing: 3px;

}


/*====================================================*
CENTER LOGO
====================================================*/

.showcase-logo-center {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 105px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%, -50%);

    z-index: 2;

}


/*====================================================*
CENTER LOGO IMAGE
====================================================*/

.showcase-logo-center img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

    animation: none;

    transform: none;

}


/*====================================================*
OUTER TEXT ROTATION
====================================================*/

@keyframes showcaseLogoTextRotate {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/*====================================================*
BOTTOM IMAGE AREA
====================================================*/

.showcase-bottom {

    width: 100%;

    margin-top: auto;

    padding-top: 40px;

    display: flex;

    align-items: center;

    gap: 20px;

}


/*====================================================*
THUMBNAIL CONTAINER
====================================================*/

.showcase-thumbnails {

    min-width: 0;

    flex: 1;

    display: flex;

    align-items: stretch;

    gap: 25px;

    overflow: hidden;

    transform: translateY(-90px);

}


/*====================================================*
THUMBNAIL
====================================================*/

.showcase-thumbnail {

    position: relative;

    flex: 0 0 calc((100% - 50px) / 3);

    width:
        calc((100% - 50px) / 3);

    height: 205px;

    padding: 0;

    border: 0;

    border-radius: 24px;

    overflow: hidden;

    background: #cccccc;

    cursor: pointer;

}


/*====================================================*
THUMBNAIL IMAGE
====================================================*/

.showcase-thumbnail img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;

}


/*====================================================*
THUMBNAIL HOVER
====================================================*/

.showcase-thumbnail:hover img {

    transform: scale(1.06);

}


/*====================================================*
ACTIVE THUMBNAIL
====================================================*/

.showcase-thumbnail.active img {

    filter: brightness(0.72);

}


/*====================================================*
THUMBNAIL NUMBER
====================================================*/

.showcase-thumbnail span {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 32px;

    font-weight: 400;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.4);

    pointer-events: none;

}


/*====================================================*
ARROWS
====================================================*/

.showcase-arrow {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #182b34;

    font-family: Arial, sans-serif;

    font-size: 25px;

    font-weight: 300;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

    transform: translateY(-90px);

}


.showcase-arrow:hover {

    background: #182b34;

    color: #ffffff;

    transform: scale(1.08);
    transform: translateY(-90px);

}


/*====================================================*
TABLET
====================================================*/

@media (max-width: 1200px) {

    .home-showcase-container {

        width: 92%;

        grid-template-columns:
            minmax(340px, 0.9fr) minmax(430px, 1.1fr);

        gap: 40px;

    }


    .showcase-large-image {

        height: 650px;

    }


    .showcase-content {

        min-height: 650px;

    }


    .showcase-content h2 {

        font-size: clamp(38px,
                4.5vw,
                60px);

    }


    .showcase-content p {

        font-size: 15px;

    }


    /*----------------------------------------------
    LOGO
    ----------------------------------------------*/

    .showcase-logo {

        width: 190px;

        height: 190px;

        top: 175px;

        right: 5px;

    }


    .showcase-logo-text text {

        font-size: 14px;

        letter-spacing: 2.5px;

    }


    .showcase-logo-center {

        width: 85px;

        height: 85px;

    }


    /*----------------------------------------------
    THUMBNAILS
    ----------------------------------------------*/

    .showcase-thumbnail {

        height: 175px;

    }


    .showcase-bottom {

        padding-top: 50px;

    }

}


/*====================================================*
TABLET / SMALL DESKTOP
====================================================*/

@media (max-width: 992px) {

    .home-showcase {

        padding: 40px 0;

    }


    .home-showcase-container {

        width: 90%;

        display: flex;

        flex-direction: column;

        gap: 35px;

    }


    /*----------------------------------------------
    LARGE IMAGE
    ----------------------------------------------*/

    .showcase-large-image {

        width: 100%;

        height: 600px;

        border-radius: 28px;

    }


    /*----------------------------------------------
    CONTENT
    ----------------------------------------------*/

    .showcase-content {

        width: 100%;

        min-height: auto;

    }


    .showcase-content h2 {

        font-size: 48px;

        letter-spacing: -1.5px;

    }


    /*----------------------------------------------
    LOGO
    ----------------------------------------------*/

    .showcase-logo {

        top: 100px;

        right: 20px;

        width: 170px;

        height: 170px;

    }


    .showcase-logo-text text {

        font-size: 13px;

        letter-spacing: 2px;

    }


    .showcase-logo-center {

        width: 78px;

        height: 78px;

    }


    /*----------------------------------------------
    BOTTOM
    ----------------------------------------------*/

    .showcase-bottom {

        margin-top: 40px;

        padding-top: 0;

    }

}


/*====================================================*
MOBILE
====================================================*/

@media (max-width: 768px) {

    .home-showcase {

        padding: 18px 0 0;

    }


    .home-showcase-container {

        width: 100%;

        display: block;

    }


    /*----------------------------------------------
    LARGE IMAGE
    ----------------------------------------------*/

    .showcase-large-image {

        width:
            calc(100% - 30px);

        height: 430px;

        margin: 0 auto;

        border-radius: 22px;

    }


    /*----------------------------------------------
    CONTENT
    ----------------------------------------------*/

    .showcase-content {

        width:
            calc(100% - 40px);

        margin: 30px auto 0;

        min-height: auto;

        text-align: left;

    }


    .showcase-content h2 {

        font-size: 34px;

        line-height: 1.2;

        letter-spacing: -0.8px;

    }


    .showcase-content p {

        margin-top: 16px;

        font-size: 13px;

        line-height: 1.8;

    }


    /*----------------------------------------------
    BUTTON
    ----------------------------------------------*/

    .showcase-button {

        width: 145px;

        height: 52px;

        font-size: 12px;

        gap: 8px;

    }


    .showcase-button-arrow {

        font-size: 20px;

    }


    /*----------------------------------------------
    LOGO
    ----------------------------------------------*/

    .showcase-logo {

        position: relative;

        top: auto;

        right: auto;

        width: 145px;

        height: 145px;

        margin:
            30px auto 0;

    }


    .showcase-logo-text text {

        font-size: 11px;

        letter-spacing: 1.8px;

    }


    .showcase-logo-center {

        width: 70px;

        height: 70px;

    }


    /*----------------------------------------------
    HIDE DESKTOP CONTROLS
    ----------------------------------------------*/

    .showcase-bottom {

        display: none;

    }


    /*----------------------------------------------
    MAIN IMAGE
    ----------------------------------------------*/

    .showcase-large-image img {

        transition:
            opacity 0.35s ease;

    }

}


/*====================================================*
SMALL MOBILE
====================================================*/

@media (max-width: 480px) {

    .showcase-large-image {

        width:
            calc(100% - 30px);

        height: 330px;

        border-radius: 20px;

    }


    .showcase-content {

        width:
            calc(100% - 34px);

        margin-top: 25px;

    }


    .showcase-content h2 {

        font-size: 29px;

        line-height: 1.2;

    }


    .showcase-content p {

        font-size: 12px;

        line-height: 1.75;

    }


    .showcase-button {

        width: 140px;

        height: 50px;

        font-size: 12px;

    }


    /*----------------------------------------------
    LOGO
    ----------------------------------------------*/

    .showcase-logo {

        width: 125px;

        height: 125px;

        margin-top: 25px;

    }


    .showcase-logo-text text {

        font-size: 10px;

        letter-spacing: 1.5px;

    }


    .showcase-logo-center {

        width: 62px;

        height: 62px;

    }

}


/*====================================================*
VERY SMALL MOBILE
====================================================*/

@media (max-width: 360px) {

    .showcase-large-image {

        height: 300px;

    }


    .showcase-content h2 {

        font-size: 26px;

    }


    .showcase-content p {

        font-size: 11.5px;

    }


    /*----------------------------------------------
    LOGO
    ----------------------------------------------*/

    .showcase-logo {

        width: 115px;

        height: 115px;

    }


    .showcase-logo-text text {

        font-size: 9px;

        letter-spacing: 1.3px;

    }


    .showcase-logo-center {

        width: 57px;

        height: 57px;

    }

}