

@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100vw;
    height: 100vh;
    font-family: "Neue Montreal";
    overflow: hidden;
}

::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #ffecec;
    background-image: radial-gradient(rgb(190, 190, 190) 1px, transparent 0);
    background-size: 40px 40px;
}

.pre-loader{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.loader {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.loader-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: 400px;
    z-index: 10;
    color: #fff;
}


.copy {
    flex: 6;
    font-family: "PP Editorial Old";
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    overflow: hidden;
    transform: translate(-25%, -50%);
    transition: right 0.5s ease;
    z-index: 2; 
    font-family: 'Courier New', monospace; 
}


@media only screen and (max-width: 600px) {
    .text {
      display: none;
    }
    .container .load {
        display: block;
        margin: 0 auto;
        width: 205px;
        height: auto;
        position: absolute;
        top: -60px;
        left: 0%; 
        transform: translate(-50%, -50%);
        animation: rotateImage 6s linear infinite;
        z-index: 2;
        filter: drop-shadow(0 0 20px rgba(255, 192, 203, 0.8));
    }
    
    .container .count {
        position: absolute;
        left: 50%; 
        transform: translate(-50%, -65%);
        z-index: 3;
        color: rgb(0, 0, 0);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        font-family: 'Courier New', monospace;
        font-weight: bold;
        font-size: 14px;
    }
}

.text .letter {
    display: inline-block;
    line-height: 1em;
}

.text .letter:nth-last-child(1) {
    animation: waveFloat 2s ease-in-out 0.6s;
  }
  
  .text .letter:nth-last-child(2) {
    animation: waveFloat 2s ease-in-out 0.3s;
  }
  
  .text .letter:nth-last-child(3) {
    animation: waveFloat 2s ease-in-out;
  }
  
  @keyframes waveFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }  


  
.load {
    display: block;
    margin: 0 auto;
    width: 205px;
    height: auto;
    position: absolute;
    top: -190%;
    right: 0%;
    transform: translate(50%, -50%);
    animation: rotateImage 6s linear infinite;
    z-index: 2; 
    filter: drop-shadow(0 0 20px rgba(255, 192, 203, 0.8)); 
}

.count {
    position: absolute;
    top: 5%;
    left: 74.5%;
    transform: translate(-50%, -50%);
    z-index: 3; 
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace; 
    font-weight: bold; 
    font-size: 14px;
}


@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader-bg{
    position: absolute;
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(248, 200, 220);
    z-index: -1;
}

.loader-2{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(./images/cher.jpg) no-repeat 50% 50%;
    background-size: cover;
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}






.site-content .navbar{
    z-index: -2; 
    background-color: rgba(227, 227, 227, 0.355);
    top: 0;
    left: 0;
    right: 0;
}

.site-content nav .logo {
    margin-left: 30px; /* Adjust the margin to move the logo more to the right */
    margin-top: -6px;
    margin-bottom: -6px;
}

.site-content nav .logo img {
    width: 50px;
    height: auto;
    transform: translate(0%, 0%); 
    filter: drop-shadow(0 0 15px rgba(255, 71, 101, 0.8));
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.068, -0.055, 0.027, .155),
                filter 0.5s cubic-bezier(0.00068, -0.00055, 0.00027, .00155);            
    animation: fadeInLogo 1s ease-in-out 4s forwards; 
}

@keyframes fadeInLogo {
    to {
        opacity: 1;
    }
}

.site-content nav .logo img:hover {
    transform: scale(1) translateX(1px) rotate(-10deg); 
    filter: drop-shadow(0 0 80px rgba(241, 60, 90, 0.8));
}

nav{
    width: 100%;
    padding: 1em;
    display: flex;
    text-transform: uppercase;
    z-index: -2;
}

a{
    text-decoration: none;
    color: #000;
}

nav > div {
    flex: 1;
}


.site-content nav .links {
    margin-top: 13px;
    margin-right: 50px;
}

.links{
    display: flex;
    justify-content: flex-end;
    gap: 4em;
} 

.navbar .links a {
    /* position: relative; */
    overflow: hidden; /* Hide overflow for the pop-up effect */
    color: #000;
    transition: transform 0.3s ease; /* Add transition to the default state */
    font-size: 15px; /* Set the default font size */
}

