* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body {
  background: linear-gradient(
    180deg,
    #000000,
    #040008,
    #020610
  );
  background-attachment: fixed;
  color: #fff;
  font-family: "IM Fell French Canon", serif;
  min-height: 100vh;
  padding-top: 100px;
}

/* ====================== NAVIGATION ====================== */
nav {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/cosmos.jpeg') no-repeat center center;
  background-size: cover;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.05);
  font-family: "Kings", cursive;
}

label.logo {
  font-family: "UnifrakturMaguntia", cursive;
  color: white;
  font-size: 35px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
  float: left;
  transition: color 0.3s ease;
}

label.logo:hover {
  color: #cccccc;
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

a.active {
  background: #2a0038;
}

a:hover {
  background: #4a0066;
  color: #dddddd;
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 1000;
  transition: color 0.3s ease;
}

.checkbtn:hover {
  color: #cccccc;
}

.mainlogo {
  width: 150px;
  height: auto;
  float: left;
}

#check {
  display: none;
}

/* ====================== MOBILE HAMBURGER MENU ====================== */
@media (max-width: 858px) {
  .checkbtn {
    display: block;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
    
    /* Dark overlay + cosmos image */
    background: 
      linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), 
      url('images/cosmos.jpeg') no-repeat center center;
    background-size: cover;
  }

  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
  }

  a:hover,
  a.active {
    background: none;
    color: #cccccc;
  }

  #check:checked ~ ul {
    left: 0;
  }
}
/* ====================== EPK DARK PURPLE BOX (WORKS ON MOBILE) ====================== */
.content {
  max-width: 860px;
  margin: 40px auto;
  padding: 60px 40px;
  background: rgba(18, 15, 28, 0.92);
  border: 1px solid #5a3d7a;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.75),
              inset 0 0 60px rgba(90, 60, 140, 0.15);
}

.epk-section {
  text-align: left;
  color: #e0e0e0;
}

.epk-section h2 {
  color: #9b6ef0;
  font-size: 2rem;
  margin: 3.5rem 0 1.4rem 0;
  letter-spacing: 1px;
  border-bottom: 1px solid #5a3d7a;
  padding-bottom: 0.8rem;
  text-transform: uppercase;
}

.epk-section p {
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
  color: #ccc;
}

.epk-section blockquote {
  margin: 2.8rem 0;
  padding: 28px 32px;
  background: rgba(45, 35, 70, 0.45);
  border-left: 6px solid #5a3d7a;
}

.links a:link {
  color: #a070ff;
  text-decoration: none;
}

.links a:visited {
  color: #8fb8e8;
}

.links a:hover {
  color: #c4a3ff;
}

.links a:active {
  color: #c4a3ff;
}


/* ====================== SLIDING GALLERY ====================== */

.gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  border: 1px solid #5a3d7a;
  border-radius: 8px;
  background: rgba(10, 8, 18, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #d8d8d8;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
  line-height: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: rgba(42, 0, 56, 0.85);
  color: #ffffff;
}

@media (max-width: 858px) {
  .gallery-slider {
    margin: 1.5rem auto 2.5rem auto;
  }

  .prev,
  .next {
    padding: 10px 12px;
    font-size: 18px;
  }
}