/* ── Variables ── */
:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-hover: rgb(94, 96, 123);
  --max-width: 1100px;
  --font-main: Arial, sans-serif;
}

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

/* ── Base ── */
body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* ── Navigation ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  z-index: 1000;
}

.nav-logo,
.nav-links a {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a {
  margin-left: 20px;
}

.nav-logo:hover,
.nav-links a:hover {
  color: var(--color-hover);
}

/* ── Hero ── */
.hero {
  height: 100vh;
  width: 100%;
  background: url('../images/hero.jpeg') center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}

.logo {
  width: 400px;
  animation: fadeInGrow 4s ease forwards;
}

@keyframes fadeInGrow {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── About ── */
.about-section {
  padding: 30px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 40px;
}

.about-hello {
  font-size: 120px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}

.about-text {
  max-width: var(--max-width);
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

/* ── Gallery ── */
.gallery {
  column-count: 3;
  column-gap: 15px;
  padding: 0 20px 20px;
}

.gallery-item {
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* ── Footer ── */
.site-footer {
  padding: 20px 30px;
  text-align: center;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Shows Page ── */
.shows-page {
  min-height: 100vh;
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shows-title {
  font-size: 48px;
  margin-bottom: 40px;
}

.shows-list {
  list-style: none;
  text-align: center;
}

.shows-list li {
  margin-bottom: 16px;
}

.shows-list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.shows-list a:hover {
  color: var(--color-hover);
}

/* ── Contact Page ── */
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 40px;
}

.contact-title {
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
}

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

.contact-links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 22px;
  transition: color 0.3s ease;
}

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

/* ── Individual Show Page ── */
.show-page {
  padding: 80px 20px 20px;
}

.show-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
}

/* ── Lightbox ── */
.lightbox {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

.gallery-item img {
  cursor: pointer;
}

/* ── Tablet (768px and below) ── */
@media (max-width: 768px) {
  .logo {
    width: 280px;
  }

  .about-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .about-hello {
    font-size: 72px;
  }

  .about-text {
    text-align: center;
  }

  .gallery {
    column-count: 2;
    column-gap: 10px;
  }
}

/* ── Mobile (480px and below) ── */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .nav-logo,
  .nav-links a {
    font-size: 14px;
  }

  .nav-links a {
    margin-left: 12px;
  }

  .logo {
    width: 200px;
  }

  .about-hello {
    font-size: 48px;
  }

  .about-text {
    font-size: 16px;
  }

  .gallery {
    column-count: 1;
    padding: 0 15px 15px;
  }
}
