@font-face {
  font-family: 'Anarchie';
  src: url('../fonts/Anarchie-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Anarchie';
  src: url('../fonts/Anarchie-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: 'Futura XBlk BT';
  src: url('../fonts/Futura%20XBlk%20BT.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --sky: #2AC7DE;
  --coral: #F26B4B;
  --yellow: #F4B400;
  --green: #1E6B4F;
  --dark: #1A1A1A;
  --cream: #FFFDF7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--sky);
  color: var(--dark);
  font-family: 'Futura XBlk BT', 'Arial Black', sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: relative;
  z-index: 10;
}

.logo img { height: 64px; width: auto; }

.text-logo {
  font-family: 'Anarchie', sans-serif;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a img {
  height: 22px;
  width: auto;
}

.nav .divider {
  width: 2px;
  height: 20px;
  background: var(--dark);
  opacity: 0.6;
}

.nav-link {
  font-family: 'Anarchie', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--dark);
  opacity: 0.75;
  white-space: nowrap;
}

.nav-link:hover { opacity: 1; }

.nav-link.active {
  color: var(--coral);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 80vh;
  background-image: url('../img/HomePageBackGround.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 80px;
}

.hero-logo {
  max-width: 620px;
  width: 90%;
  margin: 0 auto 28px;
}

.info-box {
  background: var(--cream);
  border: 3px solid var(--dark);
  border-radius: 4px;
  padding: 14px 36px;
  margin: 10px 0;
  font-family: 'Anarchie', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 1px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
}

.site-footer {
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img { height: 48px; }

.socials {
  display: flex;
  gap: 20px;
}

.socials img, .socials svg {
  height: 26px;
  width: 26px;
}

.footer-tickets img { height: 34px; }

/* Page (non-home) layout */
.page-main {
  padding: 40px 60px 80px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.page-title-box {
  background: var(--cream);
  border: 3px solid var(--dark);
  border-radius: 4px;
  padding: 14px 30px;
  display: inline-block;
  font-family: 'Anarchie', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  margin: 10px 0 30px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
}

.copy p {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 780px;
}

.decor {
  position: absolute;
  pointer-events: none;
}

.about-scene {
  margin-top: 40px;
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 8px;
}

.about-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.stub-body {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 20px 0 80px;
}

@media (max-width: 860px) {
  .site-header { flex-direction: column; gap: 18px; padding: 20px; }
  .nav { flex-wrap: wrap; justify-content: center; }
  .site-footer { flex-direction: column; text-align: center; }
  .page-main { padding: 30px 20px 60px; }
}
