/* #################################################################################*/
/*@SECTION: Hero Section Styles*/
/* #################################################################################*/
.hero-section {
    /* height: calc(100vh - 60px);
    width: 100%; */
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: absolute;
    left: 0px;
    overflow: hidden; */
}

/* #################################################################################*/
/*@SECTION: Hero Content Styles*/
/* #################################################################################*/
.hero-content {
    z-index: 3;
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    animation: fadeUp 1s ease;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper>img {
    max-height: 150px;
    width: auto;
    filter: brightness(1.5);
}

.hero-content h1 {
    font-style: bold;
    font-family: candara;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #8B5E2C;
    text-align: center;
}

.hero-content>p {
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: #555;
    width: auto;
    text-align: center;
    font-family: sans-serif;
}

.hero-space {
    display: none;
    width: 100%;
}

/* #################################################################################*/
/*@SECTION: Hero Section Background Styles*/
/* #################################################################################*/
.hero-section>img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: drop-shadow(2px 4px 10px black);
}

.hero-image-pc {
    display: none;
}

.hero-section .rotating-design {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}

.hero-section .rotating-design .rotating-image {
    position: relative;
    height: 150%;
    width: auto;
    animation: rotate 120s linear infinite;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {
    .hero-image-pc {
        display: none;
    }
}

@media screen and (min-width: 1030px) {

    /* #################################################################################*/
    /*@SECTION: Hero Section Styles*/
    /* #################################################################################*/
    /* .hero-section {
        height: 100vh;
    } */

    .hero-content h1 {
        font-size: 62px;
    }

    .logo-wrapper>img {
        max-height: 200px;
    }

    .hero-space {
        display: block;
    }

    .hero-image-pc {
        display: block;
    }

    .hero-image-mobile {
        display: none;
    }

    .hero-section .rotating-design {
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 1;
        display: flex;
        height: 100%;
        width: 100%;
    }

    .hero-section .rotating-design .rotating-image {
        position: absolute;
        height: 220%;
        right: -60px;
        top: -60%;
        width: auto;
        animation: rotate 120s linear infinite;
    }
}