/* =========================
   Global reset & defaults
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: black;
  color: white;
  font-family: "fino-sans", sans-serif;
  font-style: italic;
}

/* =========================
   Logo
========================= */
.logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 120px;
  z-index: 10;
}

.logo img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .logo {
    width: 160px;
  }
}

/* =========================
   Hero section
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 110vh;
  overflow: hidden;
}

/* Desktop: enemmän korkeutta */
@media (min-width: 768px) {
  .hero {
    height: 125vh;
  }
}

/* Hero image */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

/* Desktop: EI aivan yläreunaan,
   vaan hieman alas */
@media (min-width: 768px) {
  .hero-image {
    object-position: center 18%;
  }
}

/* =========================
   Hero text + Pre-Save
========================= */
.hero-content {
  position: absolute;
  top: 42%;
  left: 40px;
  max-width: 640px;
}

@media (min-width: 768px) {
  .hero-content {
    top: 40%;
    left: 80px;
  }
}

.hero-text {
  font-size: 34px;
  line-height: 1.25;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  margin-bottom: 28px;
}

.hero-text strong {
  font-size: 1.35em;
}

/* Desktop text size */
@media (min-width: 768px) {
  .hero-text {
    font-size: 54px;
  }
}

/* =========================
   Spotify Pre-Save button
========================= */
.presave-button {
  display: inline-block;
  padding: 16px 34px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.presave-button:hover {
  background: white;
  color: black;
}

/* =========================
   Bottom content
========================= */
.hero-bottom {
  position: absolute;
  bottom: 36px;
  left: 40px;
}

@media (min-width: 768px) {
  .hero-bottom {
    left: 80px;
  }
}

/* Contact */
.email {
  font-size: 22px;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* Social links */
.socials a {
  display: inline-block;
  margin-right: 22px;
  color: white;
  text-decoration: none;
  font-size: 22px;
  border-bottom: 1px solid transparent;
}

.socials a:hover {
  border-bottom: 1px solid white;
}

/* =========================
   Accessibility polish
========================= */
a:focus {
  outline: 1px dashed white;
  outline-offset: 4px;
}