:root {
  --bg: #0A0A0A;
  --surface: #1F1F1F;
  --accent: #C2410C;
  --text: #E5E5E5;
  --text-muted: #AAAAAA;
  --separator: #555555;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
.main-nav {
  padding: 2.5rem 0;
  border-bottom: 1px solid #222;
}

.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
}

.nav-content a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.separator { color: var(--separator); }

/* HERO */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.85)), url('viniet.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.hero h1 {
  font-size: 6.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.subtitle { font-size: 2.1rem; color: var(--accent); margin-bottom: 1.8rem; }

.description {
  font-size: 1.35rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #CCCCCC;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 1.1rem 2.8rem;
  border-radius: 9999px;
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #E55A1F;
  transform: translateY(-3px);
}

/* Language Switcher */
.language-switcher {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 100;
  font-size: 0.95rem;
}

.language-switcher a {
  color: #E5E5E5;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  transition: color 0.3s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
  color: var(--accent);
}

.lang-separator { color: #555; }

/* ==================== CONTENT PAGES ==================== */

.content-page {
  padding: 8rem 0 6rem;
  background-color: var(--surface);
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Story */
.story-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.22rem;
  line-height: 1.85;
  color: #DDDDDD;
}

.story-content p {
  margin-bottom: 2rem;
}

.quote {
  font-style: italic;
  color: #C8C8C8;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

/* Music */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.music-card {
  background-color: #161616;
  padding: 2rem;
  border-radius: 12px;
}

/* Photos */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 1.8rem;
  margin: 3rem 0;
}

.photo-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
}
/* ==================== CONTACT PAGE ==================== */
.contact-form-container {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: #CCC;
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  background-color: #161616;
  border: 1px solid #333;
  color: #E5E5E5;
  padding: 1.25rem 1.4rem;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C2410C;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.2);
  background-color: #1C1C1C;
}

.cta-button {
  margin-top: 1rem;
  padding: 1.3rem 3rem;
  font-size: 1.2rem;
}

/* Video embeds */
.video-embed {
  margin: 1.5rem 0;
  background-color: #0F0F0F;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
}

/* Footer */
footer {
  background-color: #0A0A0A;
  padding: 4rem 0 3rem;
  border-top: 1px solid #222;
  margin-top: 6rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  margin-bottom: 1.8rem;
}

.social-links a {
  color: #888;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

footer p {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}

/* Responsiv */
@media (max-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
  .subtitle { font-size: 1.7rem; }
  .nav-content { gap: 1.2rem; font-size: 1rem; }
  .language-switcher { top: 1.8rem; right: 1.8rem; }
}
