/* Palette */
:root {
  --bg-color: #000;           /* almost black */
  --text-color: #fff;         /* white text */
  --accent-color: #FF8C00;    /* pumpkin orange accent */
}

/* Base Styles */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

/* Links */
a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
a:hover {
  border-bottom: 1px solid var(--accent-color);
}

/* Buttons */
button, .btn {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-color);
  padding: 0.5em 1em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
button:hover, .btn:hover {
  background-color: var(--accent-color);
  color: var(--bg-color);
}

/* Header / Footer Borders (general) */
.header, .footer {
  border-top: 4px solid var(--accent-color);
  border-bottom: 4px solid var(--accent-color);
  padding: 1em;
}

/* Highlighted Section Titles */
h2, h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3em;
}
h2::after, h3::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Form Inputs and Focus States */
input, textarea {
  background: #111;
  color: var(--text-color);
  border: 1px solid #333;
  padding: 0.5em;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

/* Navigation Bar Highlights */
.navbar .active, .navbar li:hover {
  background-color: var(--accent-color);
}
.navbar a {
  color: var(--text-color);
}

/* Cards or Panels */
.card {
  border: 1px solid #333;
  padding: 1em;
  transition: box-shadow 0.2s ease;
}
.card:hover {
  box-shadow: 0 0 10px var(--accent-color);
}

/* Inline Text Accent */
.highlight {
  color: var(--accent-color);
}

/* Styles moved from index.html */
nav {
  border-top: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  padding: 1em 0;
  background-color: #111;
  display: flex;
  justify-content: center;
  gap: 1.5em;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
}
 
.image-container {
      display: flex;
	  flex-direction: column;
	  align-items: center;
      margin: 20px;
    }

.image-container img {
      max-width: 50%;
      height: auto;
	  display: inline-block;
    }

.text-above {
      margin-bottom: 10px;
      font-size: 18px;
    }

.text-below {
      margin-top: 10px;
      font-size: 18px;
    }

.hero {
  border-top: 4px solid var(--accent-color);
  border-bottom: 4px solid var(--accent-color);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 400px;
}

/* Specific h2 color */
h2 {
  color: var(--accent-color);
}

/* Specific footer border for consistency with index.html's original style */
footer {
  border-top: 2px solid var(--accent-color);
  padding: 1em;
  text-align: center;
  color: #ccc;
  background-color: #111;
  /* Removed border-bottom here to match original index.html footer */
}

/* Style to center the header text */
header {
  text-align: center;
}