/* updates.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background-image: url('/images/wallpapers/brick-wall.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  backdrop-filter: blur(8px);
}

header {
  background-color: #073763;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 4px solid #990000;
}

.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.branding img.logo {
  height: 120px;
  width: auto;
  margin-bottom: 0.1rem;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .branding img.logo {
    height: 90px;
  }
}

.title-group h1 {
  font-family: 'Cambria', serif;
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.title-group .tagline {
  font-family: 'Segoe Script', cursive;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #f3f6f4;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-buttons a {
  background-color: #f39a0d;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-buttons a:hover {
  background-color: #b45f06;
  color: #fff;
}

.nav-buttons a.active {
  background-color: #b45f06;
  color: #fff;
}

.updates-section {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.update-entry {
  border: 1px solid #ccc;
  border-left: 6px solid #16537e;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.update-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #16537e;
}

.update-date {
  font-size: 0.95rem;
  color: #666;
}

.view-button {
  background-color: #741b47;
  color: white;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.view-button:hover {
  background-color: #4c1130;
}

.update-content {
  display: none;
  margin-top: 0.7rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #ccc;
}

.signature {
  font-style: italic;
  color: #444;
  margin-top: 1rem;
}
