@font-face {
  font-family: "Niveau Grotesk";
  src: url("../fonts/NiveauGroteskRegular.woff");
}
@font-face {
  font-family: "Niveau Grotesk Bold Italic";
  src: url("../fonts/NiveauGroteskBold-Italic.otf");
}
@font-face {
  font-family: "Niveau Grotesk Bold SmallCaps";
  src: url("../fonts/NiveauGroteskBold-SmallCaps.otf");
}
@font-face {
  font-family: "Niveau Grotesk Medium SmallCaps";
  src: url("../fonts/NiveauGroteskMedium-SmallCaps.otf");
}

@font-face {
  font-family: "Niveau Grotesk Bold";
  src: url("../fonts/NiveauGroteskBold.otf");
}
@font-face {
  font-family: "Niveau Grotesk Light";
  src: url("../fonts/NiveauGroteskLight.otf");
}
@font-face {
  font-family: "Niveau Grotesk Medium";
  src: url("../fonts/NiveauGroteskMedium.otf");
}
*,
body,
html {
  box-sizing: border-box;
  font-family: "Niveau Grotesk";
}

body,
html {
  margin: 0;
  padding: 0;
}

a:hover,
button:hover {
  cursor: pointer;
}

.header {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-inline: 80px;
}

.header img {
  width: 180px;
}

.header-links {
  display: flex;
  gap: 32px;
}

.header-links a {
  color: #000;
  font-family: "Niveau Grotesk Medium SmallCaps";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  text-decoration: none;
}

.heroHome {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 90px);
}

