@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5em;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  background: #26221B;
}
body.nav-active {
  overflow: hidden;
}
body.nav-active .hamburger {
  transform: rotate(45deg);
}
body.nav-active .hamburger::before {
  opacity: 0;
}
body.nav-active .hamburger::after {
  transform: rotate(90deg) translate(-6px);
}
body.nav-active .nav-link {
  transform: translateY(0%);
  transition-delay: 560ms;
  transition-duration: 240ms;
  transition-timing-function: cubic-bezier(0.1, 0.2, 0.3, 1.4);
}

a {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-family: "Lora", serif;
  font-weight: 600;
  padding-bottom: 1rem;
  color: #FAEAE6;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: "Lora", serif;
  font-weight: 600;
  padding-bottom: 0.5em;
  color: #FAEAE6;
}

p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #FAEAE6;
}

.logo span {
  font-size: 1.4rem;
  font-family: "Lora", serif;
  font-weight: 600;
  color: #A57B6E;
}

.container {
  width: min(85%, 70rem);
  margin-inline: auto;
}

.flex {
  display: flex;
  justify-content: center;
}

.col {
  flex-basis: 100%;
}

.hidden {
  opacity: 0;
  filter: blur(2px);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
}

.nav-toggle {
  position: relative;
  display: block;
  padding: 1em 0.5em;
  background-color: transparent;
  border: none;
  z-index: 15;
  margin-left: auto;
  margin-right: 0;
}
.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #A57B6E;
  transition: transform 350ms ease-in-out, opacity 200ms linear;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
}
.nav-toggle .hamburger::before {
  bottom: 6px;
}
.nav-toggle .hamburger::after {
  top: 6px;
}
@media (min-width: 60rem) {
  .nav-toggle {
    display: none;
  }
}

.cta-btn {
  padding: 0.8rem;
  margin: 0;
  outline: none;
  border: 3px solid #A57B6E;
  background-color: transparent;
  color: white;
  position: relative;
  letter-spacing: 1px;
}
.cta-btn::before {
  content: "Our Menu";
  /*Button's value/text-content */
  position: absolute;
  top: -14%;
  left: -5%;
  background-color: #A57B6E;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease-in-out;
  font-weight: bold;
}
@media (hover: hover) {
  .cta-btn:hover::before {
    top: 0;
    left: 0;
  }
}
@media (hover: none) {
  .cta-btn:active::before {
    top: 0;
    left: 0;
  }
}

.home-menu-btn {
  background-color: unset;
  border-top: 2px solid #26221B;
  border-right: 2px solid #26221B;
  border-left: 2px solid #A57B6E;
  border-bottom: 2px solid #A57B6E;
  padding: 1em 1.5em;
  color: #FAEAE6;
  transition-duration: 0.5s;
  transition-property: border;
}
@media (hover: hover) {
  .home-menu-btn:hover {
    border: 3px solid #A57B6E;
  }
}
@media (max-width: 50rem) {
  .home-menu-btn {
    border: 3px solid #A57B6E;
  }
}

header {
  position: relative;
  width: min(85%, 70rem);
  margin-inline: auto;
  padding: 1em 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FAEAE6;
}

.nav-link li {
  display: inline-block;
}
.nav-link li:not(:last-child) {
  margin-right: 1em;
}
.nav-link li a {
  display: block;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #FAEAE6;
}
@media (max-width: 50rem) {
  .nav-link {
    width: 20rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    background-color: #0A0A0A;
    margin: 0;
    padding: 0;
    z-index: 14;
    padding-top: 8rem;
  }
  .nav-link li {
    display: block;
    line-height: 2rem;
  }
}

.hero {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to bottom right, rgba(38, 34, 27, 0.5) 0%, rgba(38, 34, 27, 0.8) 100%), url("../../image/Cafe(Dark).jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 6rem;
  border-radius: 1rem;
}
.hero .hero-content {
  width: min(85%, 55rem);
  margin-inline: auto;
  z-index: 1;
  text-align: center;
  color: #FAEAE6;
}
.hero .hero-content p {
  padding-bottom: 2em;
}
@media (max-width: 40rem) {
  .hero {
    aspect-ratio: 9/16;
  }
}

footer {
  background-color: #0A0A0A;
  padding-top: 2em;
}
footer .logo {
  padding-bottom: 0.5em;
}
footer .social-icon {
  padding-right: 0.5em;
  color: #A57B6E;
}
footer h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-family: "Lora", serif;
  font-weight: 600;
  color: #A57B6E;
  padding-bottom: 0.5em;
}
footer ul {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #FAEAE6;
  margin: 0;
  padding: 0;
  list-style: none;
}

.my-name {
  padding: 2em 0;
}
.my-name p {
  color: gray;
  font-size: 0.9rem;
}
.my-name .name {
  color: #A57B6E;
}

.home-about {
  padding: 6rem 0;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 30rem) {
  .home-about {
    flex-direction: column;
  }
}

.home-about-content {
  color: #FAEAE6;
}
.home-about-content img {
  width: 20rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  padding-bottom: 2rem;
}

.black-board {
  background-image: url("../../image/zwartevilt.png");
  color: #FAEAE6;
  font-size: 1.4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding: 1.5rem 1.2rem;
  width: fit-content;
  margin-inline: auto;
  border: 0.5rem solid #0A0A0A;
}
.black-board h3 {
  padding-bottom: 1em;
}
.black-board ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.black-board ul .open-time {
  line-height: 3rem;
  white-space: nowrap;
  gap: 1.5rem;
}
.black-board ul .days {
  width: 4rem;
}
@media (max-width: 30rem) {
  .black-board {
    font-size: 1.2rem;
  }
}

