:root {
  --primary-red: #e44c4c;
  --secondary-red: #fc5c5c;
  --primary-orange: #fc7c54;
  --secondary-orange: #fc945c;
  --primary-yellow: #fcac54;
}

@font-face {
  font-family: name;
  src: url();
}
* {
  box-sizing: border-box;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

*:is(a, li) {
  text-decoration: none;
  list-style: none;
}

body {
  overflow-x: hidden;
  position: relative;
}

body::-webkit-scrollbar {
  width: 0px;
}

/* -------------------------------- Recs --------------------------------*/
.titling-menu {
  background-color: var(--primary-red);
  color: #fff;
  height: 40vh;
}
.titling-menu h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 200px;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 6px 14px);
}

.menu-holder {
  min-height: 100vh;
  position: relative;
}
.menu-holder .wave-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.menu-holder .wave-menu svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 137px;
}
.menu-holder .wave-menu .shape-fill {
  fill: var(--primary-red);
}
.menu-holder .modal {
  display: none;
  position: absolute;
  padding: 20px 20px;
  width: 100%;
  height: 200px;
  z-index: 50;
  top: 0;
}
.menu-holder .modal-content {
  border-radius: 10px;
  background-color: var(--primary-red);
}
.menu-holder .close {
  color: #555;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.menu-holder .close:hover {
  color: var(--primary-red);
}
.menu-holder .pasta {
  height: 400px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  bottom: -100px;
  filter: drop-shadow(rgba(0, 0, 0, 0.35) 0px 5px 15px);
}
.menu-holder h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 100px;
}
.menu-holder .size {
  width: 80%;
  column-gap: 5px;
  padding-bottom: 20px;
  font-weight: 800;
  font-size: 12px;
}
.menu-holder .size input {
  cursor: pointer;
  accent-color: var(--primary-red);
}
.menu-holder .recommended-pasta {
  width: 180px;
  padding: 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  row-gap: 5px;
  position: relative;
  background-color: #fff;
}
.menu-holder .recommended-pasta img {
  height: 100px;
  aspect-ratio: 1/1;
}
.menu-holder .recommended-pasta h5 {
  font-size: 16px;
}
.menu-holder .recommended-pasta .buy {
  all: unset;
  color: #1f1f1f;
  padding: 8px 10px;
  font-size: 12px;
  background-color: var(--primary-red);
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}
.menu-holder .recommended-pasta .info {
  color: #1f1f1f;
  font-size: 18px;
}
.menu-holder .recommended-pasta .price {
  color: #1f1f1f;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  border-radius: 0px 8px 0px 18px;
  top: 0;
  right: 0;
  background-color: #fcac54;
}

/* -------------------------------- End recs --------------------------------*/
/* -------------------------------- Header --------------------------------*/
header {
  height: 100vh;
  padding-bottom: 40px;
  background-color: var(--primary-red);
}
header .hero {
  position: relative;
  height: 80vh;
  width: 100%;
  color: #1f1f1f;
}
header .hero img {
  height: 400px;
  aspect-ratio: 1/1;
  position: absolute;
  right: -80px;
  z-index: 0;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 3px 8px);
}
header .hero .textbox {
  width: 90%;
  border-radius: 8px;
  padding-inline: 30px;
}
header .hero .textbox img {
  height: 64px;
  aspect-ratio: 1/1;
  left: 50%;
  bottom: 0;
}
header .hero h2 {
  font-size: 200px;
  line-height: 175px;
  z-index: 5;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
}
header .hero h3 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  padding-inline: 20px;
}

nav {
  height: 8vh;
  padding-inline: 30px;
  padding-top: 10px;
  top: 0;
  background-color: var(--primary-red);
}
nav img {
  width: 45px;
  aspect-ratio: 1/1;
}
nav h1 {
  font-size: 35px;
  color: #1f1f1f;
  font-family: "Bebas Neue", sans-serif;
}
nav ul {
  width: 30%;
}
nav a {
  font-size: 14px;
  color: #1f1f1f;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 25px;
  display: inline-block;
  position: relative;
}
nav a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: #1f1f1f;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
nav a:hover:after {
  width: 100%;
  right: 0;
}

