@font-face {
    font-family: 'Orator Std Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Orator Std Medium'), url('../fonts/OratorStd.woff') format('woff');
}


html {
    --primary-color: #241E20;
    --secondary-color: #ffffff;
}

html.ch {
    --primary-color: #ffffff;
    --secondary-color: #241E20;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Orator Std Medium';
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
   /* cursor: none !important;*/
}

body {
    background-color: var(--primary-color);
    overflow: hidden;
}


.music-desc > p {
    font-size: 15px;
    opacity: 0.3;
}

.img-responsive {
    max-width: 100%;
    width: 100%;
}

.color-secondary {
    color: var(--secondary-color);
}

.border-secondary {
    border: 1px solid var(--secondary-color);
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-5p {
    margin-top: 5px;
}

.mt-10p {
    margin-top: 10px;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%,-50%);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 1666;
    transition: height .2s ease, width .2s ease;
}

a:hover ~ .cursor,
div[class^="menu-item"] ~ .cursor {
    transform: scale(6);
}

.page-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.logo-container {
    animation-name: logo-in;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: auto;
    max-width: 500px;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

.logo-img {
    position: relative;
    z-index: 5;
}

.logo-img-bg {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

@keyframes logo-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

html {
    cursor: url('./images/cursor-dot.svg');
}

.tilt-left {
    transform: rotate(-60deg) transform(0, 100%);
    animation-name: left-menu;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.tilt-right {
    transform: rotate(60deg) transform(0, 100%);
    animation-name: right-menu;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

div[class^="menu-item"] {
    color: var(--secondary-color);
    font-size: 50px;
    position: absolute;
    cursor: pointer;
}

.menu-item-1 {
    left: -60px;
    top: 255px;
    animation-delay: 1s;
}

.menu-item-2 {
    left: 60px;
    top: 70px;
    animation-delay: 1.1s;
}

.menu-item-3 {
    right: 55px;
    top: 75px;
    animation-delay: 1.2s;
}

.menu-item-4 {
    right: -45px;
    top: 255px;
    animation-delay: 1.3s;
}

@keyframes left-menu {
    from {
        opacity: 0;
        transform: rotate(-60deg) translate(0, 100%);
    }
    to {
        opacity: 1;
        transform: rotate(-60deg) translate(0, 0);
        z-index: 6;
        padding-bottom: 20px;
    }
}

@keyframes right-menu {
    from {
        opacity: 0;
        transform: rotate(60deg) translate(0, 100%);
    }
    to {
        opacity: 1;
        transform: rotate(60deg) translate(0, 0);
        z-index: 6;
    }
}

.triangle-clip-path {
    position: absolute;
    top: 5px;
    width: calc(100% - 10px);
    z-index: 3;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    overflow: hidden;
    height: 425px;
    left: 5px;
}

.triangle-clip-path img {
    opacity: 0;
    height: 440px;
    position: absolute;
    transition: opacity 1s ease, transform 4s linear;
}

[class^="hover-"].active {
    opacity: 1;
    transform: translateX(-48px);
}

.hover-3 {
    transform: rotate(20deg) translate(60px, -50px);
    right: 0;
}

img.hover-3 {
    height: 500px;
}

.hover-3.active {
    transform: rotate(20deg) translate(60px, -75px);
}

.underline {
    text-decoration: underline;
}

a {
    color: var(--secondary-color) !important;
    text-decoration: none;
}


/*
.hover-1 {
    left: 0;
    transition: opacity 1s ease, transform 0.9s ease !important;
    transform: translateX(-100px) scale(1.4);
}

.hover-1.active {
    transform: translateX(-100px) scale(1.0);
}
*/

.hover-4 {
    width: 100%;
    height: auto !important;
    left: 50%;
    transform: translate(-50%, 350px);
    transition: opacity 1s ease, transform 1.4s ease !important;
    bottom: 0;
}

.hover-4.active {
    left: 50%;
    transform: translate(-50%, 0);
}

[class^="social-icon"] {
    transition: opacity .3s ease, transform .4s ease;
    opacity: 0;
    width: 50px;
    height: auto;
    fill: var(--secondary-color);
    cursor: pointer;
}


[class^="social-icon"] svg {
    fill: var(--secondary-color);
}

html.ch [class^="social-icon"] svg,
html.ch [class^="social-icon"] {
    fill: var(--secondary-color);
}



.hover-1 {
    z-index: 5;
}

.hover-1.active [class^="social-icon"],
.hover-1:hover [class^="social-icon"] {
    opacity: 1;
    transform: translate(-50%);
}

.social-icon-1 {
    position: absolute;
    left: 50%;
    top: 90px;
    z-index: 555;
    transform: translate(-50%, -50%);
}

.hover-1.active .social-icon-1 {
    transform: translate(-50%);
}

.social-icon-2 {
    position: absolute;
    left: 25%;
    top: 333px;
    z-index: 555;
    transform: translate(-150%, 50%);
}

.hover-1.active .social-icon-2 {
    transform: translate(-50%);
}

.social-icon-3 {
    position: absolute;
    left: 75%;
    top: 333px;
    z-index: 555;
    transform: translate(50%, 50%);
}

.hover-1.active .social-icon-3 {
    transform: translate(-50%);
}

.social-icon-4 {
    position: absolute;
    left: 50%;
    top: calc(50% - 5px);
    z-index: 555;
    transform: translate(-50%, 50%) !important;
}

#contact-form-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 500px;
    background: var(--secondary-color);
    padding: 25px 30px;
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity .3s ease;
    height: max-content;
}

.form-title {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 0 5px;
    border: 1px solid var(--primary-color);
    resize: none;
}

.btn {
    color: var(--primary-color);
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.btn:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
}

.form-content {
    position: relative;
}

.close-modal {
    position: absolute;
    top: 5px;
    right: 0px;
    cursor: pointer;
}

.modal-fade {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 0;
    z-index: 1000;
    display: none;
    transition: opacity .3s ease;
}

.modal-fade.show {
    opacity: 0.6;
}

#contact-form-modal.show {
    opacity: 1;
}

.sub-page {
    display: none;
    position: relative;
    top: 110px;
    height: calc(100vh - 220px);
    opacity: 0;
    transition: opacity .2s ease;
}

.menu-item-1 {
    cursor: default !important;
}

p {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.sub-page .container {
    padding: 40px 0;
    max-width: 1185px;
    margin: 0 auto;
    text-align: justify;
    overflow: hidden;
    height: calc(100vh - 220px);
}
.sub-page .container .content {
    overflow: auto;
    height: 100%;
    padding: 50px 30px 50px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%);
    mask-image: llinear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%);
    
}

.mini-logo-img {
    height: 70px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.sub-menu-top-container {
    display: none;
    position: absolute;
    width: 100%;
    height: 110px;
    top: 0;
    left: 0;
    transition: opacity .3s ease;
    opacity: 0;
}


.back-button-container {
    color: var(--secondary-color);
    max-width: 1185px;
    margin: 0 auto;
    top: 58px;
    position: relative;
    transform: translateY(-50%);
}   

.back-button {
    width: max-content;
    cursor: pointer;
    padding-left: 30px;
}

.back-i {
    font-size: 12px;
}

.sub-page-open .sub-menu-top-container {
    opacity: 1;
    z-index: 5;
}

.top-line,
.bottom-line {
    border-bottom: 1px solid var(--secondary-color);
    width: 0;
    transition: width .3s ease;
}

.top-line {
    position: absolute;
    top: 110px;
}

.bottom-line {
    position: absolute;
    bottom: 110px;
    right: 0;
}

.top-line.show,
.bottom-line.show {
    width: 100%;
}

.menu-container {
    opacity: 1;
    transition: opacity .3s ease;
}

.menu-container.fade-out,
.mobile-menu-container.fade-out {
    opacity: 0;
}

.active-page {
    opacity: 1;
}

.cursor.exp {
    height: 70px;
    width: 70px;
}

.theme-changer {
    position: fixed;
    right: 50px;
    top: 48px;
    z-index: 1002;
    cursor: pointer;
}

.theme-changer-border {
    border: 3px solid var(--secondary-color);
    border-radius: 50px;
    width: 45px;
    height: 20px;
    display: flex;
    align-items: center;
}

.theme-changer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: relative;
    left: 3px;
    transition: left .3s ease;
}

.theme-changer.ch .theme-changer-dot {
    left: 26px;
}

html.ch .bottom-line,
html.ch .top-line {
    border-color: var(--secondary-color);
}

html.ch #contact-form-modal .form-input {
    background: var(--secondary-color);
    color: var(--primary-color);
}

