body {
            margin: 0;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

header {
            background-color: #c6736a;
            color: white;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

header img {
            height: 50px;
        }

menu {
            background-color: #f5f5f5;
            padding: 1rem;
            color: #c6736a;
            /* position: fixed; */
            width: 100%; 
            display: flex;
            align-itmes: center; 
            justify-content: space-between; 
} 

menu ul {
  list-style: none;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.menu ul li {
  position: relative;
}

.menu ul li a {
  display: block;
  padding: 0.75rem;
  color: #c6736a;
  text-decoration: none;
}

.menu ul li:hover {
  background-color: #f1f1f1; 
  
}
.menu a:hover {
  color: #777;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  color: #777
  background-color: #c6736a;
  min-width: 160px;
  z-index: 1000;
}

.submenu li a {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu ul li:hover .submenu {
  display: block;
}




main {
            padding: 2rem;
            text-align: center;
	    /* position: fixed; */
        }

h1 {
            color: #c6736a;
        }

p {
            max-width: 600px;
            margin: 1rem auto;
            font-size: 1.1rem;
        }

.login-button {
            background-color: #c6736a;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
        }

.login-button:hover {
            background-color: #777777;
        }

footer {
            background-color: #eee;
            padding: 1rem;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            position: fixed;
            width: 100%;
            bottom: 0;
 }

@media (max-width: 600px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

.language-bar {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px;
}

.language-bar img {
  width: 16px;
  height:16px;
  cursor: pointer;
}

.menu  img {
  width: 60px;
  height:60px;
  cursor: pointer;
}
.user-menu {
    position: relative;
    /* top: 10px;*/
    right: 100px; 
}

.user-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
}

.dropdown-content {
    display: none;
    position: absolute;
    /*right: 0;*/
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 6px;
}

.dropdown-content a {
    color: black;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}