.recs {
  min-height: 75vh;
  position: relative;
}
.recs .modal {
  display: none;
  position: absolute;
  padding: 20px 20px;
  width: 100%;
  height: 200px;
  z-index: 50;
  top: 0;
}
.recs .modal-content {
  border-radius: 10px;
  background-color: var(--primary-red);
}
.recs .close {
  color: #555;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.recs .close:hover {
  color: var(--primary-red);
}
.recs .pasta {
  height: 400px;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  bottom: -100px;
  filter: drop-shadow(rgba(0, 0, 0, 0.35) 0px 5px 15px);
}
.recs h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 100px;
}
.recs .text-recs {
  width: 60%;
}
.recs .size {
  width: 80%;
  column-gap: 5px;
  padding-bottom: 20px;
  font-weight: 800;
  font-size: 12px;
}
.recs .size input {
  cursor: pointer;
  accent-color: var(--primary-red);
}
.recs .three-card-holder {
  width: 100%;
}
.recs .recommended-pasta {
  padding: 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  row-gap: 5px;
  position: relative;
  background-color: #fff;
}
.recs .recommended-pasta img {
  height: 100px;
  aspect-ratio: 1/1;
}
.recs .recommended-pasta h5 {
  font-size: 16px;
}
.recs .recommended-pasta .buy {
  all: unset;
  color: #1f1f1f;
  padding: 8px 10px;
  font-size: 12px;
  background-color: var(--primary-red);
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}
.recs .recommended-pasta .info {
  color: #1f1f1f;
  font-size: 18px;
}
.recs .recommended-pasta .price {
  color: #1f1f1f;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  border-radius: 0px 8px 0px 18px;
  top: 0;
  right: 0;
  background-color: #fcac54;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 91px;
}

.wave .shape-fill {
  fill: #E44C4C;
}

/* -------------------------------- Login/register --------------------------------*/
.login {
  background-color: var(--primary-red);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
}
.login .img1 {
  position: absolute;
  z-index: 1;
  right: -200px;
  bottom: -200px;
  rotate: -45deg;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 3px 8px);
}
.login .img2 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  height: 200px;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 1;
  left: -30px;
  bottom: -30px;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 3px 8px);
}
.login .form-holder {
  height: 360px;
  padding: 10px 20px;
  z-index: 2;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
}
.login form {
  row-gap: 5px;
}
.login h1 {
  font-size: 50px;
  color: #1f1f1f;
  position: absolute;
  top: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}
.login input {
  all: unset;
  font-size: 12px;
  color: #1f1f1f;
  width: 250px;
  padding: 10px 10px;
  background-color: #f3eded;
  border-radius: 20px;
}
.login input::placeholder {
  color: #1f1f1f;
}
.login .btn {
  all: unset;
  padding: 10px 20px;
  background-color: var(--primary-red);
  border-radius: 20px;
  color: #fff;
  font-weight: bolder;
  font-size: 12px;
}
.login p {
  font-size: 10px;
}
.login a {
  font-size: 10px;
  color: var(--primary-red);
}
.login .contact-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.login .contact-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}
.login .contact-wave .shape-fill {
  fill: var(--primary-red);
}

/* -------------------------------- Contact --------------------------------*/
.holder-contact {
  height: 92vh;
  position: relative;
  background-color: var(--primary-red);
  padding-inline: 100px;
  position: relative;
}
.holder-contact .text {
  width: 60%;
  height: 100%;
  position: relative;
}
.holder-contact .text img {
  position: absolute;
  height: 64px;
  aspect-ratio: 1/1;
  right: 50px;
  bottom: 0;
}
.holder-contact .contact-form {
  background-color: #f5cb52;
  z-index: 2;
  height: 275px;
  aspect-ratio: 0.7/1;
  border-radius: 8px;
  padding: 20px 20px;
  rotate: 20deg;
  position: absolute;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 6px 14px;
  transition: all 0.3s ease-in;
}
.holder-contact .contact-form:hover {
  rotate: 0deg;
  transform: rotate(0deg) translateX(-30%) scale(1.2);
}
.holder-contact .contact-form-sec {
  z-index: 1;
  background-color: #fbdb8b;
  height: 290px;
  aspect-ratio: 0.7/1;
  border-radius: 8px;
  padding: 20px 20px;
  rotate: 20deg;
  position: absolute;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 6px 14px;
}
.holder-contact form {
  row-gap: 5px;
}
.holder-contact input {
  all: unset;
  font-size: 12px;
  color: #1f1f1f;
  width: 175px;
  padding: 10px 10px;
  background-color: #fbdb8b;
  border-radius: 20px;
}
.holder-contact input::placeholder {
  color: #1f1f1f;
}
.holder-contact textarea {
  all: unset;
  width: 175px;
  border-radius: 20px;
  padding: 10px 10px;
  background-color: #fbdb8b;
  font-size: 10px;
}
.holder-contact textarea::placeholder {
  color: #1f1f1f;
}
.holder-contact .btn {
  all: unset;
  padding: 10px 82px;
  background-color: #fbdb8b;
  border-radius: 20px;
  color: #1f1f1f;
  font-weight: bolder;
  font-size: 12px;
}
.holder-contact h2 {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-size: 200px;
  line-height: 175px;
}

