@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

@font-face {
  font-family: Neue Montreal;
  src: url(../fonts/NeueMontreal-Regular.otf);
}

:root {
  --yellow: #ffc000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding: 73px;
  scroll-behavior: smooth;
}

body {
  font-family: "Klarheit Grotesk Regular", sans-serif;
  font-size: 16px;
  cursor: default;
}

header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff90;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 10px 5px #00000060;
}

header .primary-navigation {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

header .primary-navigation .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .primary-navigation .container .logo-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .primary-navigation .container .logo-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-toggle {
  display: none;
}

.primary-navigation .container .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.primary-navigation .container .menu .menu-item {
  height: 100%;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: quicksand, sans-serif !important;
  color: black;
  border-radius: 2px;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}

.primary-navigation .container .menu .menu-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: black;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  transition: 0.3s;
}

.primary-navigation .container .menu .menu-item:hover::after {
  width: 100%;
}

.cta {
  height: 40px;
  width: 120px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: var(--yellow);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  border: none;
  font-family: "Klarheit Grotesk Regular", sans-serif;
  cursor: pointer;
}

@media (max-width: 720px) {
  .primary-navigation {
    padding: 0 5px !important;
  }

  .menu-toggle {
    display: block !important;
    cursor: pointer;
  }

  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: black;
    display: block;
    margin: 4px;
    transition: 0.3s;
    border-radius: 7px;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .primary-navigation .container {
    position: absolute;
    top: 100%;
    left: -1000px;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px) !important;
    overflow-y: scroll;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    background: var(--yellow);
    transition: 0.3s;
  }

  .primary-navigation .container.active {
    left: 0;
  }

  .primary-navigation .container .logo-container {
    width: 100px !important;
    height: 100px !important;
    margin: 10px;
  }

  .primary-navigation .container .logo-container img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    object-position: center;
  }

  .primary-navigation .container .menu {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .primary-navigation .container .menu .menu-item {
    margin: 0 !important;
    padding: 10px;
    width: 100% !important;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 40px !important;
  }

  .primary-navigation .container .menu .menu-item::after {
    display: none;
  }

  .primary-navigation .container .menu .menu-item:hover {
    background: white;
  }
}

/* hero section */
section#hero {
  min-height: 500px;
  background: url("../images/living-room 1.jpg") #00000050;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  color: white;
  padding: 50px 0;
}

h1 {
  font-size: 2.8rem;
  text-align: center;
  margin: auto;
  font-family: Neue Montreal, cursive;
  width: 95%;
  margin: auto;
  max-width: 900px;
}

section#hero .light {
  font-weight: 500;
}

span.material-symbols-outlined {
  font-size: 2rem;
}

section#hero ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 10px auto;
}

section#hero ul li {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 5px;
  height: 70px;
  border-radius: 5px;
  background: #00000020;
  backdrop-filter: blur(10px);
}

section#hero ul li a {
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
}

/* perks */
#perks {
  border-radius: 30px 30px 0 0;
  width: 100%;
  margin-top: -25px;
  background: white;
  padding: 20px;
}

#perks .card-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 699px) {
  #perks .card-container {
    display: grid;
    grid-template-columns: auto;
  }
}

#perks .card-container .card {
  width: 95%;
  min-width: 200px;
  max-width: 300px;
  margin: 10px;
  padding: 15px;
  border-radius: 7px;
  background: var(--yellow);
}

#perks .card-container .card h4 {
  padding: 3px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

/* services */
#services {
  width: 100%;
  background: white;
  padding: 30px;
}

section h2 {
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  margin: 20px;
  font-family: Montserrat, sans-serif;
}

#services h3 {
  font-weight: 500;
  font-family: montserrat, sans-serif;
}

#services .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding: 10px;
}

#services .card {
  text-align: center;
  margin: 5px;
  overflow: hidden;
}

#services .card .image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
}

#services .card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* gallery */
#gallery {
  padding: 30px 0;
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.pictures {
  display: grid;
  grid-template-columns: repeat(3, 33%);
  width: 100%;
  margin: auto;
}

.pictures li {
  aspect-ratio: 1;
  overflow: hidden;
}

.pictures li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 10px;
  cursor: pointer;
}

.button {
  margin: 20px auto;
  background: black;
  height: 35px;
  width: 150px;
  color: var(--yellow);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-family: montserrat, sans-serif;
}

hr {
  width: 100px;
  border: 2px solid var(--yellow);
  margin: auto;
  border-radius: 10px;
}

/* footer */
footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--yellow);
  color: white;
  padding: 20px 0;
}

footer li {
  list-style: none;
  height: 45px;
  width: 100%;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: black;
}

footer li a {
  height: 100%;
  width: 100%;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

footer li a:hover {
  text-decoration: underline;
}

footer li a i {
  height: 40px;
  width: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
  font-size: 1.3rem;
}

footer .footer-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

@media (max-width: 819px) {
  footer .footer-container {
    display: grid !important;
    grid-template-columns: auto;
  }
}

footer .footer-container .col {
  width: 100%;
  max-width: 250px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer img {
  width: 100%;
  background: white;
}

.footer-container .col .image-container,
.footer-container .col ul {
  width: 100%;
}

.copyright {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-top: 1px solid black;
  color: black;
  margin-top: 10px;
  padding: 10px;
}