/* .navbar .links a::before {
    content: '';
    width: 100%;
    height: 0;
    font-size: 15px;
    transition: height 0.3s ease, opacity 0.3s ease;
    bottom: 0;
} */

.navbar .links a:hover, .navbar .links a:active {
    color: #efa0ad; /* Light pink color */
    filter: drop-shadow(0 0 80px rgba(255, 192, 203, 0.8));
    transform: translateY(-3px); /* Adjust the value to control the vertical lift */
    transition: transform 0.3s ease; /* Add a smooth transition effect */
}


/* navbar mobile stuff */

#hamburger-icon{
    margin: 18px;
    display: none;
    cursor: pointer;
}


#hamburger-icon div{
    width: 35px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 5px;
}

ul {
    list-style: none;
    height: 100%;
    /* display: flex; */
    /* align-items: center;
    justify-content: space-around; */
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}

  ul a {
    color: rgb(0, 0, 0);
  }
  
  ul li {
    padding: 10px;
    /* margin-right: 80px; */
    content: '';
    position: relative;
    width: 100%;
    height: 0;
    font-size: 15px;
    /* transition: height 0.3s ease, opacity 0.3s ease; */
    transition: transform 0.3s ease; /* Add transition to the default state */
    bottom: 0;
    color: rgb(0, 0, 0);
  }

  /* ul a::before {
    transition: height 0.3s ease, opacity 0.3s ease;
} */
  
ul a:hover {
    color: #efa0ad; 
    filter: drop-shadow(0 0 80px rgba(50, 40, 42, 0.8));
    /* transform: translateY(-3px); 
    transition: transform 0.3s ease; */
    transform: scale(1.1);
    transition: 0.3s;
}

.open .bar1{
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2{
    opacity: 0;
}

.open .bar3{
    -webkit-transform: rotate(45deg) translate(-6px, -7px);
    transform: rotate(45deg) translate(-6px, -7px);
}



.open .mobile-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 18vh; 
    animation: fadeInMenu 0.5s ease; 
    /* height: 550px; */
}

.mobile-menu{
    /* display: none;
    position: absolute;
    top: 50px;
    left: 0px;
    width: 100%; */
    z-index: 1;
    display: none;
    position: fixed;
    top: 20vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; 
    backdrop-filter: blur(10px); /* Apply the background blur effect */
    /* flex-direction: column; */
    min-height: 150px;

    /* background-position: -1px -1px; */
    border-radius: 10px; /* Add border-radius for rounded corners */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow for depth */
    /* animation: slideDownMenu 0.5s ease;  */

}

@keyframes slideDownMenu {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.mobile-menu li{
    margin-bottom: 10px;
    text-align: center; /* Center the text within each list item */
    transition: color 0.3s ease; /* Add transition effect for color change */
}

.mobile-menu a {
    color: #000;
    text-decoration: none;
    font-size: 18px; /* Adjust the font size as needed */
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: color 0.3s ease, transform 0.3s ease; 
    animation: slideDownMenu 0.8s ease; 

}

.mobile-menu a:hover {
    color: #efa0ad; /* Light pink color on hover */
    filter: drop-shadow(0 0 80px rgba(255, 192, 203, 0.8));
    transform: translateY(-3px); /* Adjust the value to control the vertical lift */
    transition: transform 0.3s ease; /* Add a smooth transition effect */
}


@keyframes fadeInMenu {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 600px){
    .navbar .links {
        display: none;
    }
    #hamburger-icon{
        display: block;
        position: fixed;
        right: 5px; 
        top: 2.5px; 
        z-index: 10;
    }

}



