@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Bitter, Helvetica, Arial, sans-serif;
}

html,
body {
  height: 100%;
  background-color: rgb(18, 18, 18);
  color: #000;
  overflow-x: hidden;
}

h2 {
  font-size: 3rem;
}

/*** HAMBURGER STYLES ***/
.hamburger-container {
  height: 50px;
  width: 50px;
  position: absolute;
  position: fixed;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease-in-out;
  z-index: 99999999;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.6rem;
}

.hamburger-container:hover {
  cursor: pointer;
}

.bar {
  background-color: #fff;
  height: 3px;
  width: 30px;
  opacity: 0.8;
  display: block;
  margin: 0 auto;
  border-radius: 3px;
}

.hamburger-container.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-container.active .bar:nth-child(1) {
  width: 40px;
  transform: translateY(12px) rotate(45deg) translateX(0px);
  transition: transform 0.3s;
  background-color: #fff;
}

.hamburger-container.active .bar:nth-child(3) {
  width: 40px;
  transform: translateY(-13px) rotate(-45deg);
  transition: transform 0.3s;
  background-color: #fff;
}

@media screen and (max-width: 600px) {
  .hamburger-container {
    right: 20px;
  }
}

/* MENU EXPANDED STYLES */
.no-scroll {
  overflow: hidden;
}

.menu-expanded {
  opacity: 0;
  height: 100vh;
  background-image: url("images/about-background-brighter.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -111;
  transition: opacity 0.3s ease-in-out;
}

.menu-expanded img {
  width: 25%;
}

.menu-expanded.active {
  z-index: 9999999;
  opacity: 1;
}

.menu-expanded ul {
  margin-top: 90px;
  text-align: center;
  color: #fff;
}

.menu-expanded ul li {
  list-style: none;
  margin: 6px;
  font-weight: 600;
}

.menu-expanded ul li a {
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
}

.menu-expanded ul li a:hover {
  cursor: pointer;
  color: #959595;
  transition: 0.3s ease-in;
}

.expanded-menu-title {
  font-size: 2.5rem;
  font-weight: 400;
}

/*** HEADER STYLES ***/
.header-section {
  background-image: url("images/01.jpg");
  background-color: rgba(0, 0, 0, 1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
  transition: 5s;

  animation-name: animate;
  animation-direction: alternate-reverse;
  animation-duration: 30s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
}

@keyframes animate {
  0% {
    background-image: url("images/01.jpg");
  }

  25% {
    background-image: url("images/02.jpg");
  }

  50% {
    background-image: url("images/03.jpg");
  }

  75% {
    background-image: url("images/04.jpg");
  }
}

.header-section img {
  width: 70%;
}

.top-left-social-icons {
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
}

.top-left-social-icons div {
  padding-right: 12px;
}

.top-left-social-icons i {
  color: #000;
  opacity: 0.8;
  font-size: 36px;
  margin: 0px 12px;
}

.menu-social-icons {
  color: #000;
  font-size: 26px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.menu-social-icons i {
  color: #fff;
  font-size: 26px;
  margin: 20px 8px;
}

.top-left-social-icons i:hover,
.menu-social-icons i:hover {
  cursor: pointer;
  filter: brightness(75%);
  transition: 0.3s ease-in-out;
}

/* .logo {
  visibility: hidden;
} */
.logo {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}

.logo h1 {
  color: #ffffff;
}

.header-content img {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .logo {
    top: 45% !important;
  }

  .header-section {
    background-attachment: scroll;
  }

  .header-section img {
    width: 90%;
  }

  .menu-expanded img {
    width: 250px;
  }

  .top-left-social-icons {
    visibility: hidden;
  }

  .logo {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: visible;
  }

  .logo p {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .logo h1 {
    z-index: 55;
    animation: logoFadeIn 1.2s linear;
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 2.3rem;
  }

  .mobile-logo {
    margin-bottom: 2rem;
  }
}

/* LATEST NEWS */
#services-section {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f5f5;
  padding-bottom: 20px;
}

#latest-news-card h2 {
  font-size: 1.8rem;
  margin-top: 20px;
}

.latest-news-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: 30px;
  padding: 1rem;
}

.latest-news-card {
  border-radius: 1rem;
  padding: 20px;
  flex-grow: 0;
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #e2e2e2;
}

.latest-news-card img {
  width: 100%;
  border-radius: 0.6rem;
}

.latest-news-card {
  border: 1px solid rgb(246, 246, 246);
}

.latest-news-card h3 {
  font-size: 2rem;
}

.latest-news-card p {
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif;
}

.latest-news-card ul {
  padding-left: 0;
}

.latest-news-card ul li {
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  list-style-position: outside;
  margin-left: 1.2rem;
}

@media screen and (max-width: 768px) {
  .latest-news-card {
    flex-basis: 100%;
  }

  h2 {
    font-size: 4rem;
  }
}

@media screen and (max-width: 600px) {
  #services-section {
    background-attachment: scroll;
  }
}

/* OBSERVER STYLES */

.fade-in {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.fade-in.show {
  opacity: 1;
}

.fade-in-2 {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.fade-in-2.show {
  opacity: 1;
}

.fade-in-3 {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.fade-in-3.show {
  opacity: 1;
}

/*** ABOUT SECTION ***/
#about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("images/about-background-brighter.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #e2e2e2;
  font-size: 1.6rem;
  padding: 6rem 4rem;
}

.band-text {
  line-height: 1.6;
  font-family: "Source Sans 3", Helvetica, Arial, sans-serif;
}

@media screen and (max-width: 600px) {
  #about-section {
    background-attachment: scroll;
    padding: 4rem 1rem;
  }

  #about-section h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

/*** CONTACT STYLES ***/
footer {
  color: #fff;
}

.footer-logo {
  width: 250px;
}

.contact-container {
  background-color: rgb(18, 18, 18);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-container p {
  font-size: 1.2rem;
}

.contact-container h2 {
  margin-top: 30px;
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
  padding: 40px;
}

.contact-container form input,
.contact-container form textarea {
  padding: 1rem;
  border-radius: 1rem;
  border: none;
  margin-top: 0.5rem;
}

.contact-container form button {
  width: 150px;
  display: block;
  margin: 0 auto;
  background-color: transparent;
  color: #fff;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #fff;
  text-transform: uppercase;
  border-radius: 1rem;
}

.label-input-container {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .contact-container form {
    width: 100%;
  }

  .contact-container h2 {
    font-size: 4rem;
  }

  .contact-container p {
    margin: 1rem;
    text-align: center;
  }
}

/*** FOOTER ***/
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
  font-size: 0.7rem;
}

footer h3 {
  font-weight: 300;
  font-size: 2.2rem;
}

footer img {
  width: 200px;
}

.social-icons i {
  color: #fff;
  font-size: 26px;
  margin: 0 8px;
}

.credit a {
  text-decoration: none;
  color: #fff;
}

.copyright-container {
  text-align: center;
}
