/* =====================================================
   Falcon Records — Modern Stylesheet
   Colour palette preserved from the 2004 original:
   #66cc66  green (body background)
   #ff6600  orange (sidebar header, content accent)
   #ff9900  light orange
   #000000  black (nav background)
   #ffcc00  yellow (nav links)
   #ffffff  white (content background)
===================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #66cc66;
  font-family: Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  color: #222;
  min-height: 100vh;
}

/* ---- Page wrapper ---- */
.page {
  display: flex;
  max-width: 1100px;
  min-height: 100vh;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0,0,0,0.25);
}

/* =====================================================
   SIDEBAR
===================================================== */
.sidebar {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  background: linear-gradient(160deg, #ff9900 0%, #ff6600 60%, #cc4400 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles — CSS reimagining of the original bigcircle GIFs */
.sidebar-header::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -35px;
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.sidebar-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.12);
  border-radius: 50%;
}

.site-name {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

/* ---- Navigation ---- */
nav {
  background: #111;
  flex: 1;
  padding: 6px 0;
}

nav a {
  display: block;
  color: #ffcc00;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  padding: 6px 10px;
  text-decoration: none;
  border-bottom: 1px solid #1e1e1e;
  line-height: 1.3;
  transition: background 0.1s, color 0.1s;
}

nav a:hover {
  background: #222;
  color: #ff9900;
}

nav a.active {
  color: #fff;
  background: #2a2a2a;
  border-left: 3px solid #ff6600;
}

/* =====================================================
   CONTENT AREA
===================================================== */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Orange header bar — replaces the bigcircle_2 + orange strip GIFs */
.content-header {
  background: linear-gradient(to right, #ff9900, #ff6600);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-circle {
  width: 48px;
  height: 48px;
  background: #66cc66;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px rgba(0,0,0,0.15);
}

.site-title {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  line-height: 1.3;
}

/* White content body */
.content-body {
  background: #fff;
  flex: 1;
  padding: 24px 28px;
}

/* Page heading — replaces size=4 font */
.page-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #222;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid #66cc66;
}

/* Bold intro paragraph — replaces area Type="subhead" */
.intro {
  font-size: 1em;
  font-weight: bold;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.5;
}

.intro p, .intro div {
  margin-bottom: 8px;
}

/* Main content */
.main-content {
  line-height: 1.65;
  font-size: 13px;
}

.main-content div,
.main-content p {
  margin-bottom: 8px;
}

.main-content div:last-child,
.main-content p:last-child {
  margin-bottom: 0;
}

.main-content strong, .main-content b {
  color: #111;
}

.main-content a {
  color: #cc5200;
  font-weight: bold;
}

.main-content a:hover {
  color: #ff6600;
}

/* ---- Home page two-column grid ---- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 28px;
  align-items: start;
}

.content-sidebar {
  background: #f7f7f7;
  padding: 16px;
  border-left: 4px solid #66cc66;
  font-size: 12px;
  line-height: 1.5;
}

.content-sidebar div,
.content-sidebar p {
  margin-bottom: 8px;
}

.content-sidebar strong, .content-sidebar b {
  color: #cc0000;
}

.content-sidebar a {
  color: #444;
  font-weight: bold;
  text-decoration: none;
}

.content-sidebar a:hover {
  color: #ff6600;
  text-decoration: underline;
}

/* ---- Runner / footer strip ---- */
.runner {
  background: #111;
  padding: 10px 28px;
  font-size: 12px;
  color: #ffcc00;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.5px;
}

.runner div, .runner p {
  margin: 0;
}

/* ---- Images ---- */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 700px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-header {
    width: 100%;
    min-height: auto;
    padding: 16px 20px;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px;
  }

  nav a {
    display: inline-block;
    border: none;
    border-bottom: 1px solid #333;
    padding: 4px 8px;
    font-size: 10px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-body {
    padding: 16px;
  }
}
