/* GLOBAL */
body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  background: #0a0a0a;
  color: white;
}

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

a:visited {
  color: white;
}

a:hover {
  color: #00ffcc; /* optional neon hover */
}


/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: black;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #222;
  z-index: 1000;
}

/* LOGO */
.logo {
  font-size: 30px;
  letter-spacing: 3px;
  color: white;
  text-decoration: none;
  display: inline-block;
}

.logo:visited {
  color: white;
}

/* NAVIGATION — DESKTOP */
nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  position: relative;
  font-size: 20px;
}

/* Underline animation */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #00ffcc;
  transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* MAIN SECTIONS */
section {
  padding: 120px 20px;
  text-align: center;
}

/* HERO TEXT */
.hero-title {
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 400;
  margin: 0;
  color: white;
}

.hero-subtitle {
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 300;
  margin: 10px 0 0 0;
  color: white;
}

.hero-tagline {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 20px;
  color: white;
}

/* IMAGE WRAPPER */
.soliatistockholmbear {
  position: relative;
  max-width: 100%;
}

/* IMAGE */
.soliatistockholmbear img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* FADE ON ALL 4 SIDES */
.soliatistockholmbear::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 60%,
    #0a0a0a 100%
  );
}

/* ------------------------------- */
/* RESPONSIVE DESIGN FOR MOBILE    */
/* ------------------------------- */

@media (max-width: 600px) {

  /* Keep header horizontal */
  header {
    padding: 10px 20px;
  }

  /* Slightly smaller logo */
  .logo {
    font-size: 24px;
  }

  /* Keep menu horizontal but tighter */
  nav {
    gap: 15px;
    transform: translateX(-50%);
  }

  nav a {
    font-size: 15px;
    margin: 0;
  }

  /* Adjust section padding so content doesn't hide behind header */
  section {
    padding-top: 140px;
  }
}