/* Swiss Artists Productions - Base stylesheet */
:root {
  --bg: #0f0f0f;
  --bg-alt: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #b0b0b0;
  --accent: #c9a227;
  --border: #2a2a2a;
  --max-width: 1100px;
  --radius: 12px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.site-logo img {
  height: 80px;
  width: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  font-size: 0.95rem;
}

nav a {
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

nav a:hover,
nav a.active {
  opacity: 1;
  color: var(--accent);
}

.lang-switch {
  margin-left: 0.8rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.lang-switch a.active {
  color: var(--accent);
  font-weight: 600;
}

/* Main */
main {
  flex: 1;
}

/* Hero */
.page-hero {
  position: relative;
  padding: 5.5rem 1.5rem 4rem;
  text-align: center;
  max-width: none;
  margin: 0;
  background-color: #0f0f0f;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 15, 0.82) 0%,
    rgba(15, 15, 15, 0.55) 45%,
    rgba(15, 15, 15, 0.35) 100%
  );
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: #e0e0e0;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.page-hero h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* Sections */
.section {
  padding: 3.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section.dark {
  background: var(--bg-alt);
  max-width: none;
  padding: 4rem 1.5rem;
}

.section.dark .narrow {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.narrow {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.narrow p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

/* Artist grid */
.artist-grid,
.gigs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.artist-card,
.gig-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.artist-card:hover,
.gig-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.artist-image {
  height: 160px;
  background: linear-gradient(135deg, #222, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: var(--accent);
}

.artist-body {
  padding: 1.2rem;
}

.artist-body h2,
.gig-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.artist-body p,
.gig-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.gig-card {
  padding: 1.5rem;
}

.gig-card > div:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav {
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.85rem;
  }

  .page-hero {
    padding: 3rem 1rem 2rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }
}
/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 0.9rem 1.5rem;
  background: var(--accent);
  color: #0f0f0f;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.contact-form button:hover {
  opacity: 0.9;
}

.gig-card a {
  color: inherit;
  display: block;
}

.gig-card a:hover h2 {
  color: var(--accent);
}

.btn-youtube {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.7rem 1.3rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-youtube:hover {
  background: var(--accent);
  color: #0f0f0f;
}
