﻿:root {
  --sooners-crimson: #990000;
  --crimson-dark: #7a0000;
  --light-bg: #fbfbfb;
  --text: #111;
  --muted: #555;
  --link: #ffcc00; /* yellow links */
  --max-width: 1100px;
}

/* Reset-ish */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: "Open Sans", Arial, Helvetica, sans-serif; }
body {
  color: var(--text);
  background-color: var(--sooners-crimson); /* full-page crimson background */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header strip */
.site-header {
  background: linear-gradient(180deg, var(--sooners-crimson), var(--crimson-dark));
  color: #fff;
  padding: 14px 0;
}
.site-header .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 72px; width: auto; display: block; }
.site-title { font-size: 1.2rem; font-weight: 700; margin: 0; color: #fff; }
.site-sub { margin: 0; font-size: 0.9rem; color: #fff9; }

nav {
  background: transparent;
  padding: 8px 0 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
nav a {
  color: var(--link);
  font-weight: 700; /* bold */
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
}
nav a:hover,
nav a:focus {
  text-decoration: underline;
  background: rgba(255,255,255,0.03);
}
/* Gallery styling for Adrian Peterson pages */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.gallery a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17,17,17,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(17,17,17,0.3);
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main content area */
main {
  background: var(--sooners-crimson);
  color: #fff; /* white text */
  max-width: var(--max-width);
  margin: 20px auto;
  padding: 20px;
  border-radius:8px;
  box-shadow: 0 6px 18px rgba(17,17,17,0.06);
}

/* Links in main content */
main a {
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
}
main a:hover,
main a:focus {
  text-decoration: underline;
}

/* Article blocks / cards */
.card {
  background: rgba(255,255,255,0.05); /* translucent white for subtle contrast */
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(17,17,17,0.03);
  color: #fff; /* ensure text is visible on dark background */
}
.card a {
  color: var(--link);
  font-weight: 600;
}

figure { margin: 0; }
img { max-width: 100%; height: auto; display: block; }

.embeds iframe, .embeds blockquote { width: 100%; max-width: 100%; }

footer {
  max-width: var(--max-width);
  margin: 18px auto;
  padding: 12px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive nav toggler on small screens */
@media (max-width:640px) {
  .brand img { height: 60px; }
  .site-title { font-size: 1rem; }
  main { margin: 14px; padding: 14px; }
}
