html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

.home-page-header {
  width: 100vw;
}

img {
  max-width: 100%;
}

.header-address-bar {
  background-color: rgba(0, 0, 0);
  height: 30px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;

  z-index: 1000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.header-address {
  color: wheat;
  font-size: clamp(0.7rem, 1.4vw, 1.6rem);
}

.fa-brands {
  color: wheat;
  z-index: 1000;
}

.social-media {
  display: flex;
  justify-content: center;
  margin-left: auto;
  align-items: center;
  margin-right: 2rem;
  gap: clamp(1rem, 1vw, 2.5rem);

  font-size: clamp(0.7rem, 1.5vw, 1.6rem);
}

.social-media > * {
  transition: 0.4s ease both;
}

.fa-facebook:hover,
.fa-instagram:hover,
.fa-twitter:hover {
  opacity: 0.8;
  transform: translateY(3px);
  color: lightcyan;
}

.menu-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 8px;
  transition: 0.75s;
  cursor: pointer;
  font-size: 1.5rem;
  color: lightblue;

  z-index: 1000;
}

.menu-btn:hover {
  transform: rotate(360deg);
  color: gold;
}

.openMenuBtn {
  margin-right: 2rem;
  background-color: transparent;
  border: none;
}

.closeMenuBtn {
  display: none;
  margin-right: 2rem;
  background-color: transparent;
  border: none;
}

nav {
  margin-top: -100%;
  transition: 1s;
  position: fixed;

  z-index: 999;
}

.linksContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin-top: 2rem;
  padding: 4rem 0 2rem 0;

  width: 100vw;

  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);

  gap: 15px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  z-index: 999;
}

.linksContainer a {
  text-decoration: none;
  color: white;
  transition: all 0.75s;
}

.linksContainer a:hover {
  color: orange;
  transform: translateY(10px);
  padding: 2px;
}

.linksContainer .active-page {
  text-decoration: underline;
  color: blue;
}

.linksContainer .active-page:hover {
  text-decoration: underline;
  color: blue;
  transform: translateY(0);
}

/* Main section -----------------------------------------------------------------------------*/

.events-main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;

  background: linear-gradient(90deg, rgb(0, 0, 100), rgb(100, 100, 100));
}

.restaurant-name {
  justify-content: center;
  align-items: center;

  width: max-content;

  margin-top: 2rem;
  margin-bottom: 1rem;

  font-family: tangerine, sans-serif;
  font-size: clamp(4.5rem, 9vw, 10rem);
  /* text-shadow: -3px 3px 3px blue; */
  color: white;

  position: relative;
  animation: gallery-header-appear 2s both 200ms;

  max-width: 90%;
}

.restaurant-name::after {
  content: "";
  background: linear-gradient(45deg, white, blue);

  bottom: 0;
  left: 0;

  position: absolute;

  height: 1.8px;
  width: 100%;

  border-radius: 50%;

  animation: about-header-appear 2s both 800ms;
}

@keyframes gallery-header-appear {
  from {
    opacity: 0;
    scale: 0;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.main-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  border: 1px solid brown;
  padding-bottom: 15px;
  width: 80%;
  height: fit-content;
  border-radius: 15px;
  background-color: wheat;

  animation: gallery-header-appear 2.5s ease-in-out both 1s;
}

.catering-card {
  width: 50%;

  padding: 20px 15px 0 15px;
  margin-left: 3rem;
  padding-bottom: 2rem;

  border-radius: 15px;
  text-align: center;
}

.card-text {
  width: 45%;
  padding: 20px 5px 0 5px;
  text-align: center;
}

.event-pic {
  border-radius: 15px;
  box-shadow: 2px 2px 20px;
  transition: all 1s;
}
/* Break points */

@media (max-width: 750px) {
  .main-card {
    flex-direction: column;
  }
  .card-text {
    width: 90%;
    text-align: center;
  }
  .catering-card {
    width: 95%;
    padding: 0;
    margin: 0;
  }
  .main-card {
    width: 95%;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 800px) and (orientation: landscape) {
  .events-main {
    height: 150vh;
  }
}
