@import url('https://fonts.googleapis.com/css2?family=Jersey+20&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Syne:wght@400..800&display=swap');

* {
    font-family: "Syne", sans-serif;
}
html {
    margin: 0;
    padding: 0;
  scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background-color: #FEF7E5;
    margin: 0;
    padding: 0;
}

/*home section*/

.home {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
     position: relative;
    width: 100%;
    height: 100%;
}

.home.loaded {
    opacity: 1;
    transform: translateY(0);
}
.title {
    position: relative;
    overflow: hidden;
}

.big-title {
    color: #FEF7E5;
    font-size: 100px;
    padding: 0;
    margin: 0;
}
.small-title {
    color: #FFBD52;
    padding: 0;
    margin: 0;
}
.small-title-2 {
    color: #FEF7E5;
    padding: 0;
    margin: 0;
}
.group-title {
    padding-top: 210px;
}
.title {
    background-color: #D52122;
    position:relative;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    text-align: center;
    align-items: center;
}

.about-list {
    list-style-type: none;
    
}

.button {
  display: inline-flex;              
  justify-content: center;
  align-items: center;

  background-color: #D52122;
  color: #FEF7E5;
  text-decoration: none;           

  width: 280px;
  height: 80px;
  margin: 20px;
  font-size: 20px;

  border-radius: 100px;
  border: 2px solid #FEF7E5;

  transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
    background-color: #FEF7E5;
    color: #D52122;
    
}
.about-list li {
    font-size: 20px;
}
p {
    font-size: 20px;
}
.cup {
    position: absolute;
    right: 0%;
    bottom:45%;
    z-index: 1;
}
.house-roll {
    position: absolute;
    right: 0%;
    top: 69%;
}
.nigiri {
    position: absolute;
    left: 0%;
    top: 43%;
}
.wasabi {
    position: absolute;
    left: 0%;
    top: 8%;
}


/* about section*/

.about-section {
    min-height: 100vh;
    width: 100%;
}

.sticky-section {
    display: flex;
    gap: 60px;
    padding: 10px;
}

.sticky-image {
    position: sticky;
    top: 100px;
    width: 55%;
    padding-left: 80px;
    height: 550px;
}

.sticky-image img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 20px;
    
}

.sticky-text {
    width: 45%;
    color: #D52122;
}

.sticky-text-para {
    min-height: 500px;
    width: 80%;
    font-size: 30px;
    padding-bottom: 50px;
}

.sticky-text-para p {
    font-size: 20px;
}

.sticky-text ul {
    padding: 0;
    margin: 0;
}

.sticky-text ul li {
    padding: 5px 0;
    margin: 0;
}

.sticky-text h3,
.sticky-text ul,
.sticky-text p {
    margin: 0;
    padding: 0;
}

.sticky-text ul {
    list-style-position: inside;
}

.button-2 {
  display: inline-flex;              
  justify-content: center;
  align-items: center;

  background-color: #FEF7E5;
  color: #D52122;
  border: 2px solid #D52122;

  width: 280px;
  height: 80px;
  font-size: 20px;
  border-radius: 100px;

  margin: 50px;

  position: absolute;
  right: 17.0%;

  text-decoration: none;          

  transition: background-color 0.3s ease, color 0.3s ease;
}
.button-2:hover {
    background-color: #D52122;
    color: #FEF7E5;

}
/*reasons section*/

.reasons-section {
    width: 100%;
    height: 100vh;
}
.reasons-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    
}

.reasons-list li {
    background-color: #D52122;
    color: #FEF7E5;
    padding: 20px;
    width: 320px;
    min-height: 420px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.reasons-list li:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px #FEF7E5);
    transform: scale(1.05) translateY(-5px);
    color: #6E433D;
    background-color: #FFBD52;
}


.the-title {
    font-size: 60px;
    color: #D52122;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 0px;
}


/*gallery section*/
.gallery-section {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}
.carousel {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin-top: 10px;
}

.group {
    display: flex;
    width: max-content;
    gap: 1em;
    animation: scroll 10s linear infinite;
}

.card {
    flex: 0 0 auto;
    width: 380px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel:hover .group {
    animation-play-state: paused;
}



/*review-section*/
.review-section {
    width: 100%;
    min-height: 160vh;
    color: #D52122;
}

.review-container {
    position: relative;
}

.review-img {
    width: 40%;
    display: block;
    position: relative;
    z-index: 0;
    float: right;
}
.quotation-right {
    transform: scaleX(-1);
}

.review-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.review-list {
    background-color: #FEF7E5;
    list-style: none;
    padding: 0;
    margin: 0;
}
.review-img {
    width: 45%;
    padding-right: 100px;
}
.review-list-container {
    padding-top: 80px;
    position: relative;
    float: left;
    position: relative;
    left: 6%;
}
.review-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
 
}
.review-list h3{
    padding: 0;
    margin: 0;
}
.review-list h4{
    padding-bottom: 10px;
    margin: 0;
}

/*contact-section*/

.contact-section {
    width: 100%;
    height: 130vh;
    
}

.map {
    width: 100%;
    height: 450px;
    border: 0;
    margin-bottom: 70px;
}

.contact-us {
    margin: 0 auto;
    padding-bottom: 20px;
    width: 80%;
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: baseline;
    justify-content: center;
    color: #D52122;
    background-color: #FEF7E5;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  p {
    font-size: 16px;
  }

  .the-title {
    font-size: 38px;
    padding-top: 30px;
  }

  /* home section*/

  .title {
    height: auto;
    min-height: 100vh;
    padding: 120px 20px 60px;
  }

  .group-title {
    padding-top: 0;
  }

  .big-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .small-title,
  .small-title-2 {
    font-size: 18px;
  }

  .button {
    width: 220px;
    height: 60px;
    font-size: 18px;
  }

  /* floating images */

  .cup,
  .house-roll,
  .nigiri,
  .wasabi {
    width: 90px;
    opacity: 0.25;

    /* important fix */
    position: absolute;
  }

  .cup { bottom: 8%; right: 0; }
  .house-roll { top: 75%; right: 0; }
  .nigiri { top: 45%; left: 0; }
  .wasabi { top: 8%; left: 0; }

  /* about section */

  .about-section {
    min-height: auto;
    padding: 40px 20px;
  }

  .sticky-section {
    flex-direction: column;
    gap: 30px;
  }

  .sticky-image {
    position: relative;
    width: 100%;
    height: auto;
    padding-left: 0;
  }

  .sticky-text {
    width: 100%;
    text-align: center;
  }

  .sticky-text-para {
    width: 100%;
    font-size: 18px;
    min-height: auto;
  }

/*reasons section*/

  .reasons-section {
    height: auto;
    padding: 20px;
  }

  .reasons-list {
    flex-direction: column;
    align-items: center;
  }

  .reasons-list li {
    width: 90%;
  }

  /* GALLERY */

  .gallery-section {
    height: auto;
  }

  .card {
    width: 260px;
    height: 320px;
  }

  /* REVIEW */

  .review-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .review-container {
    flex-direction: column;
  }

  .review-img {
    width: 100%;
    float: none;
    padding: 0;
  }

  .review-content {
    position: relative;
    transform: none;
  }

  /* CONTACT */

  .contact-section {
    height: auto;
  }

  .contact-us {
    flex-direction: column;
    width: 90%;
    gap: 20px;
  }

  .map {
    height: 280px;
  }
}