/* BASIC css start */
:root {
    --macaronBaseSize: 128px;
}

.headerWrapper {
    position: fixed !important;
    opacity: 0.01;
}
.headerWrapper:hover {
    transition: 0.2s;
    opacity: 1;
}

.listPageContainer {
    width: 100vw;
    min-width: 1024px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}
.macaronDistrict {
    width: 100%;
}

/* ¸ÇÀ§ ¸¶Ä«·Õ ¸ÞÀÎ */
#macaronMainVisual {
    /* display: none; */
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 110, 188, 1) 100%
    );
}

.macaronMainTop {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.macaronMainTopBg {
    width: 100%;
    height: calc(var(--header-height) + 1.875rem);
    background-color: rgb(255, 97, 165);
}
.macaronTypoSvg {
    position: absolute;
    width: 30rem;
}
.macaronMainCenter {
    width: 100%;
    padding: 5vh 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 15rem);
}
.macaronMainCenter .macaron3d {
    height: 100%;
}
.macaronMainCenter .macaron3d video {
    height: 100%;
    border-radius: 1.5rem;
}
.macaronMainCenter .macaronsFloating {
    position: absolute;
    z-index: 1;
}
.macaronsFloating .floatingMacaron {
    /* width: calc(var(--macaronBaseSize) * 1); */
}
.floatingMacaron:nth-child(1) {
    left: 15rem;
    top: 2rem;
    width: calc(var(--macaronBaseSize) * 1);
    animation: translateY1 1.5s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(2) {
    left: -17rem;
    top: 0rem;
    width: calc(var(--macaronBaseSize) * 1);
    animation: translateY1 1.4s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(3) {
    left: 27rem;
    top: 0rem;
    width: calc(var(--macaronBaseSize) * 1.2);
    animation: translateY1 1.6s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(4) {
    left: -28rem;
    top: 0rem;
    width: calc(var(--macaronBaseSize) * 1);
    animation: translateY2 1.6s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(5) {
    left: 18rem;
    top: 2rem;
    width: calc(var(--macaronBaseSize) * 1.1);
    animation: translateY1 1.5s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(6) {
    left: -20rem;
    top: -4rem;
    width: calc(var(--macaronBaseSize) * 0.7);

    animation: translateY2 1.4s infinite alternate ease-in-out;
}
.floatingMacaron:nth-child(7) {
    left: -12rem;
    top: -1rem;
    width: calc(var(--macaronBaseSize) * 0.9);

    animation: translateY2 1.3s infinite alternate ease-in-out;
}
.macaronMainBottom {
    /* background-color: aliceblue; */
    /* position: absolute; */
    bottom: 0;
}
.macaronMainBottom .sentiTypoSvg {
    height: 7.5rem;
}
.macaronMainBottom .sentiTypoSvg path {
    fill: rgb(255, 97, 165);
}
/* ¸ÇÀ§ ¸¶Ä«·Õ ¸ÞÀÎ */

/* ¸¶Ä«·Õ ½½¶óÀÌ´õ */
#macaronSliderContainer {
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    position: relative;
}
#macaronSlider {
    display: flex;
    flex-flow: row nowrap;
    padding: 5rem 0;
    will-change: transform;
}
.macaronSlide {
    width: 40rem;
    padding: 3rem 5rem;
    border-radius: 1.5rem;
}

.macaronSlideMeta {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    z-index: 2;
    opacity: 0;
}
.macaronSlideMeta * {
    color: rgb(255, 97, 165);
}
.macaronSlideMeta h3 {
    font-weight: 600;
}
.macaronSlideMeta h4 {
    font-size: 1.25rem;
}
.macaronSlideMeta h5 {
    font-size: 1rem;
}
.macaronSlide:hover {
    box-shadow: 0 0 10px rgb(255, 97, 165, 0.4);
    transition: 0.3s;
}
.macaronSlide:hover img {
    scale: 1.2;
    transform: rotateZ(10deg);
    transition: 0.3s;
    z-index: 1;
}
.macaronSlide:hover .macaronSlideMeta {
    opacity: 1;
    transition: 0.3s;
}
.macaronSliderBottom {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}
.macaronSliderBottom h5 {
    color: rgb(255, 97, 165);
    text-align: center;
    font-size: 1.125rem;
}
.macaronShopBtns {
    display: flex;
    gap: 2rem;
}
.macaronShopBtn {
    padding: 1rem;
    width: 17rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    background-color: #fff;
    color: rgb(255, 97, 165);
    border-radius: 5rem;
    box-shadow: 0 0 8px rgb(255, 97, 165);
}

.macaronShopBtn:hover {
    transition: 0.2s;
    color: #fff;
    border-radius: 5rem;
    background-color: rgb(255, 97, 165);
    box-shadow: 0 0 0px rgb(255, 97, 165, 0);
}
/* ¸¶Ä«·Õ ½½¶óÀÌ´õ */

#macaronImagesContainer {
    width: 100%;
    max-width: 1920px;
    padding: 0.75rem;
}
.macaronImageFlex {
    width: 100%;
    aspect-ratio: 12/5;
    display: flex;
}
.mararonImageFlexVideoContainer video {
    padding: 1rem;
}
.macaronImageFlex img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 1rem;
}
.macaronImageFlex .bigSize {
    width: 65%;
}
.macaronImageFlex .smallSize {
    width: 35%;
}

@keyframes translateY1 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(3rem);
    }
}

@keyframes translateY2 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(2rem);
    }
}

/* BASIC css end */

