@import url('https://fonts.cdnfonts.com/css/devil-breeze');
@import url('https://fonts.cdnfonts.com/css/poppins');
@import url('https://fonts.cdnfonts.com/css/bimbo');


body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #1B1B1B;
    color: #f3dfb0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background-image:
    url(img/bg.png),
    repeating-linear-gradient(
        to right, transparent 0 500px, #caa75a33 500px 501px
    );
    background-size: 100%;
    padding-bottom: 56px;
}
*::-webkit-scrollbar {
    width: 0;
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}
.section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-fit {
    width: min(1200px, 90vw);
    margin: auto;
    min-height: 100vh;
    position: relative;
    padding-block: clamp(5rem, 10vh, 10rem);
}
header {
    padding-block: 1em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10px;
    backdrop-filter: blur(20px);
    z-index: 100;
    background-color: #1B1B1B11;
    background-image: repeating-linear-gradient(
        to right, transparent 0 500px, #eee1 500px 501px
    );
}
header .content-fit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: unset!important;
    padding-block: unset!important;
}
header .content-fit nav ul{
    display: flex;
    gap: clamp(0.8rem, 2vw, 2rem);
    flex-wrap: wrap;
    justify-content: flex-end;
}
header .content-fit nav ul li {
    cursor: pointer;
}
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #8f6a2c99;
    border-radius: 8px;
    background: #1b1b1bd9;
    padding: 8px 7px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #e5c27a;
    border-radius: 999px;
    transition: transform 220ms ease, opacity 220ms ease;
}
.menu-toggle span + span {
    margin-top: 6px;
}
header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}
header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#banner .title {
    color: #e5c27a;
    font-size: clamp(3rem, 12vw, 11rem);
    font-family: "devil breeze";
    font-weight: bold;
    position: relative;
    text-align: center;
    line-height: 0.95;
    z-index: 130;
    margin-top: clamp(3.5rem, 10vh, 8rem);
}
#banner .title::before {
    content: attr(data-before);
    position: absolute;
    top: 0.5em;
    inset: 0.66em 0 0 0;
    z-index: -1;
    color: #6f4f1f;
    font-size: 0.88em;
}

.coming-slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 1000;
    background: linear-gradient(to top, #1b1b1be6, #1b1b1bb0);
    border-top: 1px solid #8f6a2c66;
    transform: rotate(-1.8deg);
    transform-origin: left bottom;
    mask-image: linear-gradient(
        to right,
        transparent,
        #000 10% 90%,
        transparent
    );
}

.coming-slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.coming-slider .item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: comingSoonRun 16s linear infinite;
    animation-delay: calc((16s / var(--quantity)) * (var(--position) - 1) - 16s) !important;
}

.coming-slider .item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    letter-spacing: 0.28em;
    font-size: 1em;
    font-weight: 600;
    color: #e5c27a;
}

@keyframes comingSoonRun {
    from {
        left: 100%;
    }
    to {
        left: calc(var(--width) * -1);
    }
}

.section .decorate {
    position: absolute;
}

/* Scroll reveal animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(0.985);
    transition: opacity 850ms ease, transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}
#intro .content-fit {
    display: flex;
    gap: 30%;
    justify-content: space-between;
    align-items: center;
}
.section .number {
    font-family: "devil breeze";
    font-size: clamp(4rem, 15vw, 15rem);
    font-weight: bold;
    line-height: 0.85;
}
.section .content-fit .title {
    font-family: "devil breeze";
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: bold;
    line-height: 1;
}
#description .content-fit {
    padding-right: 30%;
}
#description .number {
    font-size: clamp(2.5rem, 7vw, 5rem);
}
#description .title {
    font-size: clamp(2.2rem, 9vw, 7rem);
    font-weight: 500;
}
#contact .content-fit {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#contact table {
    width: min(800px, 90vw);
    padding-top: 2em;
    font-size: clamp(1rem, 2.6vw, 2rem);
    margin: auto;
}
#contact table td {
    padding-block: 0.5em;
    border-bottom: 1px dashed #8f6a2c;
}
#contact table td:nth-child(1) {
    text-align: left;
    font-weight: 500;
}
#contact table td:nth-child(2) {
    text-align: right;
    font-weight: 200;
}
#contact .sign {
    font-family: 'Bimbo', sans-serif;
    font-size: clamp(3rem, 12vw, 10rem);
}
#container3D {
    position: fixed;
    inset: 0;
    /* background-color: red; */
    z-index: 100;
    pointer-events: none;
}
@media screen and (max-width: 1023px){
    body {
        padding-bottom: 60px;
    }
    .coming-slider {
        --width: 220px !important;
        --height: 50px !important;
    }
    #banner .title {
        font-size: clamp(3rem, 13vw, 5rem);
    }
    #intro .content-fit {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    #description .content-fit {
        padding-right: 0;
    }
}
@media screen and (max-width: 767px){
    body {
        padding-bottom: 54px;
    }
    .coming-slider {
        --width: 170px !important;
        --height: 44px !important;
        transform: rotate(-1.2deg);
    }
    .coming-slider .item span {
        letter-spacing: 0.16em;
        font-size: 0.82em;
    }
    #banner .title {
        font-size: clamp(2.2rem, 13vw, 3rem);
        margin-top: clamp(6rem, 18vh, 9rem);
    }
    .content-fit {
        width: min(1200px, 92vw);
        padding-block: 5.5rem 4.5rem;
    }
    header {
        padding-block: 0.7rem;
    }
    header .content-fit {
        align-items: center;
        gap: 0.6rem;
        flex-direction: row;
        justify-content: space-between;
    }
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    header .content-fit nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 4vw;
        left: 4vw;
        overflow-x: visible;
        background: #131313f2;
        border: 1px solid #8f6a2c66;
        border-radius: 10px;
        padding: 0.7rem 0.8rem;
        backdrop-filter: blur(10px);
        box-shadow: 0 16px 40px #00000052;
        z-index: 200;
    }
    header.is-menu-open .content-fit nav {
        display: block;
    }
    header .content-fit nav ul {
        width: 100%;
        flex-wrap: nowrap;
        gap: 0.2rem;
        padding-bottom: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    header .content-fit nav ul li {
        width: 100%;
        padding: 0.55rem 0.3rem;
        border-bottom: 1px dashed #8f6a2c44;
    }
    header .content-fit nav ul li:last-child {
        border-bottom: 0;
    }
    #banner .content-fit {
        padding-top: 7rem;
    }
    #intro .content-fit {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .section .number {
        font-size: clamp(3.5rem, 18vw, 5rem);
    }
    .section .content-fit .title {
        font-size: clamp(1.8rem, 10vw, 2.2rem);
    }
    #description .content-fit {
        padding-right: 0;
    }
    .section .decorate {
        opacity: 0.9;
        max-width: 75vw;
    }
    #banner .decorate[style*="right: 0"] {
        width: min(62vw, 320px) !important;
    }
    #banner .decorate[style*="left: 0"] {
        width: min(34vw, 190px) !important;
    }
    #description .decorate {
        width: min(62vw, 320px) !important;
    }
    #contact table {
        width: 100%;
        font-size: 1rem;
    }
    #contact table tr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.85rem 0;
        border-bottom: 1px dashed #8f6a2c;
    }
    #contact table td {
        width: 100%;
        border: 0;
        padding: 0;
    }
    #contact table td:nth-child(2) {
        text-align: left;
        font-weight: 300;
    }
    #contact .sign {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }
    #container3D img {
        width: min(48vw, 200px) !important;
        min-width: 110px !important;
    }
    #container3D {
        position: fixed;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}