@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

:root {
  --color1: #0669bf;
  --color2: #0477bf;
  --color3: #0c9af2;
  --color4: #5ebaf2;
  --color5: #99d9f2;
  --header-font-size: 40px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
}

a {
  text-decoration: none;
}

body {
  font-size: 16px;
  line-height: 1.5;
  color: black;
  background: white;
  -webkit-tap-highlight-color: transparent;
}

html ::-webkit-scrollbar {
  width: 16px;
}

html ::-webkit-scrollbar-track {
  background: var(--color5);
}

html ::-webkit-scrollbar-thumb {
  background: var(--color2);
  border-radius: 5px;
}

html ::-webkit-scrollbar-thumb:active {
  background-color: var(--color1);
}

/* global container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  background-color: var(--color1);
  color: white;
  z-index: 1;
  /* height: 64px; */
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* .brand-title */
nav .container h1 {
  height: 35px;
}

nav .container .nav-links {
  display: flex;
}

nav .container .nav-links li {
  margin: 0 10px;
  font-size: 16px;
  list-style: none;
}

nav .container .nav-links li:hover {
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0.297);
}

nav .container .nav-links li a {
  text-decoration: none;
  color: white;
  padding: 14px;
  display: block;
}

/* hamburger */
.toggle-button {
  position: absolute;
  top: -5px;
  right: 16px;
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.toggle-button.open-close i {
  transition: 0.3s ease-in-out;
  transform: rotate(180deg);
}

.active {
  border-bottom: 1px solid white;
}

/* Hero */
header {
  position: relative;
  overflow-x: hidden;
}

header>div {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: rgb(0, 0, 0);
}

/* PLATASTIC */
header>.hero-banner {
  background-color: rgba(0, 0, 0, 0.395);
  padding: 10px 50px;
  font-size: 100px;
}

header>.hero-banner>h2 {
  font-size: 28px;
  color: rgb(255, 255, 255);
}

/* HERO */
header .hero-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

header>.hero-banner>button {
  background-color: white;
  padding: 10px;
  min-width: 50%;
}

header>.hero-banner>button:hover {
  box-shadow: 2.5px 5px;
  color: white;
  background-color: black;
  transition: all 0.5s;
  cursor: pointer;
}

/* About-US Section */
.about-us__text .container {
  padding: 50px;
}

.about-us__paragraph h2 {
  font-size: var(--header-font-size);
}

.about-us__img {
  width: 50%;
  height: 3var (--header-font-size);
  object-fit: cover;
  background-color: black;
  border-radius: 5px;
}

@media (min-width: 40em) {

  /* Cards Section */
  .cards .container {
    display: flex;
    justify-content: space-between;
  }

  .cards .container .card {
    margin-top: 0;
  }

  .about-us__text .container {
    display: flex;
  }

  header>.hero-banner>h2 {
    font-size: 64px;
    color: rgb(255, 255, 255);
  }

  .about-us__paragraph {
    width: 50%;
    padding-right: 20px;
  }
}

/* Cards section */
.cards {
  background-color: var(--color5);
}

.cards>h2 {
  text-align: center;
  padding-top: 50px;
  font-size: var(--header-font-size);
}

.cards .container {
  padding: 50px;
  display: flex;
  justify-content: center;
}

.cards .container .card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 5px 10px;
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.367);
  margin-top: var(--header-font-size);
}

.cards .container .card h2 {
  text-align: center;
}

.cards .container .card p {
  padding-top: 10px;
  text-align: center;
}

.cards .container .card .cirkel {
  position: absolute;
  height: 50px;
  width: 50px;
  background-color: black;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cards .container .card:hover {
  transition: all 1s;
}

/* Gallery Section */
.img-grid>.container {
  padding: 20px 20px;
}

.img-grid>.container>h2 {
  text-align: center;
  font-size: var(--header-font-size);
}

.img-grid>.container>.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 50px;
}

.img-grid>.container>.wrapper>img {
  width: 100%;
  cursor: pointer;
  padding: 5px;
  background-color: black;
}

/* CONTACT-SECTION */
.contact-section {
  background-color: var(--color5);
  padding: 20px 0;
}

.contact-section>.container>h2 {
  font-size: var(--header-font-size);
  text-align: center;
}

.contact-section .container>.flex-wrapper {
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
}

.contact-section .container>.flex-wrapper>.location,
.contact-section .container>.flex-wrapper>.phone,
.contact-section .container>.flex-wrapper>.email {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 10px;
}

.contact-section .container>.flex-wrapper>.location .icon,
.contact-section .container>.flex-wrapper>.phone .icon,
.contact-section .container>.flex-wrapper>.email .icon {
  /* position: relative; */
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--color2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .container>.flex-wrapper>.location .icon i,
.contact-section .container>.flex-wrapper>.phone .icon i,
.contact-section .container>.flex-wrapper>.email .icon i {
  font-size: 35px;
  padding: 15px;
}

.contact-section .container>.flex-wrapper>.location a,
.contact-section .container>.flex-wrapper>.phone a,
.contact-section .container>.flex-wrapper>.email a {
  border: 2px solid;
  padding: 5px 10px;
  color: black;
  background-color: rgb(255, 255, 255);
}

@media (max-width: 40em) {
  .toggle-button {
    display: block;
  }

  nav .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav .container .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
  }

  nav .container .nav-links li {
    text-align: center;
  }

  nav .container .nav-links li a {
    padding: 0.5rem 1rem;
  }

  nav .container .nav-links.openMenu {
    display: flex;
  }

  /* contact-links Section */
  .contact-links .container {
    display: grid;
    grid-template-columns: 50% 50%;
  }

  .about-us__img {
    width: 100%;
  }

  .about-us__paragraph {
    padding-bottom: 20px;
  }

  header h2 {
    font-size: 50px;
  }

  .img-grid>.container>.wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-section .container>.flex-wrapper>.location p,
  .contact-section .container>.flex-wrapper>.phone p,
  .contact-section .container>.flex-wrapper>.email p {
    display: none;
  }

  .contact-section .container>.flex-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/* Flying Fixed Action Button */
.action {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.367);
}

.action a {
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  transition: 0.2s ease-in-out;
  color: var(--color3);
  text-decoration: none;
}

footer {
  background-color: black;
}

/* Footer Section */
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .container .copyright-text {
  color: rgb(225, 225, 225);
  padding: 5px 0;
}

footer .container .copyright-text span {
  color: rgb(225, 225, 225);
  font-style: italic;
}