body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #f5f5f5;
}

/* Topbar */
.topbar {
  background-color: #b8860b;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.topbar h1 {
  margin: 0;
  font-size: 1.5rem;
}

.openbtn {
  font-size: 1.2rem;
  background-color: #333;
  color: gold;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
}

.openbtn:hover {
  background-color: #444;
}

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #222;
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 60px;
}

.sidebar a {
  padding: 12px 24px;
  text-decoration: none;
  font-size: 18px;
  color: gold;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  background-color: #333;
}

.sidebar .closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  color: gold;
  cursor: pointer;
}

.eurp {
    color: white;
    text-decoration: none;
}

.header {
  background-color: #E0AA3E;   /* gold padding color */
  padding: 15px; 
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important; /* padding around image */         /* use flexbox to center *  /* horizontal centering */   /* optional: rounded corners */
  margin: 0px auto !important; 
}

.header img {
  height: 350px;            /* fixed height */
  width: auto;              /* adjusts width to keep proportions */
  display: block;           /* removes inline gaps */
  border-radius: 8px;       /* smooth corners */
}



/* Content */
.content {
  padding: 20px;
}

.content h2 {
  color: gold;
}

/* Image slots */
.image-grid {
  display: flex;
  flex-direction: column;   /* stack items vertically */
  align-items: center;      /* center them horizontally */
  gap: 20px;                /* spacing between slots */
  margin-top: 20px;
}

.image-slot {
  background-color: #1a1a1a;
  border: 2px solid gold;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 80%;               /* keep them consistent */
  max-width: 500px;         /* prevent them from being too wide */
}

.image-slot h3 {
  margin: 10px 0;
  color: gold;
}

.image-slot p {
  font-size: 0.9rem;
  color: #ccc;
}


html, body {
  height: 100%;
  margin: 0;
  
}


/* Main content expands to fill space */
.content {
  flex: 1;
  padding: 20px;
}

/* Footer sits at the bottom, no overlap */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}

