:root {
  --title: "Cinzel Decorative", serif;
  --heading1: "Literata", serif;
  --heading2: "Marcellus", serif;
  --body: "Maitree", serif;
  --primary: #202a44;
  --secondary: #ced6e3;
}

/* --------------------------- Fonts --------------------------- */

h1 {
  font-family: var(--title);
}

h2 {
  font-family: var(--heading1);
  font-size: 2.3rem;
}

h3 {
  font-family: var(--heading2);
  font-size: 2.25rem;
}

h5 {
  font-family: var(--heading1);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

h6 {
  font-family: var(--body);
  font-size: 1rem;
}

/* --------------------------- Custom --------------------------- */

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  height: 40%;
}

.location-bg {
  background-image: url("assets/images/background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.custom-block1 {
  background-color: rgba(32, 42, 68, 0.95);
  top: -60px;
  max-width: 500px;
}

.custom-block2 {
  background-color: rgba(32, 42, 68, 0.95);
  max-width: 600px;
}

.bg-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.solid-overlay {
  background: rgba(0, 0, 0, 0.6);
}

/* --------------------------- Header --------------------------- */

.menu {
  position: fixed;
  font-family: var(--heading1);
  font-size: 1.3rem;
  display: none;
  z-index: 1;
  background-color: #1e1e1e;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at 100% 0%);
  transition: clip-path 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

.icon-menu {
  z-index: 20;
  display: none;
  cursor: pointer;
}

.menu.show {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at 100% 0%);
}

#navbar {
  width: 100%;
  z-index: 10;
  position: fixed;
  padding-top: 60px;
  transition: 0.3s ease;
}

#navbar ul li a {
  text-decoration: none;
  color: white;
}

#navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.middle-line {
  border-right: 1.5px solid white;
}

/* --------------------------- Tablet device --------------------------- */

@media only screen and (max-width: 992px) {
  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h5 {
    font-size: 1.4rem;
  }

  h6 {
    font-size: 0.95rem;
  }

  #navbar {
    padding-top: 10px;
  }

  #navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
  }

  .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .icon-menu {
    display: block;
  }
}

/* --------------------------- Mobile device --------------------------- */

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h5 {
    font-size: 1.4rem;
  }

  h6 {
    font-size: 0.95rem;
  }

  .section-custom {
    padding: 0 0%;
  }

  #navbar {
    padding-top: 10px;
  }

  #navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
