/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}
.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #111;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}
@-webkit-keyframes animateright {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
@keyframes animateright {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
}
.logo {
  display: flex;
  /* font-family: "DM Serif Text", serif;
  font-weight: bold;
  font-size: 1.5rem; */
}
.nav-links {
  display: none;
}
.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000;
}
.nav-links .contact {
  font-weight: bold;
}
.burger_menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 20px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}

/* Mobile menu */
.menu-modal {
  display: none;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.mobile-menu {
  background-color: #fefefe;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animateright;
  -webkit-animation-duration: 0.4s;
  animation-name: animateright;
  animation-duration: 0.4s;
}
.mobile-menu h2 {
  text-align: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 1.5rem;
}
.mobile-menu nav a {
  padding: 0.5rem;
}
.closeBtn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 425px) {
  .navbar .container {
    padding: 0 2rem;
  }
  .mobile-menu {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .burger_menu {
    display: none;
  }
  .nav-links {
    display: flex;
    align-items: end;
    justify-content: end;
    flex-wrap: wrap;
  }
}

/* Footer */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.footer a {
  color: #fff;
  margin: 0 1rem;
}