.phone {
  height: 70vh;
  background-color: #fff;
  position: relative;
  padding-inline: 50px;
}
.phone img {
  height: 300px;
  aspect-ratio: 1/1;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 6px 14px);
}
.phone h3 {
  font-family: "Bebas Neue", sans-serif;
  color: #1f1f1f;
  font-size: 80px;
  text-align: right;
}
.phone h4 {
  font-family: "Bebas Neue", sans-serif;
  color: #1f1f1f;
  font-size: 200px;
  line-height: 175px;
  text-align: right;
  filter: drop-shadow(rgba(0, 0, 0, 0.24) 0px 6px 14px);
}
.phone h5 {
  position: absolute;
  font-size: 17px;
  z-index: 3;
}
.phone .custom-shape-divider-top-1701344858 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.phone .custom-shape-divider-top-1701344858 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 110px;
}
.phone .custom-shape-divider-top-1701344858 .shape-fill {
  fill: var(--primary-red);
}

/* -------------------------------- Footer --------------------------------*/
.footer {
  height: 40vh;
  position: relative;
  z-index: -2;
  background-color: var(--primary-red);
}
.footer .footer-container {
  background-color: var(--primary-red);
  width: 100%;
  height: 40%;
  color: #fff;
  column-gap: 50px;
}
.footer h4 {
  font-size: 14px;
}
.footer p {
  font-size: 10px;
}
.footer a {
  color: #fff;
  font-size: 10px;
}
.footer .socials-footer i {
  font-size: 12px;
}
.footer .wave-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.footer .wave-footer svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 85px;
}
.footer .wave-footer .shape-fill {
  fill: #FFFFFF;
}

/* ----------------------------- Keyframes -----------------------------*/
/* -------------------------- Utility Classes --------------------------*/
.flex {
  display: flex;
}

.row {
  flex-direction: row;
}
.row-r {
  flex-direction: row-reverse;
}

.col {
  flex-direction: column;
}
.col-r {
  flex-direction: column-reverse;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

.jcc {
  justify-content: center;
}
.jcb {
  justify-content: space-between;
}
.jca {
  justify-content: space-around;
}
.jce {
  justify-content: space-evenly;
}
.jcstart {
  justify-content: flex-start;
}
.jcend {
  justify-content: flex-end;
}

.aic {
  align-items: center;
}
.ais {
  align-items: start;
}
.aie {
  align-items: end;
}

.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.p-fixed {
  position: fixed;
}

.t-0 {
  top: 0;
}

.r-0 {
  right: 0;
}

.b-0 {
  bottom: 0;
}

.l-0 {
  left: 0;
}

.h-100 {
  height: 100%;
}

.vh-100 {
  height: 100vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.w-100 {
  width: 100%;
}

.square {
  aspect-ratio: 1;
}

.obj-fit-contain {
  object-fit: contain;
}
.obj-fit-cover {
  object-fit: cover;
}
.obj-fit-fill {
  object-fit: fill;
}

.t-bold {
  font-weight: bold;
}
.t-upper {
  text-transform: uppercase;
}
.t-lower {
  text-transform: lowercase;
}

.hidden {
  display: none;
  transition: 500ms;
}/*# sourceMappingURL=stylesheet.css.map */