/* =========================================
   YELLFIRE — Clean CSS (Neocities friendly)
   Palette:
   #25201d (dark)
   #78462d (brown)
   #e05e2a (orange)
   ========================================= */

:root{
  --bg: #25201d;
  --brown: #78462d;
  --orange: #e05e2a;

  /* Neutral text colors (not part of the 3-color palette, but necessary to read) */
  --text: #f2ede7;
  --muted: #d6c7bd;

  --maxw: 1100px;
  --radius: 14px;
}

/* Basic reset */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
}

/* Layout wrapper */
.wrapper{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 16px 50px;
}

/* Links */
a{
  color: var(--orange);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

/* Headings */
h1, h2{
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

h1{
  color: #a58c38;
  font-size: clamp(40px, 6vw, 72px); /* a bit bigger to match bigger photo */
  letter-spacing: 0.14em;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55); /* readability on top of photo */
}
.header-text h1{
  margin-left: -120px;
}

h2{
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* Header */
.site-header{
  position: relative;            /* allows overlap positioning */
  display: grid;
  grid-template-columns: 520px 1fr; /* bigger photo column */
  gap: 18px;
  align-items: stretch;

  border: 1px solid var(--brown);
  border-radius: var(--radius);
  background: rgba(120, 70, 45, 0.10);
  padding: 18px;
  margin-bottom: 18px;
  overflow: visible;             /* let the text overlap outside the box if needed */
}

.header-photo{
  width: 100%;
  height: 100%;
  max-height: 480px;   /* about 2x your old 240px */
  object-fit: cover;

  border: 1px solid var(--brown);
  border-radius: 12px;
  display: block;
}

.header-text{
  display: flex;
  flex-direction: column;
  justify-content: center;

  position: relative;
  z-index: 2;
}

.tagline{
  margin: 6px 0 0;
  color: var(--muted);
}

/* Nav */
.nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--brown);
}

.nav a{
  padding: 8px 12px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.nav a:hover{
  background: rgba(224, 94, 42, 0.12);
  text-decoration: none;
}

/* Two-column layout */
.layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: start;
}

/* Panels */
.panel{
  border: 1px solid var(--brown);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.panel.alt{
  background: rgba(120, 70, 45, 0.08);
}

/* Paragraph blocks */
p{
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid var(--brown);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

strong{ color: var(--orange); }

/* Lists (sidebar links) */
.links{
  margin: 0 0 12px;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--brown);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.links li{ margin: 6px 0; }

/* Shows table */
.table-wrap{
  overflow-x: auto;
  border-radius: 12px;
}

table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--brown);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

th, td{
  padding: 10px;
  border-bottom: 1px solid var(--brown);
  text-align: left;
  vertical-align: top;
}

th{
  background: rgba(224, 94, 42, 0.15);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

tbody tr:hover td{
  background: rgba(224, 94, 42, 0.08);
}

/* Bandcamp embed box */
.embed{
  padding: 10px;
  border: 1px dashed var(--orange);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  margin: 10px 0 14px;
}

.embed iframe{
  width: 100%;
  border: 0;
  display: block;
  border-radius: 10px;
}

/* Footer */
.site-footer{
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* Mobile */
@media (max-width: 900px){

  .site-header{
    grid-template-columns: 1fr;
  }

  .header-text{
    margin-left: 0;
  }

  .header-text h1{
    margin-left: 0;
    font-size: clamp(32px, 8vw, 46px);
    letter-spacing: 0.10em;
  }

  .header-photo{
    max-height: 360px;
  }

  .layout{
    grid-template-columns: 1fr;
  }

}


