body {
  font-family: "Lato", sans-serif;
  background-color: #a18c6d;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #4b3b2a;
  color: white;
  padding: 15px 20px;
  text-align: left;
  position: relative;
}

.navbar {
  background-color: #6b5643;
  padding: 5px 0;
  margin: 0;
}

.container-fluid {
  padding-left: 0;
}

.navbar-nav {
  font-size: 22px;
  margin-left: 15px;
}

.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;
  border: none;
}

.dropdown-item {
  color: #f3f0e6;
  font-size: 20px;
  padding: 8px 20px;
}

.dropdown-item:hover {
  background-color: #4b3b2a;
  color: white;
}

.user-info {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
}

.user-dropdown {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
  position: relative;
}

.user-dropdown:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #6b5643;
  min-width: 160px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: 5px;
  z-index: 10;
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #4b3b2a;
}

footer {
  background-color: #4b3b2a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: auto;
}

.footer-contact {
  text-align: center;
}

/* Video Layout */
.video-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px;
}

.side-videos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-video {
  width: 250px;
  height: 265px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.main-video {
  position: relative;
}

.fullscreen-video {
  width: 970px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

#soundToggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#soundToggle:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

#soundIcon {
  font-size: 18px;
}

#username {
  margin-right: 8px;
}

/* Media Queries */
@media (max-width: 1200px) {
  .fullscreen-video {
    width: 800px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    font-size: 18px;
  }

  .fullscreen-video {
    width: 600px;
  }

  .side-video {
    width: 200px;
    height: 212px;
  }
}

@media (max-width: 767.98px) {
  .video-layout {
    flex-direction: column;
  }

  .side-videos {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .side-video {
    width: 100%;
    height: 200px;
  }

  .main-video {
    width: 100%;
  }

  .fullscreen-video {
    width: 100%;
  }

  .user-info {
    top: 5px;
    right: 10px;
  }
}

@media (max-width: 575.98px) {
  .side-video {
    height: 150px;
  }

  .fullscreen-video {
    height: 250px;
  }

  header h1 {
    font-size: 24px;
  }
}
