/* ========================================
   NOVI – Band Website Styles
   Modern / Minimal / Dark Theme
   ======================================== */

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

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #161616;
  --color-text: #f0f0f0;
  --color-text-muted: #888888;
  --color-accent: #c8a46e;
  --color-accent-hover: #dbb97f;
  --color-border: #222222;
  --color-white: #ffffff;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container-max: 1200px;
  --section-padding: 120px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--color-white);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--full {
  width: 100%;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.header__link:hover,
.header__link--active {
  color: var(--color-white);
}

.header__link:hover::after {
  width: 100%;
}

.header__link--cta {
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 8px 20px;
}

.header__link--cta::after {
  display: none;
}

.header__link--cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all var(--transition);
}

.header__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.header__burger--active span:nth-child(2) {
  opacity: 0;
}

.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero__claim {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeUp 1s ease 0.6s both;
}

.hero .btn {
  animation: fadeUp 1s ease 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1s both;
}

.hero__scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- About --- */
.about {
  background: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
  overflow: hidden;
}

.about__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-accent);
  opacity: 0.3;
  z-index: -1;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.about__image:hover img {
  filter: grayscale(0%);
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about__text .btn {
  margin-top: 16px;
}

/* --- Media --- */
.media {
  background: var(--color-bg-alt);
}

.media__header {
  text-align: center;
  margin-bottom: 60px;
}

.media__video {
  margin-bottom: 60px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

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

.media__video-link {
  text-align: center;
  margin-top: 20px;
}

.media__video-link a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.media__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(30%);
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* --- Booking --- */
.booking {
  background: var(--color-bg);
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking__info p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}

.booking__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.booking__highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.booking__highlight-icon {
  color: var(--color-accent);
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.booking__contact-mail {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.booking__contact-mail p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.booking__contact-mail a {
  font-size: 1rem;
  font-weight: 500;
}

/* Form */
.booking__form {
  background: var(--color-bg-card);
  padding: 48px;
  border: 1px solid var(--color-border);
}

.form__group {
  margin-bottom: 24px;
}

.form__group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  outline: none;
  transition: border-color var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--color-accent);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #444;
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__privacy {
  margin-bottom: 32px;
}

.form__privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--color-text-muted);
  cursor: pointer;
}

.form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

/* Form Success */
.form__success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
}

.form__success.active {
  display: block;
}

.form__success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.form__success p {
  color: var(--color-text-muted);
}

/* --- Contact --- */
.contact {
  background: var(--color-bg-alt);
}

.contact__inner {
  text-align: center;
}

.contact__socials {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  transition: color var(--transition), transform var(--transition);
  padding: 24px 32px;
  border: 1px solid var(--color-border);
  min-width: 140px;
}

.social-link svg {
  width: 32px;
  height: 32px;
}

.social-link span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.contact__artists {
  margin-top: 16px;
}

.contact__artists p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact__artists a {
  display: inline-block;
  margin: 0 12px;
  font-weight: 500;
  font-size: 0.9375rem;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg);
  padding: 60px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

.footer__copy {
  font-size: 0.6875rem;
  color: #444;
  letter-spacing: 0.05em;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .about__grid,
  .booking__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --header-height: 64px;
  }

  /* Mobile Nav */
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .header__nav--open {
    transform: translateX(0);
  }

  .header__link {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }

  .header__link--cta {
    font-size: 1rem;
    padding: 12px 32px;
  }

  /* Hero */
  .hero__title {
    letter-spacing: 0.1em;
  }

  .hero__scroll {
    display: none;
  }

  /* Gallery */
  .media__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Booking Form */
  .booking__form {
    padding: 32px 24px;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact__socials {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .social-link {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__claim {
    font-size: 1rem;
  }

  .btn {
    padding: 14px 32px;
    font-size: 0.8125rem;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .booking__form {
    padding: 24px 16px;
  }

  .footer__nav {
    gap: 16px;
  }
}