/* ============================================
   Tom Price-Stephens — Site Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f5f0e8;
  --bg-alt: #ece6d9;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --accent: #3d3d3d;
  --link: #2c2c2c;
  --link-hover: #000;
  --border: #d4cdbf;
  --max-width: 860px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

a:hover {
  border-bottom-color: var(--link-hover);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header --- */
.site-header {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.site-logo {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: none;
}

.site-logo:hover {
  border-bottom: none;
}

/* --- Navigation --- */
.site-nav {
  margin-top: 1rem;
  text-align: center;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* --- Hero --- */
.hero {
  width: 100%;
  min-height: 55vh;
  background: url('assets/hero.jpg') center top / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
}

.hero-overlay {
  width: 100%;
  padding: 3rem 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(42,40,36,0.45));
  text-align: center;
}

.hero-overlay p {
  color: #f5f0e8;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* --- Sections --- */
.section {
  padding: 3.5rem 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

/* --- Copy / Intro --- */
.copy p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 1.05rem;
}

.copy p:last-child {
  margin-bottom: 0;
}

/* --- Subscribe Form --- */
.subscribe-form {
  max-width: 420px;
  margin: 1.5rem auto 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background-color: var(--bg);
  border: 1px solid var(--border);
  outline: none;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--text-light);
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--text);
}

.subscribe-form .btn {
  margin-top: 0;
}

/* --- Subscribe Button --- */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background-color: var(--accent);
  border: none;
  border-bottom: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--link-hover);
  border-bottom: none;
}

/* --- Video Embed --- */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Shows / Tour --- */
.shows-list {
  list-style: none;
  max-width: 620px;
  margin: 0 auto;
}

.shows-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.show-date {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  min-width: 110px;
}

.show-info {
  flex: 1;
  font-size: 0.95rem;
}

.show-location {
  font-size: 0.85rem;
  color: var(--text-light);
}

.shows-more {
  text-align: center;
  margin-top: 2rem;
}

/* --- About --- */
.about-content {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* --- Contact --- */
.contact-content {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.contact-links {
  list-style: none;
  margin-top: 2rem;
}

.contact-links li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--text);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .site-logo {
    font-size: 1.35rem;
  }

  .site-nav ul {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 40vh;
  }

  .section {
    padding: 2.5rem 0;
  }

  .shows-list li {
    flex-direction: column;
  }

  .show-date {
    min-width: auto;
  }
}