.heroHomeContent {
  width: 59.79%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.italianFlag {
  display: flex;
  flex-direction: row;
  height: 18px;
  width: 90%;
}

.red {
  height: 100%;
  width: 33.3%;
  border-top: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  border-right: 1.5px solid #000;
  background: var(--Red, #c9241d);
}

.white {
  border: 1.5px solid #000;
  background: var(--White, #fff);
  width: 33.3%;
  height: 100%;
}

.green {
  border-top: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  border-left: 1.5px solid #000;
  background: var(--Green, #65912f);
  height: 100%;
  width: 33.3%;
}

.bigTitleHero {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 136px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.heroText {
  color: rgba(47, 45, 44, 0.8);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 65%;
}

.heroButtons {
  padding-top: 16px;
  display: flex;
  gap: 32px;
}

.menuButton {
  display: flex;
  width: 279px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Black, #141210);
  text-transform: uppercase;
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
  border: 1px solid var(--Black, #141210);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: color 0.3s;
}
.menuButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--Highlight, #65912f); /* Your highlight color */
  z-index: -1;
  transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
}

.menuButton:hover::before {
  height: 100%;
  top: 0;
}

.menuButton:hover {
  color: var(--White, #fff);
  border: 1px solid transparent;
  transition: 0.3s;
}

.reservoButton {
  display: flex;
  width: 279px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Black, #141210);
  text-transform: uppercase;
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
  border: 1px solid var(--Black, #141210);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: color 0.3s;
}
.reservoButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--Highlight, #c9241d); /* Your highlight color */
  z-index: -1;
  transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
}

.reservoButton:hover::before {
  height: 100%;
  top: 0;
}

.reservoButton:hover {
  color: var(--White, #fff);
  border: 1px solid transparent;
  transition: 0.3s;
}

.secondSection {
  width: 100%;
  padding-inline: 80px;
  display: flex;
  flex-direction: column;
}

.secondSectionContent {
  display: flex;
  width: 100%;
  padding: 56px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  border: 1px solid var(--Black, #141210);
  background: #fff;
}

.secondSectionContent h1 {
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.secondSectionContent p {
  color: rgba(47, 45, 44, 0.8);
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.stepsSection {
  display: flex;
  padding: 96px 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.stepsSection h1 {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.steps {
  display: flex;
  gap: 2%;
  width: 100%;
}

.step {
  display: flex;
  flex-direction: column;
  width: 32%;
}

.step img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stepContent {
  display: flex;
  padding: 32px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  width: 100%;
}

.stepName {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stepName h3 {
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.divider {
  width: 2px;
  height: 27px;
  background: #000;
}

.stepContent p {
  color: rgba(47, 45, 44, 0.8);
  font-family: "Niveau Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: -16px;
  margin-bottom: 0;
}

.bestSelling {
  display: flex;
  width: 100%;
  padding: 96px 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.upperSelling {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.upperSelling a {
  display: flex;
  width: 279px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
  border: 1px solid var(--Black, #141210);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: color 0.3s;
  text-transform: uppercase;
}
.upperSelling a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--Highlight, #65912f); /* Your highlight color */
  z-index: -1;
  transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
}

.upperSelling a:hover::before {
  height: 100%;
  top: 0;
}

.upperSelling a:hover {
  color: var(--White, #fff);
  border: 1px solid transparent;
  transition: 0.3s;
}

.upperSelling h1 {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.lowerSelling {
  display: flex;
  gap: 2%;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 32px;
}

.sellingPizza {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sellingPizza img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.imagesForHover {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.img2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.img2 {
  opacity: 0;
  transform: scale(1.1);
}

.imagesForHover:hover .img2 {
  opacity: 1;
  transform: scale(1);
}

.sellingPizza h2 {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk Bold";
  font-size: 40px;
  margin: 0;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.sellingPizza p {
  color: rgba(47, 45, 44, 0.8);
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: -16px;
}

.marqueeHome {
  width: 100%;
}

.wrapper {
  width: 105%;
  overflow: hidden;
  position: relative;
  display: flex;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  background: var(--Red, #c9241d);
}

.box {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  text-align: center;
  /* padding: 34px 0px 34px 0px; */
  width: fit-content;
}

.box p {
  color: var(--White, #fff);
  font-family: "Niveau Grotesk";
  font-size: 80px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 5px 0 0;
}

.textWrapper {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
}

.locations {
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.locations h1 {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

.accordionsWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #000;
}

body {
  font-family: Arial, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

.accordion {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: height 0.3s ease;
}

.upperAccordion {
  display: flex;
  width: 100%;
  padding: 40px 80px;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  border-top: 1px solid #000;
  position: relative;
  z-index: 1;
}

.leftAccordion {
  display: flex;
  gap: 24px;
  align-items: center;
}

.accordion h2,
.accordion h3 {
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk";
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.accordion h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Niveau Grotesk Bold" !important;
}

.accordion h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.accordion-icon {
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.accordionContent {
  overflow: hidden;
  height: 0;
  display: flex;
  transition: height 0.3s ease;
  z-index: 99999;
}

.accordionContent img {
  width: 33.333%;
  height: 405px;
  object-fit: cover;
}

.accordion.active .accordionContent {
  height: auto;
}

.accordion::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #c9241d;
  z-index: 0;
  transition: height 0.3s ease, top 0.3s ease;
}

.accordion:hover::before,
.accordion.active::before {
  height: 100%;
  top: 0;
}

.accordion:hover .leftAccordion h2,
.accordion:hover .leftAccordion h3,
.accordion:hover .accordion-icon,
.accordion.active .leftAccordion h2,
.accordion.active .leftAccordion h3,
.accordion.active .accordion-icon {
  color: white;
}
.chefSection {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-inline: 80px;
  width: 100%;
}
.chefSection h1 {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.imageContent {
  width: 100%;
  display: flex;
  height: 590px;
}
.leftChef {
  width: 50%;
  height: 100%;
}
.leftChef img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rightChef {
  display: flex;
  width: 50%;
  height: 100%;
  padding: 80px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  border: 1px solid var(--Black, #141210);
  background: #fff;
}
.chefName {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.chefName h1 {
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk Bold";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-align: left;
}
.chefName p {
  color: rgba(47, 45, 44, 0.8);
  font-family: "Niveau Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.chefBorder {
  width: 100%;
  height: 1px !important;
  background: rgba(0, 0, 0, 0.3);
}
.bestPizza {
  display: flex;
  gap: 37px;
}
.iconPizza {
  display: flex;
  align-items: center;
  gap: 12px;
}
.iconPizza p {
  color: var(--Red, #c9241d);
  font-family: "Niveau Grotesk Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.iconPizza img {
  width: 28.109px;
  height: 35px;
}
.instagramPosts {
  display: flex;
  padding: 96px 80px;
  flex-direction: column;
  gap: 64px;
}
.upperInstagram {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.upperInstagram h1 {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk Bold SmallCaps";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}
.upperInstagram a {
  display: flex;
  width: 279px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--Black, #141210);
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  transition: color 0.3s;
}
.upperInstagram a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--Highlight, #65912f); /* Your highlight color */
  z-index: -1;
  transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
}

.upperInstagram a:hover::before {
  height: 100%;
  top: 0;
}

.upperInstagram a:hover {
  color: var(--White, #fff);
  border: 1px solid transparent;
  transition: 0.3s;
}
.instagramWrapper {
  display: flex;
  gap: 1.5%;
  width: 100%;
}
.instagram {
  width: 23.875%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.instagramImage {
  width: 100%;
  height: 302px;
  object-fit: cover;
}
.instagramLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.instagramLink h1 {
  color: #000;
  font-family: "Niveau Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.upperFooter {
  padding: 32px 80px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  width: 100%;
  border-top: 1px solid var(--Black, #141210);
  border-bottom: 1px solid var(--Black, #141210);
}
.footerLinks {
  width: 400px;
  display: flex;
  gap: 32px;
  align-items: center;
}
.footerLinks a {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk Medium SmallCaps";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  margin: 0;
}
.footerLogo {
  width: 308.407px;
  height: 77px;
}
.socialMedia {
  display: flex;
  width: 400px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}
.socialMedia p {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.socials {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
}
.lowerFooter {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.copyright {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk Light";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}

.w100 {
  width: 100% !important;
}
.careersPage {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-height: 100vh;
}
.careersPage h1 {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}
.careersWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  row-gap: 24px;
}
.job {
  width: 23.875%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.upperJob {
  height: 300px;
  width: 100%;
}
.upperJob img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.lowerJob {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid #000;
  width: 100%;
  padding: 24px;
  height: auto;
}
.lowerJob h2 {
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.jobInformation {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jobInfo {
  display: flex;
  gap: 8px;
  align-items: center;
}
.jobInfo p {
  color: var(--Black, #141210);
  font-family: "Niveau Grotesk";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.emptyCareers {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100vh - 244px);
}
.emptyCareers p {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.rezervoPage {
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.rezervoPage h1 {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 40%;
}
.halfInputs {
  display: flex;
  gap: 16px;
}
.halfInput {
  display: flex;
  height: 56px;
  padding: 16px 24px;
  align-items: center;
  gap: 8px;
  width: 50%;
  color: rgba(20, 18, 16, 0.5);
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  border: 1px solid var(--Black, #141210);
}
.fullInput {
  display: flex;
  height: 56px;
  padding: 16px 24px;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: rgba(20, 18, 16, 0.5);
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  border: 1px solid var(--Black, #141210);
}
.form textarea {
  display: flex;
  width: 100%;
  height: 186px;
  padding: 24px;
  align-items: flex-start;
  gap: 8px;
  color: rgba(20, 18, 16, 0.5);
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid var(--Black, #141210);
}
.form button {
  display: flex;
  width: 100%;
  height: 56px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #c9241d;
  border: none;
  color: var(--White, #fff);
  margin-bottom: 0;
  margin-top: 8px;
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
}
.invalid {
  border: 1px solid red;
}
.notFound {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: calc(100vh - 90px);
  align-items: center;
  justify-content: center;
}
.notFound h1 {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 136px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.notFound p {
  color: var(--Black, #141210);
  text-align: center;
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.notFound a {
  display: flex;
  width: 279px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Black, #141210);
  margin: 0;
  font-family: "Niveau Grotesk";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.7px;
  border: 1px solid var(--Black, #141210);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: color 0.3s;
  text-transform: uppercase;
}
.notFound a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--Highlight, #65912f); /* Your highlight color */
  z-index: -1;
  transition: height 0.3s ease-in-out, top 0.3s ease-in-out;
}

.notFound a:hover::before {
  height: 100%;
  top: 0;
}

.notFound a:hover {
  color: var(--White, #fff);
  border: 1px solid transparent;
  transition: 0.3s;
}
.mt100 {
  width: 50%;
  margin-top: 4px;
}

#borgir {
  display: none;
}

.mobileSocials {
  display: none;
}
.secondSection img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.phonenumber{
  color: inherit; /* Prevents any specific color from being applied */
  text-decoration: none; /* Removes underline */
  pointer-events: none; /* Disables clicking */
  cursor: default; /* Sets the cursor to default */
}

@media screen and (max-width: 800px) {
  .hajti {
    height: 100vh !important;
    background-color: #fff !important;
  }
  .reservoButton,
  .menuButton,
  .upperSelling a,
  .upperInstagram a,
  .notFound a {
    transition: color 0.01s;
  }
  .reservoButton::before,
  .menuButton::before,
  .upperSelling a:before,
  .upperInstagram a:before,
  .notFound a:before {
    transition: height 0.01s ease-in-out, top 0.01s ease-in-out;
  }

  .reservoButton:hover,
  .menuButton:hover,
  .upperSelling a:hover,
  .upperInstagram a:hover,
  .notFound a:hover {
    color: var(--White, #fff);
    border: 1px solid transparent;
    transition: 0.01s;
  }

  .mobileSocials {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: -24px;
  }
  .secondSection img {
    height: 250px;
    width: 100%;
    object-fit: cover;
  }
  .mobileSocials a img {
    width: 20px;
    height: 20px;
  }
  #borgir {
    position: absolute;
    right: 14px;
    width: 13%;
    top: 14px;
    display: block;
  }
  .header-links {
    flex-direction: column;
    width: 100%;
    gap: 24px;
  }
  .header-links a {
    text-align: left;
    color: var(--Black, #141210);
    font-family: "Niveau Grotesk";
    margin: 0;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 24px;
    border-bottom: 1.5px solid rgba(20, 18, 16, 0.3);
    width: 100%;
  }

  .header {
    padding-inline: 16px;
    padding-top: 20px;
    background: #fff;
    height: 90px;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    position: fixed;
    transition: 0.4s;
    z-index: 9999999;
    justify-content: flex-start;
    gap: 60px;
    width: 100%;
    margin-left: 0;
  }
  .heroHome {
    height: auto;
    padding: 140px 30px 80px 30px;
  }
  .bigTitleHero {
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .heroHomeContent {
    gap: 24px;
    width: 100%;
  }
  .reservoButton {
    width: 130px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.1px;
    padding: 16px 24px;
  }
  .menuButton {
    width: 130px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 16px 24px;

    letter-spacing: 2.1px;
  }
  .heroText {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
  }
  .secondSection {
    padding-inline: 16px;
  }
  .secondSectionContent {
    padding: 32px 16px;
  }
  .secondSectionContent h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .secondSectionContent p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .bestSelling {
    padding: 48px 16px;
    gap: 32px;
  }
  .upperSelling h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
  }
  .upperSelling a {
    padding: 16px 24px;
    width: 130px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.1px;
  }
  .lowerSelling {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 15px;
  }
  .sellingPizza {
    width: 330px;
    gap: 24px;
  }
  .imagesForHover {
    height: 330px;
  }
  .sellingPizza img {
    width: 330px;
    height: 330px;
  }
  .sellingPizza h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .sellingPizza p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .box p {
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  .wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .locations {
    padding-top: 48px;
    gap: 32px;
  }
  .locations h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .upperAccordion {
    height: 72px;
    padding: 0px 24px;
    justify-content: space-between;
    align-items: center;
  }
  .accordion h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.48px;
    text-transform: uppercase;
    font-family: "Niveau Grotesk Medium";
  }
  .accordionContent img {
    height: 200px;
    width: 50%;
  }
  .accordionContent img:nth-child(3) {
    display: none;
  }
  .accordion h3 {
    display: none;
  }
  .stepsSection {
    padding: 48px 16px;
    gap: 32px;
  }

  .stepsSection h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 60%;
  }
  .steps {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
  .step {
    width: 330px;
  }
  .step img {
    width: 330px;
    height: 330px;
  }
  .stepContent {
    padding: 24px 0;
    gap: 24px;
  }
  .stepName h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .stepContent p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .divider {
    height: 17px;
  }
  .chefSection h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .chefSection {
    padding-inline: 16px;
    gap: 32px;
  }
  .imageContent {
    flex-direction: column;
    height: auto;
  }
  .leftChef {
    width: 100%;
    margin-bottom: -5px;
  }
  .rightChef {
    width: 100%;
    padding: 32px 16px 24px 16px;
    gap: 16px;
  }
  .chefName {
    gap: 16px;
  }
  .chefName h1 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    text-align: left;
  }
  .chefName p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .bestPizza {
    flex-direction: column;
    gap: 16px;
  }
  .iconPizza p {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .instagramPosts {
    padding: 48px 16px;
  }
  .upperInstagram h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .upperInstagram a {
    width: 130px;
    padding: 16px 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.1px;
  }
  .instagramWrapper {
    overflow-x: scroll;
    flex-wrap: nowrap;
    padding-bottom: 15px;
  }
  .instagram {
    width: 260px;
  }
  .instagramImage {
    width: 260px;
    height: 260px;
  }
  .upperFooter {
    flex-direction: column;
    padding: 32px;
    gap: 24px;
  }
  .footerLinks {
    width: 100%;
    justify-content: center;
  }
  .socialMedia {
    justify-content: center;
    align-items: center;
  }
  .careersPage {
    padding: 140px 16px 70px;
    gap: 32px;
  }
  .careersPage h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .careersWrapper {
    gap: 4.2%;
    row-gap: 24px;
  }
  .job {
    width: 47.6%;
  }
  .upperJob {
    height: 174.5px;
  }
  .lowerJob {
    padding: 16px;
  }
  .lowerJob h2 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .jobInfo p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .emptyCareers {
    padding-top: 8%;
  }
  .emptyCareers p {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .notFound {
    gap: 20px;
    height: 100vh;
  }
  .notFound h1 {
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .notFound p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .notFound a {
    padding: 16px 24px;
    width: 150px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.1px;
  }
  .rezervoPage {
    padding: 130px 16px 64px;
    gap: 32px;
  }
  .rezervoPage h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .form {
    width: 100%;
  }
  .halfInput {
    display: flex;
    padding: 16px 12px;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .fullInput {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 16px 12px;
    align-items: flex-start;
    gap: 8px;
    line-height: normal;
  }
  .form textarea {
    height: 186px;
    padding: 14px 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .form button {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.1px;
    height: 42px;
    padding: 16px 24px;
  }
}

