body {
  font-family: "Lato", sans-serif;
  background-color: #a18c6d;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.background-wrapper {
  background-color: #a18c6d;
  padding: 0px 25px;
  min-height: 100vh;
}

header {
  background-color: #4b3b2a;
  color: white;
  padding: 15px 20px;
  text-align: left;
  position: relative;
}

.navbar {
  background-color: #6b5643;
  padding: 5px 0;
}

.navbar-nav {
  font-size: 22px;
}

.nav-link {
  color: #f3f0e6 !important;
  font-weight: bold;
  padding: 6px 12px !important;
}

.nav-link:hover {
  background-color: white !important;
  color: black !important;
}

.dropdown-menu {
  background-color: #8a6f5a !important;
  border: none !important;
}

.dropdown-item {
  color: #f3f0e6 !important;
  font-size: 20px;
  padding: 8px 20px;
}

.dropdown-item:hover {
  background-color: #4b3b2a !important;
  color: white !important;
}

.video-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  nav ul {
    font-size: 18px;
  }

  .submenu {
    font-size: 16px;
  }

  .container {
    padding: 0 15px;
  }
}

@media screen and (max-width: 768px) {
  nav {
    padding: 5px 10px;
  }

  nav ul {
    flex-direction: column;
    font-size: 16px;
  }

  nav li {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .submenu {
    position: static;
    width: 100%;
    display: none;
  }

  nav li:hover .submenu {
    display: block;
  }

  .bg-white {
    padding: 20px !important;
  }

  h1 {
    font-size: 24px;
  }
}

@media screen and (max-width: 576px) {
  header {
    padding: 10px;
  }

  header h1 {
    font-size: 20px;
  }

  nav ul {
    font-size: 14px;
  }

  .submenu {
    font-size: 14px;
  }

  .background-wrapper {
    padding: 0 10px;
  }

  .bg-white {
    padding: 15px !important;
  }

  .alert {
    padding: 10px;
    font-size: 14px;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #nav-menu {
    display: none;
  }

  #nav-menu.active {
    display: flex;
  }
}
footer {
  background-color: #4b3b2a;
  color: white;
  text-align: center;
  padding: 30px;
}
