body{
    height: 100vh;
    background-color: #DAAD60;
}

a {
    text-decoration: none;
    color:  #7B452A;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #E6DBC9;
  color: #7B452A;
  padding: 0.5rem 2rem;
  width: 100%;
  position: absolute;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-link {
  text-decoration: none;
  color: inherit;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #7B452A;
  text-decoration: none;
}

.nav-item:hover {
  background-color: #DAAD60;
  color: #7B452A;
  transform: translateY(-2px);
}

.nav-item.active {
  background-color: #7B452A;
  color: #E6DBC9;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo2 {
  font-weight: 300;
}

#logoimg {
  width: 60px;
  height: 60px;
}

.mid{
    height: 100vh;
    width: 100vw; 
    display: flex;
    align-items: center;
    justify-content: center;
}


.middle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #E6DBC9;
    border: 5px solid #7B452A;
    border-radius: 15px;
    text-align: center;
    gap: 10px;
}

.button-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.m1, .m2, .m3 {
    background-color: #7B452A;
    color: #E6DBC9;
    padding: 30px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.m1:hover, .m2:hover, .m3:hover {
    background-color: #DAAD60;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-menu {
    gap: 1rem;
  }

  .button-container {
    flex-direction: column;
    gap: 10px;
  }

  .m1, .m2, .m3 {
    width: 100%;
    max-width: 250px;
  }
}