/*General*/
/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Sticky Navigation Bar */
nav {
  position: sticky;
  top: 0;
  background: #333;
  z-index: 10;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li a {
  display: block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  background: #111;
}

/* Image Section */
.image-container {
  position: relative; /* Needed for absolute text */
}

.image-container img {
  width: 100%;
  display: block;
}

/* Absolute Text (Centered on Image) */
.image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  padding: 15px 20px;
  color: white;
  border-radius: 5px;
  font-size: 1.5rem;
}

/* Section Text */
section {
  padding: 20px;
}

/* Footer (Position: relative) */
footer {
  position: relative;
  background: #eee;
  padding: 10px;
  text-align: center;
  margin-top: 30px;
}

/* Back to Top Button (Fixed) */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #04AA6D;
  color: white;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.back-to-top:hover {
  background: #037f52;
}