html.ch .form-title,
html.ch .close-modal {
    color: var(--primary-color);
}

.coming-soon {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 50px;
}



div[class^="mobile-menu-item"] {
    color: var(--secondary-color);
    font-size: 40px;    
    cursor: pointer;
}

.mobile-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: absolute;
    width: 100vw;
    padding-left: 50px;
    padding-right: 50px;
}

.mobile-logo-img {
    max-width: 300px;
    margin-top: -30px;
    margin-bottom: 0px;
}

.mobile-menu-social {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 15px;
    cursor: pointer;
/*    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);*/
}


[class^="mobile-social-icon"] {
    width: 30px;
    height: auto;
    fill: var(--secondary-color) !important;
}


.menu-email {
   position: absolute; 
   bottom: -70px; 
   left: 50%; 
   transform: translateX(-50%); 
   font-size: 24px; color: var(--secondary-color);
}

.mobile-menu-email {
    margin-top: 15px;
    /* position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%); */
}


@media screen and (min-width: 768px) {
    .mobile-menu-container {
        display: none;
    }
}


@media screen and (max-width: 767px) {
    .menu-container {
        display: none;
    }
    .coming-soon {
        font-size: 20px;
    }

    #music .row > div {
        margin-bottom: 40px;
    }

    .mobile-logo-img {
        max-width: 220px;
    }




    
}


@media screen and (max-width: 580px) {
    .mobile-logo-img {
        max-width: 220px;
    }

    div[class^="mobile-menu-item"] {
        color: var(--secondary-color);
        font-size: 35px;    
    }
}