:root {
  --primary: #b6895b;
  --bg: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Playfair Display", "Noto Sans Japanese";
  background-color: var(--bg);
  color: #010101;
  /* min-height: 3000px; */
}

/* navbar */
.navbar {
  font-family: "playfair", "noto";
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(1, 1, 1, 0.8);
  border-bottom: 1px solid #a79292;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
  color: var(--primary);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding: 0.5rem;
  border-bottom: 0.1rem solid var(--primary);
  transform: scaleX(0);
  transition: 0.2s linear;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(1);
}

.navbar .navbar-extra a {
  color: #fff;
  margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu {
  display: none;
}

/* hero section */
.hero {
  font-family: "playfair", "Noto Sans Japanese";
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/kuba\ adventure.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgb(255, 255, 255) 2%,
    rgba(245, 244, 244, 0) 50%
  );
} */

.hero .content {
  padding: 2rem 7%;
  max-width: 60rem;
  margin-top: 12rem;
}

.hero .content h1 {
  font-size: 5rem;
  color: #fff;
  text-shadow: 10px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}

.hero .content h1 span {
  color: var(--primary);
}

.hero .content p {
  font-size: 1.6rem;
  margin-top: 1rem;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.hero .content p span {
  color: #010101;
  mix-blend-mode: hard-light;
  font-family: "Noto Sans Japanese";
}

.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 1rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 1, 0.8);
}

/* about section */
.about {
  padding-top: 6rem;
}

.about h2,
.menu h2,
.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
  background-color: var(--primary);
  /* border-radius: 20px; */
}

.about h2 span,
.menu h2 span {
  color: white;
}

.about .row {
  display: flex;
}

.about .row img {
  flex: 1 1 45rem;
  /* border-radius: 20px; */
}

.about .row img {
  width: 100%;
}

.about .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
  margin-top: 20px;
}

.about .content h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about .content p {
  /* padding: 1rem 7% 1.4rem;
  font-family: "playfair";
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 25px;
  font-weight: 500; */
  text-align: justify;
  max-width: 45rem;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #050505;
}

/* menu section */
.menu {
  padding-top: 6rem;
}

.menu h2 {
  margin-bottom: 1rem;
}

.menu p {
  text-align: center;
  max-width: 30rem;
  margin: auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
}

.menu .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  justify-content: center;
}

.menu .row .menu-card {
  text-align: center;
  padding-bottom: 4rem;
}

.menu .row .menu-card img {
  /* border-radius: 50%; */
  width: 80%;
  margin-top: 0.5px;
}

.menu .row .menu-card .menu-card-title {
  margin: 1rem auto 0.5rem;
}
/* contact section */
.contact p {
  text-align: center;
  max-width: 30rem;
  margin: auto;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #050505;
}
/* contact section */

.contact .row {
  display: flex;

  margin-top: 2rem;
  background-color: #222;
  flex: wrap;
}

.contact .row .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}
/* buuton */
.container-map {
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.map {
  border: 5px solid rgba(1, 1, 3, 0.5);
  margin: auto;
}
/* Footer */
footer {
  background-color: var(--primary);
  text-align: center;
  padding: 1rem 0 3rem;
  margin-top: 3rem;
}

footer .socials {
  padding: 1rem 0;
}

footer .socials a {
  color: #fff;
  margin: 1rem;
}

footer .socials a:hover,
footer .links a:hover {
  color: var(--bg);
}

footer .links {
  margin-bottom: 1.4rem;
}

footer .links a {
  color: #fff;
  padding: 0.7rem 1rem;
}

footer .credit {
  font-size: 0.8rem;
}

footer .credit a {
  color: var(--bg);
  font-weight: 700;
}

/* news section */

/* media queries */

/* laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: rgba(1, 1, 1, 0.8);
    width: 30rem;
    height: 100vh;
    transition: 0.3s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    padding: 8px;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }
  .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.2);
  }

  .about {
    flex-wrap: wrap;
  }
  .about img {
    object-fit: cover;
    object-position: center;
  }
  .about .content {
    padding: 0;
  }
  .about .content h3 {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

/* tablet */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
  .about .content p {
    padding: 1rem 7% 1.4rem;
    font-family: "playfair";
    text-align: justify;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
}

/* mobile */
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
}