.features {
  padding: 4rem 0;
}
.features .flex {
  gap: 2em;
}
@media (max-width: 30rem) {
  .features .flex {
    flex-direction: column;
  }
}
.features .feature {
  border: 1.5px solid #0A0A0A;
  border-radius: 1rem;
  text-align: center;
  color: #FAEAE6;
  padding: 2.5em 2em;
}
.features .feature h3 {
  padding: 1.5rem 0;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-family: "Lora", serif;
  font-weight: 400;
}
.features .feature p {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.features .feature i {
  font-size: 2rem;
  color: #A57B6E;
}

.feature:nth-child(2) {
  transition-delay: 200ms;
}

.feature:nth-child(3) {
  transition-delay: 400ms;
}

.home-menu {
  padding: 6rem 0 4rem 0;
}
.home-menu .flex {
  gap: 2rem;
}
@media (max-width: 30rem) {
  .home-menu .flex {
    flex-direction: column;
  }
}
.home-menu .home-menu-content {
  color: #FAEAE6;
}
.home-menu p {
  margin-bottom: 2rem;
}

.menu-gallery {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
}
.menu-gallery .gallery-img {
  width: 100%;
}
.menu-gallery .gallery-img img {
  width: 7rem;
  object-fit: cover;
}
.menu-gallery .gallery-img p {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-family: "Lora", serif;
  font-weight: 400;
  color: #A57B6E;
  padding-top: 1em;
}
.menu-gallery .gallery-img:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1/2;
}
.menu-gallery .gallery-img:nth-child(2) {
  grid-row: 3/5;
  grid-column: 1/2;
}
.menu-gallery .gallery-img:nth-child(3) {
  grid-row: 2/4;
  grid-column: 2/3;
}
.menu-gallery .gallery-img:nth-child(4) {
  grid-row: 4/6;
  grid-column: 2/3;
}

.testimonials {
  width: min(85%, 70rem);
  margin-inline: auto;
  padding: 3rem 0 10rem 0;
  display: grid;
  grid-gap: 1em;
  grid-template-areas: "🏠 🏠 🏠" "⬅️ 🎞️ ➡️";
}
.testimonials h2 {
  grid-area: 🏠;
  text-align: center;
  padding-bottom: 2rem;
}
.testimonials .testimonial {
  display: flex;
  opacity: 0;
  color: #FAEAE6;
  grid-area: 🎞️;
  padding: 0 2rem;
  transition: opacity 0.5s linear;
}
.testimonials .testimonial > * {
  flex-basis: 100%;
}
@media (max-width: 30rem) {
  .testimonials .testimonial {
    flex-direction: column;
    text-align: center;
  }
}
.testimonials .testimonial.active {
  opacity: 1;
}
.testimonials .next-btn,
.testimonials .pre-btn {
  background-color: unset;
  border: none;
  color: #A57B6E;
  cursor: pointer;
}
.testimonials .next-btn {
  grid-area: ➡️;
}
.testimonials .pre-btn {
  grid-area: ⬅️;
}
@media (max-width: 40rem) {
  .testimonials {
    grid-gap: 0.2em;
  }
}

.testimonial img {
  display: inline-block;
  width: 4rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial h4 {
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.menu-heading {
  text-align: center;
  padding: 6rem 0;
}

.menus {
  padding: 4rem 0 6rem 0;
  display: grid;
  gap: 4em;
}
@media (min-width: 50rem) {
  .menus .menus {
    grid-auto-flow: column;
  }
  .menus .menu:nth-child(2n+1) {
    grid-column: 1;
  }
  .menus .menu:nth-child(2n+2) {
    grid-column: 2;
  }
}
.menus .menu-contents {
  padding: 0;
}
.menus .menu-title,
.menus .menu-img {
  display: inline-block;
}
.menus .menu-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-family: "Lora", serif;
  font-weight: 400;
  color: #FAEAE6;
  padding-left: 1em;
}
.menus .menu-img {
  width: 5.5rem;
  object-fit: cover;
  border-bottom: 3px solid #A57B6E;
  padding-bottom: 1em;
}
.menus .menu-content {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #FAEAE6;
  padding: 0.5em 0;
}

.about-title {
  text-align: center;
}

.about-wrapper {
  padding: 2em 0 8rem 0;
  gap: 2rem;
}
.about-wrapper .about-img {
  position: relative;
  width: 100%;
}
.about-wrapper .about-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0A0A0A;
  opacity: 0.4;
}
@media (max-width: 30rem) {
  .about-wrapper {
    flex-direction: column;
  }
}

.contact-heading {
  text-align: center;
  padding: 4rem 0 10rem 0;
}

.contact-us {
  justify-content: space-between;
  padding: 4rem 0 8rem 0;
}
.contact-us .contact-img {
  flex-basis: 60%;
}
.contact-us .contacts {
  flex-basis: 30%;
}
.contact-us .contact {
  list-style: none;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #FAEAE6;
}
.contact-us .contact-social-icon {
  color: #A57B6E;
  font-size: 1.4rem;
  padding-right: 1rem;
}
@media (max-width: 50rem) {
  .contact-us {
    flex-direction: column;
  }
}
