/* Body & basic typography */
body {
  background: url('/wallpaper.gif') white;
  color: black;
  font-family: "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
}

/* Links */
a:link { color: #725647; text-decoration: none; }
a:visited { color: #725647; }
a:active { color: #7F0000; }
a:hover { color: #FF0000; }

/* Logo & slogan */
.logo-banner {
  text-align: center;
  margin: 1rem 0;
}

.logo-banner img {
  display: block;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  text-align: center;
  margin: 1rem 0;
}

.nav-horizontal {
  list-style: none;
  display: inline-flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  font-size: 1.5em;
}

.nav-horizontal li {
  position: relative;
}

.nav-horizontal a {
  display: inline-block;
  font-weight: bold;
  padding: 0.2em 0.5em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-horizontal a:hover {
  transform: scale(1.05);
}

/* Dropdown menus */
.nav-horizontal .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0.5rem 1rem;
  margin: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  z-index: 100;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-horizontal li:hover > .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-horizontal .dropdown a {
  display: block;
  color: #725647;
  padding: 0.3rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-horizontal .dropdown a:hover {
  transform: scale(1.05);
  color: #FF0000;
}

/* Thread banner */
.thread-banner {
  text-align: center;
  margin: 20px 0;
}

.thread-banner img {
  display: block;
  margin: 0 auto;
}

/* Page title under banner */
.page-title {
  text-align: center;
  color: #7F0000;
  font-family: "Times New Roman", Times, serif; 
  font-size: 2.5rem;
  font-weight: bold;
  font-style: italic;
  margin: 20px 0;
}

.justified {
  text-align: justify;
}


/* Footer social icons */
.social-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.social-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.youtube-icon {
  width: 81px;
}

.social-link:hover img {
  transform: scale(1.1);
}

/* Divider style (for separating middle content) */
.divider {
  width: 100%;
  height: 4px;
  border: 2px solid #7F0000;
  border-radius: 2px;
  background-color: transparent;
  margin: 20px 0;
}
