.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem;
  transition: all 0.3s ease;
  background-color: transparent;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 100vw;
}

.navbar.scrolled {
  background: var(--color-background);
  box-shadow: 0 2px 10px rgba(91, 66, 51, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  display: none;
  width: 100%;
}

.menu-left,
.menu-right {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-container.menu-open .nav-menu {
  display: flex;
  flex-direction: column;
  background: var(--color-background);
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(91, 66, 51, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.nav-container.menu-open .menu-left {
  border-bottom: 1px solid rgba(91, 66, 51, 0.1);
}

.nav-container.menu-open .menu-right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.logo {
  font-family: "Boska", serif;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.nav-link {
  color: var(--color-primary);
  padding: 0.75rem;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
  background: rgba(91, 66, 51, 0.05);
  color: var(--color-secondary);
}

.scrolled .nav-link,
.scrolled .logo {
  color: var(--color-primary);
}

.scrolled .mobile-menu-button {
  color: var(--color-primary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 50px;  
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-section {
  text-align: center;
  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.social-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 1rem;

  i {
    font-size: 1.5rem;
  }
}

.footer-logo {
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(91, 66, 51, 0.5);
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-logo .logo img {
  height: 80px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(91, 66, 51, 0.5);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0.5rem 0;
}

footer {
  background: var(--color-background);
  padding: 50px 20px 50px 20px;
}

.footer-section h3 {
  font-family: "Boska", serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.footer-section a {
  color: var(--color-text);
  display: block;
}

.footer-section p {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

.footer-section.social .social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section.social .social-links a {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.footer-section.map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  display: block;
}

.business-name {
  font-weight: bold;
  color: var(--color-primary);
}

.footer-section .address {
  margin-block: 1rem;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;

  & a {
    width: fit-content;
  }

  & a i {
    margin-right: 0.5rem;
  }
}

@media screen and (min-width: 992px) {
  
  .navbar {
    padding: 2rem;
  }

  .mobile-menu-button {
    display: none;
  }

  .nav-container {
    flex-wrap: nowrap;
    position: relative;
  }

  .logo-container {
    width: auto;
    position: absolute;
    left: 0;
  }

  .footer-bottom {
    text-align: start;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .menu-left,
  .menu-right {
    display: flex;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    width: auto;
  }

  .menu-left {
    gap: 2rem;
    border-bottom: none;
    justify-content: center;
  }

  .menu-right {
    position: absolute;
    right: 0;
  }

  .nav-link {
    color: white;
    padding: 0;
    width: auto;
    text-align: left;
  }

  .nav-link:hover {
    background: none;
    color: var(--color-secondary);
  }

  .footer-sections {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-section {
    flex: 1;
  }

  .contact-info {
    align-items: start;
  }

  .social-icons {
    justify-content: start;

    i {
      font-size: 1.25rem;
    }
  }

  footer {
    padding: 50px 20px 20px 20px;
  }
}