.header {
    display: flex;
    padding: 17em;
    position: relative; /* Add relative positioning to create a stacking context */
    align-items: center;
    justify-content: center;
    z-index: -4;
    border-radius: 10px; 
    margin: 2em;
    background-color: #fff;
    box-shadow: 14px 14px 18px rgba(0, 0, 0, 0.1); /* Add box-shadow for the shadow effect, only on bottom and right sides */
    padding-bottom: 18%;


    &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 85%;
        transform: translate(100%, -50%) rotate(90deg);
        width: 8vw; 
        height: 2vw; 
        margin-right: 4vw;
        background: url('images/ctLight.png') center/cover;
        z-index: -3; 
    }

    &::after {
        content: '';
        position: absolute;
        top: 42.5%;
        left: 50%;
        transform: translate(95%, -50%);
        width: 15%; 
        height: 85%; 
        background: url('images/shop.jpg') center/cover; 
        z-index: -3; 
        filter: brightness(1.2) saturate(70%);
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); 
        animation: bannerOpen 5s ease-in-out forwards;
    }
}


@keyframes bannerOpen {
    0% {
        transform: translate(95%, -50%) scaleY(0);
        opacity: 0;
    }
    100% {
        transform: translate(95%, -50%) scaleY(1);
        opacity: 1;
    }
}


.header .shop{
    content: '';
    position: absolute;
    top: 42.5%;
    left: 50%;
    transform: translate(95%, -50%);
    width: 15%; /* Adjust the width of the rectangle */
    height: 85%; /* Adjust the height of the rectangle */
    background: url('images/shop.jpg') center/cover; /* Use the image as the background */
    z-index: -3; /* Ensure it's behind the header content */
    filter: brightness(1.2) saturate(70%);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* Add shadow effect */
    animation: bannerOpen 5s ease-in-out forwards;

}


/* @keyframes sunGlow {
    0%, 100% {
        box-shadow: 0 0 20px 10px #ff7d7d;
    }
    50% {
        box-shadow: 0 0 40px 20px rgb(255, 102, 130);
    }
} */

.header h1 {
    flex: 1;
    position: absolute;
    font-size: 3vw;
    color: #99243f; 
    left: 90px;
    font-family: 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 30px; 
    margin-right: 200px;
    padding-bottom: 15px;
    top: 80px;
    border-bottom: 3px solid #99243f; /* Red line under the h1 */
    width: 7%; /* Adjust the width to make the border shorter */

    &::after {
        content: ''; /* Add content to the pseudo-element */
        position: absolute;
        bottom: 6px;
        left: 0;
        width: 50%; /* Adjust the width of the second line */
        height: 3px; /* Set the height of the second line */
        background-color: #99243f; /* Set the color of the second line */
        width: 150%;
    }

}


.header a {
    flex: 1;
    position: absolute;
    font-size: 1.3vw;
    color: #99243fb9; 
    left: 0px;
    font-family: 'Noto Sans JP', sans-serif;
    text-transform: uppercase;
    line-height: 1.5;
    letter-spacing: 20px; 
    margin-left: 90px;
    margin-right: 500px;
    padding-bottom: 10px;
    top: 280px;
    z-index: -3;
}


.custom-typing .wrap {
    border-right: .05em solid;
    animation: caret 1s steps(1) infinite;
  }
  
  @keyframes caret {
    50% {
      border-color: transparent;
    }
  }


/* Media query for smaller screens */
@media (max-width: 600px) {
    .header {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding-bottom: 100%;
    }

    .header a{
        font-size: 15px; /* make text smaller */
    }
    .header h1 {
        text-orientation: initial;
        white-space: normal;
        padding: 0;
        font-size: 25px; /* make text smaller */
        align-self: flex-start;
    }

    /* Reduce letter-spacing for smaller screens */
    .header h1 {
        letter-spacing: 10px; /* Adjust the spacing between words for h1 */
        left: 30px; /* Move the h1 to the left */
    }

    .header a {
        letter-spacing: 8px; /* Adjust the spacing between words for <a> */
        left: 30px; /* Move the <a> to the left */
        margin-left: 0; /* Reset margin-left to 0 */
    }
    .header h1::after {
        bottom: -10px; /* Move the line lower */
    }

    /* Make the typing effect text wrap sooner*/
    .custom-typing .wrap {
        max-width: 80%;
    }
}
  
.line{
    content: '';
    position: absolute;
    top: 93%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: .2vw; 
    height: 10vw; 
    z-index: -3; 
    background-color: #efa0ad;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3); /* Add shadow effect */
}
