header {
  background: #f1f1f8;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.header-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.header-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.location-image {
  text-align: center;
  margin: 1.5rem 0;
}

.location-image img {
  max-width: 300px;
  width: 80%;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icons i {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: black;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.icons i:hover {
  background-color: rebeccapurple;
  color: white;
}

.datetime {
  background-color: #f9f9ff;
  border-left: 6px solid rebeccapurple;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.datetime-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.datetime i {
  font-size: 22px;
  margin-right: 10px;
  color: rebeccapurple;
}

body.dark header {
  background-color: #1f1f1f;
}

body.dark nav a {
  color: #f0f0f0;
}

body.dark .icons i {
  background-color: #2a2a2a;
  color: #f0f0f0;
}

body.dark .icons i:hover {
  background-color: rebeccapurple;
  color: white;
}

body.dark .datetime {
  background-color: #1e1e1e;
  border-left-color: rebeccapurple;
  color: #f0f0f0;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
}