/*
  Verve Dance static rebuild
  - TABLE-based layout for Dreamweaver CS5
  - System fonts only
  - No JS / no frameworks
*/

/* ====== Reset-ish ====== */
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #e8e8e8;

  /* Subtle background gradient (no texture image) */
  background: #101010;
  background: -moz-linear-gradient(top, #0f0f0f 0%, #1a1a1a 35%, #0d0d0d 100%);
  background: -webkit-linear-gradient(top, #0f0f0f 0%, #1a1a1a 35%, #0d0d0d 100%);
  background: linear-gradient(to bottom, #0f0f0f 0%, #1a1a1a 35%, #0d0d0d 100%);
}

img { border: 0; display: block; }

a { color: #ffffff; }
a:hover { color: #ff6b6b; }

/* ====== Wrapper ====== */
.page {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}

.wrapper {
  width: 95%;
  max-width: 980px;
  margin: 0 auto;
  height: 100%;
}

/* Make the middle row stretch so the footer sits at the bottom */
.grow { height: 100%; }

/* A soft, dark panel feel like the original */
.panel {
  background: rgba(0,0,0,0.35);
}

/* ====== Header ====== */
.header {
  padding: 22px 18px 10px 18px;
}

/* Tagline under the logo, positioned to match the original (old-Firefox safe) */
.header-wrap {
  text-align: center;
  width: 100%;
}

/* Keep the logo in normal flow so it cannot overlap the nav */
.header-wrap .logo {
  display: inline-block;
}

/* Position tagline visually like the original without absolute positioning */
.tagline {
  display: block;
  width: 520px;
  margin: -58px auto 0 auto;
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

/* Centre the logo, like the original */
.logo-cell { text-align: center; }
.logo {
  display: inline-block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* ====== Navigation ====== */
.navbar {
  /* RED → DARK (top to bottom) */
  background: #b70000;
  background: -moz-linear-gradient(top, #d20000 0%, #6b0000 45%, #170000 100%);
  background: -webkit-linear-gradient(top, #d20000 0%, #6b0000 45%, #170000 100%);
  background: linear-gradient(to bottom, #d20000 0%, #6b0000 45%, #170000 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.65);
}

.nav {
  width: 100%;
  border-collapse: collapse;
}

.nav td {
  padding: 0;
  text-align: center;
}

.nav a {
  display: block;
  padding: 12px 10px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
}

/* Clear, simple hover highlight */
.nav a:hover,
.nav a:focus {
  background: rgba(255,255,255,0.12);
}

/* Current page state */
.nav a.active {
  background: rgba(0,0,0,0.35);
}

/* ====== Main content ====== */
.content {
  padding: 18px;
}

h1 {
  margin: 0 0 10px 0;
  font-size: 22px;
  letter-spacing: 0.3px;
}

h2 {
  margin: 18px 0 8px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

p { margin: 0 0 12px 0; }

/* Two-column intro area */
.intro-table {
  width: 100%;
  border-collapse: collapse;
}

.intro-left {
  width: 64%;
  vertical-align: top;
  padding-right: 16px;
}

.intro-right {
  width: 36%;
  vertical-align: top;
}

/* Newsletter box (placeholder area for user form) */
.newsletter {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  padding: 12px;
}

.newsletter h2 {
  margin-top: 0;
}

.newsletter .note {
  font-size: 12px;
  color: #d8d8d8;
  margin-top: 10px;
}

.newsletter .note a {
  text-decoration: underline;
}

/* Hero image strip */
.hero-wrap {
  margin: 14px 0 14px 0;
  border: 3px solid rgba(255,255,255,0.75);
}

.hero {
  width: 100%;
  height: auto;
}

/* 3-column blocks */
.threecol {
  width: 100%;
  border-collapse: collapse;
}

.threecol td {
  width: 33.333%;
  vertical-align: top;
  padding: 10px 12px;
}

.threecol .box {
  min-height: 120px;
}

/* Diary table (borderless, editable) */
.diary {
  width: 100%;
  border-collapse: collapse;
}

.diary th {
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 6px;
  color: #ffffff;
}

.diary td {
  padding: 8px 6px;
  vertical-align: top;
}

/* Gentle row separation without borders */
.diary tr + tr td {
  border-top: 1px dotted rgba(255,255,255,0.14);
}

/* ====== Footer ====== */
.footer {
  /* DARK → RED (top to bottom) */
  background: #170000;
  background: -moz-linear-gradient(top, #0c0000 0%, #4d0000 55%, #d20000 100%);
  background: -webkit-linear-gradient(top, #0c0000 0%, #4d0000 55%, #d20000 100%);
  background: linear-gradient(to bottom, #0c0000 0%, #4d0000 55%, #d20000 100%);
}

.footer-inner {
  padding: 14px 18px;
  font-size: 12px;
  color: #f2f2f2;
}

/* ====== Small screens ====== */
/* Still table-based, but allow stacking by making cells block-like */
@media (max-width: 720px) {
  .intro-left, .intro-right {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .threecol td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .nav a { padding: 10px 6px; }
}
