@import url("https://fonts.googleapis.com/css2?family=Quicksand&family=Oxanium:wght@200..800&display=swap");

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

body {
  font-family: Arial, sans-serif;
}

.logo-bar {
  background-color: rgb(34, 34, 34);
  color: #fff;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.logo-bar img {
  z-index: 5;
  width: 500px;
  animation: logoFadeIn 1.2s linear;
}

.logo-bar-social-icons {
  position: absolute;
  top: 30px;
  left: 30px;
}

.logo-bar-social-icons i {
  color: #ffffff;
  font-size: 26px;
  margin: 0 8px;
  transition: transform 0.5s;
}

.logo-bar-social-icons i:hover {
  color: rgb(228, 228, 228);
  transform: translateY(-5px);
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Navbar Styles */
.navbar {
  background-color: rgb(34, 34, 34);
  color: white;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  text-transform: uppercase;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  padding: 0.5rem;
  display: block;
}

.navbar ul li:hover > ul {
  display: block;
  text-transform: none;
}

/* Dropdown Menu */
.navbar ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  min-width: 150px;
  z-index: 999;
}

.navbar ul li ul li a {
  padding: 0.5rem 1rem;
}

.navbar ul li ul li a:hover {
  background-color: #555;
}

.nav-mobile-link {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 6px;
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(1) {
  transform: translateY(6px) rotate(45deg) translateX(0px);
  transition: transform 0.3s;
  background-color: #fff;
}

.hamburger.active div:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  transition: transform 0.3s;
  background-color: #fff;
}

/* Footer Styles */

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem;
  background-color: rgb(34, 34, 34);
  color: #fff;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
}

.footer-box {
  flex: 1;
}

.footer-box.left,
.footer-box.right {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.footer-box.right a {
  color: #000;
  text-decoration: none;
  transition: ease-in-out 0.3s;
  background-color: rgb(230, 230, 230);
  width: 70%;
  padding: 1rem;
  text-align: center;
  transition: background-color 0.3 ease-in-out;
}

.footer-box.right a:hover {
  cursor: pointer !important;
  color: #fff;
  background-color: #555;
}

.footer-logo {
  width: 50%;
}

.copyright {
  font-size: 0.7rem;
}

.map {
  width: 100%;
}

.menu-social-icons {
  width: 100%;
  display: none;
  font-size: 26px;
}

.menu-social-icons i {
  color: #ffffff;
  font-size: 26px;
  margin: 12px 8px;
}

.studio {
  margin-bottom: 8px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Nav Bar Mobile Styles */
  .logo-bar {
    background-color: rgb(34, 34, 34);
    color: #fff;
    padding: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-bar img {
    width: 250px;
  }

  .logo-bar-social-icons {
    display: none;
  }

  .navbar {
    background-color: transparent;
    padding: 0;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    width: 100%;
    padding: 10px;
  }

  .navbar ul.show {
    display: flex;
    z-index: 55;
  }

  .hamburger {
    display: flex;
  }

  .navbar ul li ul {
    position: static;
  }

  .navbar ul li:hover > ul {
    display: none;
  }

  .navbar ul li.active > ul {
    display: block;
  }

  .nav-mobile-link {
    display: block;
  }

  /* Footer Mobile Styles */
  .footer-container {
    flex-direction: column-reverse;
    width: 100%;
  }

  .footer-box.left {
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
  }

  .map iframe {
    width: 100%;
  }

  .menu-social-icons {
    display: flex;
    justify-content: center;
  }

  .footer-box.right {
    display: none;
  }

  .studio {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
  }

  .copyright {
    margin-top: 10px;
  }
}
