/* =============================================
   DIEFORDETHKLOK.COM - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Oswald:wght@400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #7a3010;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.08) 0px,
      rgba(0,0,0,0.08) 1px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.05) 0px,
      rgba(0,0,0,0.05) 1px,
      transparent 1px,
      transparent 40px
    );
  color: #f0e0c0;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  min-height: 100vh;
}

a {
  color: #f0e0c0;
  text-decoration: none;
}

a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* =============================================
   WRAPPER
   ============================================= */

.site-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  border-left: 2px solid #2a1a08;
  border-right: 2px solid #2a1a08;
  background-color: rgba(90, 30, 5, 0.6);
}

/* =============================================
   NAVIGATION
   ============================================= */

.site-nav {
  background-color: #1a0a00;
  border-bottom: 2px solid #5a2a00;
  padding: 6px 0;
  text-align: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  padding: 0 10px;
}

.site-nav ul li a {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4b896;
  padding: 2px 4px;
  transition: color 0.2s;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: #ffd700;
  text-decoration: none;
}

/* =============================================
   HEADER / LOGO
   ============================================= */

.site-header {
  text-align: center;
  padding: 10px 0 0;
  position: relative;
}

.header-characters {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}

.char-left,
.char-right {
  height: 120px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.site-logo {
  flex: 1;
  font-family: 'Metal Mania', 'Impact', sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  color: #1a0a00;
  text-shadow:
    2px 2px 0 #000,
    -1px -1px 0 #000,
    3px 3px 6px rgba(0,0,0,0.7);
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  padding: 0 10px;
}

.band-logo-img {
  max-width: 220px;
  width: 100%;
  margin-top: 10px;
  filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.8));
}

.site-tagline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px;
  font-family: 'Metal Mania', cursive;
  font-size: clamp(0.75rem, 2.5vw, 1.1rem);
  color: #ffd700;
  text-shadow: 1px 1px 3px #000;
  letter-spacing: 1px;
}

.site-tagline span {
  flex: 1;
  text-align: center;
}

/* =============================================
   DIVIDER
   ============================================= */

.divider {
  height: 3px;
  background: linear-gradient(to right, #2a1a00, #8b5a00, #ffd700, #8b5a00, #2a1a00);
  margin: 6px 0;
}

/* =============================================
   MAIN CONTENT — 3-COLUMN GRID
   ============================================= */

.main-content {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 0;
  padding: 16px 10px;
  align-items: start;
}

/* Left column */
.col-left {
  padding: 0 16px 0 10px;
  border-right: 1px solid rgba(255,200,100,0.2);
}

/* Center column */
.col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

/* Right column */
.col-right {
  padding: 0 10px 0 16px;
  border-left: 1px solid rgba(255,200,100,0.2);
}

/* =============================================
   TEXT BLOCKS
   ============================================= */

.text-block p {
  font-size: 13px;
  line-height: 1.6;
  color: #f0e0c0;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-block p strong,
.text-block .accent {
  color: #ffd700;
  font-weight: 700;
}

.text-block .band-name {
  font-family: 'Metal Mania', cursive;
  font-size: 1.4rem;
  color: #ffd700;
  text-shadow: 1px 1px 4px #000;
  display: block;
  margin: 4px 0;
}

/* =============================================
   CENTER PORTRAIT
   ============================================= */

.portrait-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-circle img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.band-logo-text {
  font-family: 'Metal Mania', cursive;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #1a0a00;
  text-shadow: 1px 1px 0 #000, 2px 2px 4px rgba(0,0,0,0.6);
  margin-top: 12px;
  letter-spacing: 2px;
}

/* =============================================
   BOTTOM SECTION
   ============================================= */

.bottom-section {
  display: grid;
  grid-template-columns: 200px 1fr 260px;
  gap: 0;
  padding: 10px 10px 20px;
  border-top: 1px solid rgba(255,200,100,0.2);
  align-items: start;
}

/* Bottom left image */
.bottom-image {
  padding: 0 10px 0 0;
}

.bottom-image img {
  width: 100%;
  max-width: 190px;
  display: block;
  border: 2px solid #5a3a10;
}

.bottom-image .img-placeholder {
  width: 190px;
  height: 140px;
  background-color: #1a0a00;
  border: 2px solid #5a3a10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a3a10;
  font-size: 11px;
}

/* Bottom center — empty / logo area */
.bottom-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10px;
}

/* Tour dates */
.tour-dates {
  padding: 0 0 0 10px;
  border-left: 1px solid rgba(255,200,100,0.2);
}

.tour-dates h3,
.merch-section h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0e0c0;
  border-bottom: 1px solid #8b5a00;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.tour-table td {
  padding: 2px 4px;
  color: #f0e0c0;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.tour-table td:first-child {
  font-weight: 700;
  padding-right: 6px;
}

.tour-table td:last-child {
  text-align: right;
  color: #ffd700;
}

.tour-table tr:nth-child(even) td {
  color: #c8b090;
}

.tour-table tr:nth-child(even) td:last-child {
  color: #e0b800;
}

/* Dotted leader line effect */
.tour-table .city {
  position: relative;
}

.tour-table .dots {
  display: inline-block;
  border-bottom: 1px dotted #8a6a40;
  flex: 1;
  min-width: 40px;
  margin: 0 4px;
  vertical-align: middle;
}

/* =============================================
   MERCHANDISE SECTION
   ============================================= */

.merch-section {
  padding: 10px 10px 20px;
  border-top: 1px solid rgba(255,200,100,0.2);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background-color: #1a0a00;
  border-top: 2px solid #5a2a00;
  text-align: center;
  padding: 10px;
  font-size: 11px;
  color: #8a6a40;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .col-left,
  .col-right {
    border: none;
    padding: 0 0 16px 0;
  }

  .col-center {
    order: -1;
    padding-bottom: 16px;
  }

  .portrait-circle {
    width: 180px;
    height: 180px;
  }

  .site-tagline {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .bottom-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bottom-image img,
  .bottom-image .img-placeholder {
    max-width: 100%;
    width: 100%;
  }

  .tour-dates {
    border-left: none;
    padding: 0;
  }

  .bottom-center {
    display: none;
  }

  .char-left,
  .char-right {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .site-logo {
    font-size: 2rem;
  }

  .site-nav ul {
    gap: 4px 10px;
  }

  .site-nav ul li a {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .portrait-circle {
    width: 150px;
    height: 150px;
  }
}
