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

:root {
  --black: #080808;
  --off-black: #111111;
  --surface: #181818;
  --border: #2a2a2a;
  --border-bright: #444;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f2f0eb;
  --muted: #888880;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

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

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

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.95), transparent);
}

.nav-logo {
  height: 50px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  animation: logoGlow 2s ease-in-out infinite;
  cursor: pointer;
  transition: filter 0.3s ease;
}

.nav-logo:hover {
  animation: logoGlowHover 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.8));
}

.nav-logo:active {
  animation: logoGlowActive 0.6s ease-in-out;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 1));
}

.nav-logo.logo-click-burst {
  animation: logoClickBurst 0.8s ease-out;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--white);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 60%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 70%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 4px
    ),
    url("pictures/hero.png") center/cover no-repeat;
  background-blend-mode: normal, normal, multiply;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 50% 100%,
    rgba(8, 8, 8, 0.7) 0%,
    transparent 60%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.35),
    0 3px 12px rgba(0, 0, 0, 0.55);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 18rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--white);
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.2),
    0 0 16px rgba(0, 0, 0, 0.8),
    0 0 32px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-size: 1rem;
  color: var(--white);
  font-style: italic;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.2),
    0 3px 10px rgba(0, 0, 0, 0.55);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  margin-top: 8px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--border-bright);
  color: var(--white);
}

/* ── About ── */
.section-about {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
  align-items: start;
}

.about-label {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--border-bright);
  letter-spacing: 0.05em;
  padding-top: 6px;
}

.about-text h2 {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 580px;
}

/* ── Gallery ── */
.section-gallery {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.section-gallery h2 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.gallery-item {
  position: relative;
  width: 100%;
  max-width: 100vw;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--gold);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ── Contact ── */
.section-contact {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.contact-grid h2 {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.contact-grid > div > p {
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-item:hover {
  color: var(--white);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  color: var(--gold);
}

.contact-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--border-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Loading Screen ── */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOutScreen 0.6s ease-in-out 2.4s forwards;
}

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

.loading-logo {
  height: 240px;
  width: auto;
  object-fit: contain;
  animation: floatAndGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5));
}

.loading-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  animation: fadeInOut 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes floatAndGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(159, 120, 47, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 60px rgba(159, 120, 47, 1));
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(159, 120, 47, 0.4));
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(159, 120, 47, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(159, 120, 47, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 8px rgba(159, 120, 47, 0.5));
  }
}

@keyframes logoGlowHover {
  0% {
    filter: drop-shadow(0 0 15px rgba(159, 120, 47, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(159, 120, 47, 1));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(159, 120, 47, 0.7));
  }
}

@keyframes logoGlowActive {
  0% {
    filter: drop-shadow(0 0 25px rgba(159, 120, 47, 0.9));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(159, 120, 47, 1));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(159, 120, 47, 0.9));
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes fadeOutScreen {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoClickBurst {
  0% {
    transform: scale(1) rotateZ(0deg);
    filter: drop-shadow(0 0 30px rgba(159, 120, 47, 1));
  }
  25% {
    transform: scale(1.15) rotateZ(5deg);
    filter: drop-shadow(0 0 50px rgba(159, 120, 47, 1));
  }
  50% {
    transform: scale(1.2) rotateZ(-3deg);
    filter: drop-shadow(0 0 60px rgba(159, 120, 47, 1));
  }
  75% {
    transform: scale(1.1) rotateZ(2deg);
    filter: drop-shadow(0 0 40px rgba(159, 120, 47, 0.8));
  }
  100% {
    transform: scale(1) rotateZ(0deg);
    filter: drop-shadow(0 0 10px rgba(159, 120, 47, 0.5));
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  nav ul {
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-label {
    font-size: 3rem;
  }

  .gig-card {
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }
  .gig-actions {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}
