/* WILD HOG CODING - BLACK OPS PRODUCTION 2026
   Specs: Black Background, White Text, Red Interaction (Inputs/Buttons)
*/

:root {
  --deep-black: #000000;
  --panel-grey: #1a1a1a;
  --ar-red: #cc0000;
  --pure-white: #ffffff;
}

* { box-sizing: border-box; }

body {
  background-color: var(--deep-black);
  color: var(--pure-white);
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Banner */
.banner {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-bottom: 4px solid var(--pure-white);
  display: block;
  margin: 0;
}

/* 1. HORIZONTAL NAVIGATION (Locked Row) */
nav {
  width: 100%;
  border-bottom: 4px solid var(--pure-white);
  padding: 15px 0;
  margin-bottom: 20px;
  background: var(--deep-black);
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav img {
  width: 70px;
  height: 70px;
  border: 3px solid var(--pure-white);
  background: var(--panel-grey);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

nav a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.35);
}

/* 2. THE PANELS */
.panel {
  width: 90%;
  max-width: 850px;
  background-color: var(--panel-grey);
  border: 5px solid var(--pure-white);
  padding: 30px;
  margin-bottom: 30px;
}

h1, h2, h3 { margin: 0 0 12px 0; }

/* 3. RED TEXT BOXES (Forms) */
input, textarea {
  width: 100%;
  background-color: var(--ar-red);
  color: var(--pure-white);
  border: 4px solid var(--pure-white);
  padding: 15px;
  font-family: 'Courier New', monospace;
  font-size: 1.15rem;
  font-weight: 900;
  margin-top: 10px;
  box-sizing: border-box;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

input:focus, textarea:focus {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15), 0 0 0 7px rgba(204,0,0,0.25);
}

/* 4. BUTTON STYLING */
button, .btn-red-rounded {
  display: inline-block;
  background-color: var(--ar-red);
  color: var(--pure-white);
  border: 4px solid var(--pure-white);
  padding: 15px 30px;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.2s;
}

button:hover, .btn-red-rounded:hover {
  background-color: var(--pure-white);
  color: var(--ar-red);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Links */
a { color: var(--pure-white); }
a:hover { color: var(--ar-red); }

/* Footer */
footer {
  width: 100%;
  text-align: center;
  padding: 18px 12px;
  border-top: 4px solid var(--pure-white);
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
}

.footer-links {
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

.footer-links span { color: rgba(255,255,255,0.6); padding: 0 6px; }

/* Helpers */
.panel-center { text-align: center; margin-top: 30px; }
.title { font-size: 2.2rem; margin-bottom: 10px; }

.tagline {
  color: var(--ar-red);
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
}

.subtitle { margin-top: 15px; color: rgba(255,255,255,0.85); }

.button-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent !important;
  border: 4px solid var(--ar-red) !important;
}

.btn-outline:hover {
  background: var(--ar-red) !important;
  color: var(--pure-white) !important;
}

.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { margin: 12px 0; }
.link-list a { text-decoration: underline; }

.muted { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-left: 8px; }
.muted-block { color: rgba(255,255,255,0.75); }

/* Cards grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { border: 4px solid var(--pure-white); padding: 16px; background: #111; }
.card p { margin-top: 6px; }

/* Mobile */
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  nav img { width: 56px; height: 56px; }
  .panel { padding: 20px; }
}
