/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  color: #fff;
  background: #000;
  scroll-behavior: smooth;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  padding: 1rem;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background: url('img/miklagard.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero .bottom-fade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
}

.band-logo {
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  opacity: 0.45;
  object-fit: contain;
  filter: drop-shadow(0 0 10px #4a8020b3);
}

.logo-wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 2;
}

/* SECTION LAYOUT */
section {
  padding: 5px 8vw;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

section p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* FONTS */
@font-face {
  font-family: 'DeviantlyBrush';
  src: url('media/brush.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'DuruSans';
  src: url('media/duru-sans.regular.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.big-title {
  font-family: 'DeviantlyBrush', cursive;
  font-size: 10rem;
  text-align: center;
  line-height: 1;
  margin: 0;
  padding: 1rem 0;
}

.content-text {
  font-family: 'DuruSans', sans-serif;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
  margin: 0;
  padding: 1rem 0;
}

.content-text a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}

.content-text a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* FOOTER */
footer {
  padding: 2rem;
  text-align: center;
  background: #111;
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .hero {
    height: auto;
    aspect-ratio: 16 / 14;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #000;
  }

  .logo-wrapper {
    top: 45%;
  }

  .band-logo {
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5)); /* gold glow */
  }

  .big-title {
    font-size: 5rem;
  }

  section {
    padding: 80px 6vw;
  }
}

