/* ===== DERECH OLAM — Global Theme ===== */

/* Page background: soft corn color */
body {
  background-color: #f8e7b0; /* corn */
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: #000000; /* black text */
}

/* Main content container */
.container {
  width: 90%;
  margin: auto;
  padding: 20px;
  background: #fffef8;
  border: 4px solid #2f8a11; /* deep green edges */
  border-radius: 12px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.25);
}

/* HEADERS (Unique IDENTITY) */
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: bold;
  text-decoration: underline;
}

/* Size adjustments */
h1 { font-size: 2.5em; }
h2 { font-size: 2.1em; }
h3 { font-size: 1.7em; }
h4 { font-size: 1.4em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1em; }

/* LINKS */
a {
  color: #0051ff;                 /* bold blue */
  text-decoration: underline;     /* always underlined */
  font-weight: bold;
}

a:hover {
  color: #0033aa;
}

/* NAVIGATION BAR */
nav {
  background-color: #f5d98c; /* lighter corn */
  border-bottom: 4px solid #2f8a11;
  padding: 10px;
}

nav a {
  margin-right: 18px;
  font-size: 1.1em;
}

/* Footer */
footer {
  margin-top: 30px;
  padding: 10px;
  background-color: #f5d98c;
  border-top: 4px solid #2f8a11;
  text-align: center;
}

/* === HEADER IMAGE === */

.do-header {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #f8e7b0; /* corn */
  border-bottom: 4px solid #2f8a11; /* green */
}

.do-header-image {
  width: 600px;
  height: auto;
  display: block;
  margin: 2px auto;
}

/* === FOOTER === */

.do-footer {
  width: 100%;
  background-color: #f8e7b0; /* corn */
  border-top: 4px solid #2f8a11; /* green */
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 1rem;
  color: #000; /* black text */
}

.do-footer-line {
  margin: 6px 0;
}

.do-footer a {
  color: blue;
  text-decoration: underline;
  font-weight: bold;
}
.main-nav {
  text-align: center;
}

.nav-row a {
  text-decoration: none;
  margin: 0 4px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #f9fff9;
  border: 2px solid #00aa00;
  min-width: 260px;
  text-align: left;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: #e6ffe6;
}

.dropdown:hover .dropdown-content {
  display: block;
}

