/* Base styles */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Libre Baskerville", serif;
  color: #333;
  background-color: rgba(244, 244, 244, 0.7);
  position: relative;
  overflow-x: hidden;
}

/* Background image container - behind everything */
#background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/images/auctions/robe.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* Header styling */
header {
  background-color: #2e3b4e;
  color: white;
  padding: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Header content layout */
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.header-image {
  max-width: none;
  max-height: none;
  flex-shrink: 0;
  width: 100px !important;
  height: auto !important;
}

.header-content h1 {
  margin: 0;
  font-size: 3rem;
}

/* Navigation */
.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.header-nav ul li {
  display: inline-block;
  margin-right: 15px;
}

.header-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.header-nav ul li a:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* Main content */
main {
  padding: 2rem;
  position: relative;
  z-index: 10;
}

/* Footer */
footer {
  background-color: #2e3b4e;
  color: white;
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 10px;
  }

  .header-image {
    width: 40px;
  }

  .header-content h1 {
    font-size: 2rem;
  }
}
