* {
  box-sizing: border-box;
}
body {
  background-color: #fff4e6;
  font-family: sans-serif;
  color: #4b3832;
}
/* header */
.header {
  background-color: #be9b7b;
  width: 80%;
  padding: 20px;
  display: flex;
  flex-direction: row; /* stack vertically */
  align-items: center;    /* center horizontally */
  justify-content: space-between;
  margin: 0 auto;
}
.headertitle {
  display: inline-block;
}
.warning_icon {
  width: 50px;
  height: 50px;
}
.warning_row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 50px;
}
/* DROP DOWN MENU */
.dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  z-index: 100;
  background-color: #F1E3D3;  /* different color from nav */
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  min-width: 180px;
}
.menu_item:hover .dropdown {
  display: block;
  display: flex;
}
.dropdown .link {
  display: block;              /* full width clickable area */
  padding: 8px 12px;
  color: #854442;
  text-decoration: none;
  border-radius: 3px;
}
.dropdown .link:hover {
  background-color: #F1E3D3;  /* highlight on hover */
  color: #6A1C16;                /* optional: contrast text */
  font-weight: bold;
  font-style: italic;
}
.navigation {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background-color: #be9b7b;
  padding: 10px 0;
  gap: 20px;                  /* spacing between menu items */
}
.menu_item {
  position: relative;
  margin: 0 15px;
}
