/* The Tripper — Static Site
   Based on Astra theme + Elementor design
   Colors: #20fa47 (green links), #0b9708 (hover), #191919 (text), #ffffff (bg)
   Fonts: Montserrat (headings), Noto Sans (body)
*/

:root {
  --green: #20fa47;
  --green-hover: #0b9708;
  --text: #e0e0e0;
  --text-light: #a0a0a0;
  --bg: #000000;
  --bg-subtle: #111111;
  --border: #222222;
}

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

html { font-size: 100%; }

body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7em;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: 4rem; line-height: 1.4em; }
h2 { font-size: 2.125rem; line-height: 1.3em; }
h3 { font-size: 1.5rem; line-height: 1.3em; }

a { color: var(--green); text-decoration: none; }
a:hover, a:focus { color: var(--green-hover); }

/* Header & Navigation */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 0;
  flex-wrap: wrap;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: var(--green);
}

/* Content */
.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

/* Video Sections */
.video-section {
  margin: 8rem auto;
  max-width: 1000px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

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

/* External link section (for Apple Music, Spotify, etc.) */
.music-links {
  text-align: center;
  padding: 3rem 1rem;
}

.music-links h2 {
  margin-bottom: 1.5rem;
}

.music-links .btn {
  display: inline-block;
  padding: 17px 40px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  border-radius: 30px;
  margin: 0.5rem;
  transition: all 0.2s;
}

.music-links .btn:hover {
  background: var(--green-hover);
  color: #fff;
}

/* Info page */
.info-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.info-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.info-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.site-footer a { color: var(--green); }

/* Mobile */
@media (max-width: 921px) {
  .main-nav ul {
    flex-direction: column;
  }
  .main-nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.5rem; }
}
