/* Hero Section */
.hero-image {
  position: relative;
  height: 400px;
  background-image: url('Screenshot 2025-03-07 160754.png');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dark overlay for contrast */
.hero-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Text over hero image */
.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 1.5em;
}

.hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .hero-image {
    height: 280px;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.hero-btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #ee9b00;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: #ca6702;
  transform: scale(1.05);
}

/* Global Styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

body {
  display: flex;
  flex-direction: column;
}

header, footer {
  background: #0a9396;
  color: #fff;
  padding: 1.5em 1em;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav a {
  color: #ffffff;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, transform 0.2s ease-in-out;
}

nav a:hover {
  color: #94d2bd;
  transform: scale(1.08);
}

/* Main Content */
main {
  flex: 1;
  padding: 2em 1em;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Forms */
form {
  margin: 2em auto;
  width: 100%;
  max-width: 450px;
  background-color: #fff;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

input[type="file"],
input[type="password"],
input[type="text"] {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #0a9396;
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.2);
}

/* Buttons */
button {
  background-color: #ee9b00;
  color: white;
  border: none;
  padding: 0.9em;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s ease;
}

button:hover {
  background-color: #ca6702;
  transform: scale(1.05);
}

/* Download Link */
#downloadLink a {
  display: inline-block;
  margin-top: 1em;
  color: #005f73;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s;
}

#downloadLink a:hover {
  color: #0a9396;
}

#documentList {
  list-style: none;
  padding: 0;
}

#documentList li {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#documentList li.empty {
  font-style: italic;
  color: #888;
}

#documentList a {
  margin-right: 10px;
  color: #007BFF;
  text-decoration: none;
}

#documentList a:hover {
  text-decoration: underline;
}

#documentList button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

#documentList button:hover {
  background-color: #e60000;
}
