@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=DM+Sans:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #0e0e0d;
  color: #f3efe7;
  line-height: 1.7;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 42px;
  background: rgba(8, 8, 8, 0.65);
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  z-index: 10001;
}

.logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: rgba(243,239,231,0.82);
  text-decoration: none;
  margin-left: 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.nav-links a:hover {
  color: white;
}

.nav-links .nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(243,239,231,0.95);
  color: #111;
}

.nav-links .nav-cta:hover {
  background: white;
  color: #111;
}

.nav-links a.active {
  color: white;
}

.nav-links a.active:not(.nav-cta)::after {
  opacity: 1;
  width: 100%;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: rgba(243,239,231,0.85);
  opacity: 0;
  transition: all 0.25s ease;
}

.nav-links .nav-cta.active {
  background: white;
  color: #111;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 9999;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #f3efe7;
  border-radius: 999px;
  transition: all 0.25s ease;
}

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 100000;
  background: linear-gradient(
    90deg,
    rgba(243,239,231,0.45),
    rgba(243,239,231,0.95)
  );
  box-shadow: 0 0 18px rgba(243,239,231,0.12);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.02) 0%,
      rgba(0,0,0,0.10) 40%,
      rgba(0,0,0,0.28) 72%,
      rgba(14,14,13,1) 100%
    ),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 110px 120px 60px 24px;
}

.hero h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 20px 60px rgba(0,0,0,0.45);
  animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
  0% {
    text-shadow: 0 20px 60px rgba(0,0,0,0.45);
  }

  50% {
    text-shadow:
      0 20px 60px rgba(0,0,0,0.45),
      0 0 26px rgba(243,239,231,0.08);
  }

  100% {
    text-shadow: 0 20px 60px rgba(0,0,0,0.45);
  }
}

.hero p {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(243,239,231,0.88);
}

/* BUTTONS */
.buttons {
  margin-top: 36px;
}

.buttons a,
.main-button,
.card a {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px;
  color: #f3efe7;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.buttons a:hover,
.main-button:hover,
.card a:hover {
  background: rgba(243,239,231,0.95);
  color: #111;
  transform: translateY(-3px);
}

/* SECTIONS */
.section {
  position: relative;
  padding: 110px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(180px, 35%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(243,239,231,0.12),
    transparent
  );
}

.section h2 {
  font-family: "Merriweather", serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.section h2 i {
  font-size: 0.72em;
  margin-right: 14px;
  opacity: 0.72;
  vertical-align: middle;
  transform: translateY(-2px);
}

.section p {
  max-width: 780px;
  margin: auto;
  font-size: 18px;
  color: rgba(243,239,231,0.74);
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 10px auto;
  font-size: 18px;
  color: rgba(243,239,231,0.68);
}

/* FADE IN */
.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 70px rgba(0,0,0,0.22);
}

.card h3 {
  font-family: "Merriweather", serif;
  font-size: 32px;
  margin-bottom: 14px;
}

.highlight {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 30px;
}

/* VIDEOS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.video-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  color: #f3efe7;
  cursor: pointer;
  text-align: center;
  font: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-card span {
  display: block;
  padding: 18px;
  font-weight: 600;
  font-size: 15px;
}

.video-card::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f3efe7;
  font-size: 20px;
  padding-left: 4px;
  opacity: 0.88;
  transition: all 0.25s ease;
  pointer-events: none;
}

.video-card:hover::after {
  background: rgba(243,239,231,0.95);
  color: #111;
  transform: translate(-50%, -50%) scale(1.08);
}

/* SOCIAL */
.social-icons {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(243,239,231,0.9);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.social-icons a i {
  font-size: 26px;
  color: inherit;
}

.social-icons a:hover {
  background: rgba(243,239,231,0.95);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(243,239,231,0.12);
}

/* SHOWS */
.shows-list {
  max-width: 850px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.show-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 78px 28px 32px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  text-align: left;
  transition: all 0.25s ease;
}

.show-item:hover {
  transform: translateY(-4px);
}

.show-date {
  font-weight: 700;
  font-size: 17px;
  min-width: 180px;
  color: rgba(243,239,231,0.9);
}

.show-info h3 {
  font-family: "Merriweather", serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.show-info p {
  margin: 0;
  font-size: 16px;
}

.show-info-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #f3efe7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s ease;
}

.show-info-button:hover {
  background: rgba(243,239,231,0.95);
  color: #111;
  transform: translateY(-2px);
}

/* GLASS SWEEP */
.video-card,
.card,
.show-item,
.contact-section {
  position: relative;
  overflow: hidden;
}

.video-card::before,
.card::before,
.show-item::before,
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transition: left 0.8s ease;
  pointer-events: none;
}

.video-card:hover::before,
.card:hover::before,
.show-item:hover::before,
.contact-section:hover::before {
  left: 180%;
}

/* DUO */
.duo-extra {
  display: none;
}

.duo-extra.show {
  display: block;
}

.show-more-button {
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
}

/* BIO */
.bio-quote {
  margin-top: 34px !important;
  font-family: "Merriweather", serif;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.35;
  color: rgba(243,239,231,0.92) !important;
}

/* LIGHTBOX + POPUP */
.video-lightbox,
.show-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.video-lightbox.active,
.show-popup.active {
  display: flex;
}

.lightbox-content {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
}

.lightbox-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: none;
}

.show-popup {
  z-index: 99999;
  background: rgba(0,0,0,0.88);
}

.show-popup-content {
  max-width: 600px;
  width: 100%;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
}

.show-popup-content h2 {
  font-family: "Merriweather", serif;
  margin-bottom: 20px;
}

.show-popup-content p {
  margin-bottom: 14px;
}

.close-video {
  position: absolute;
  top: 24px;
  right: 34px;
  background: none;
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
}

/* CONTACT */
.contact-section {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
}

.booking-tags {
  margin: 34px auto 24px auto;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 780px;
}

.booking-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(243,239,231,0.85);
  font-size: 14px;
  font-weight: 600;
}

/* FLOATING SPOTIFY */
.floating-listen {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #f3efe7;
  background: rgba(18,18,18,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  transition: all 0.25s ease;
}

.floating-listen i {
  font-size: 18px;
}

.floating-listen:hover {
  background: rgba(29,185,84,0.95);
  color: white;
  transform: translateY(-4px);
}

/* FOOTER */
footer {
  padding: 60px 20px;
  text-align: center;
  opacity: 0.72;
}

footer .social-icons a {
  width: 42px;
  height: 42px;
}

footer .social-icons a i {
  font-size: 18px;
}

footer a {
  color: rgba(243,239,231,0.8);
  text-decoration: none;
}

footer a:hover {
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .show-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 28px 32px 70px 32px;
  }

  .show-date {
    min-width: auto;
  }

  .show-info-button {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
    flex-direction: row;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 9998;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    margin: 0;
    font-size: 22px;
    font-family: "Merriweather", serif;
  }

  .nav-links .nav-cta {
    padding: 12px 22px;
    font-size: 18px;
  }

  .hero-content {
    padding: 120px 20px 60px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }

  .buttons a {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 12px auto;
  }

  .section {
    padding: 80px 18px;
  }

  .section h2 {
    font-size: 36px;
  }

  .section h2 i {
    display: block;
    margin: 0 auto 12px auto;
    transform: none;
  }

  .card {
    padding: 30px 24px;
  }

  .show-info h3 {
    font-size: 24px;
  }

  .show-popup-content {
    padding: 28px;
  }

  .close-video {
    top: 18px;
    right: 22px;
    font-size: 42px;
  }

  .social-icons a {
    width: 46px;
    height: 46px;
  }

  .floating-listen {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 38px;
  }

  .logo img {
    height: 38px;
    max-width: 220px;
  }

  .section h2 {
    font-size: 32px;
  }

  .show-item {
    padding: 24px 24px 68px 24px;
  }
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav {
    height: 72px;
    padding: 0 20px;
    flex-direction: row;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 14px;
    right: 18px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9998;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
  }

  .hero-content {
    padding-top: 110px;
  }
}
@media (max-width: 768px) {
  .hero {
    background-position: 20% center !important;
  }
}


/* MOBILFIX: hamburger, hero-knappar och små thumbnails */
@media (max-width: 768px) {

  .nav {
    height: 68px;
    padding: 0 18px;
    flex-direction: row;
  }

  .logo {
    z-index: 10001;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 10002;
  }

  .nav-links {
    position: fixed !important;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(18px);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease;
    z-index: 10000;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    margin: 0;
    font-size: 20px;
    line-height: 1.1;
    font-family: "Merriweather", serif;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    font-size: 18px;
    padding: 10px 20px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }

  .buttons a {
    display: inline-block;
    width: auto;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 11px 18px;
    font-size: 14px;
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
  }

  .video-card {
    border-radius: 14px;
  }

  .video-card span {
    display: none;
  }

  .video-card::after {
    width: 34px;
    height: 34px;
    font-size: 12px;
    padding-left: 2px;
  }

  .video-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .video-grid {
    gap: 8px;
  }

  .buttons a {
    padding: 10px 14px;
    font-size: 13px;
  }

  .nav-links a {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .video-card::after {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    align-items: flex-end;
    text-align: right;
    padding: 120px 24px 60px;
  }

  .hero p {
    max-width: 320px;
    margin-left: auto;
  }

  .buttons {
    justify-content: flex-end;
  }

  .social-icons {
    justify-content: flex-end;
  }
}

/* Mobil: mer kompakta spelningar + socialikoner */
@media (max-width: 768px) {
  .show-item {
    padding: 18px 58px 18px 20px;
    gap: 4px;
    border-radius: 18px;
  }

  .show-date {
    font-size: 14px;
    line-height: 1.2;
  }

  .show-info h3 {
    font-size: 17px;
    margin-bottom: 2px;
  }

  .show-info p {
    font-size: 13px;
    line-height: 1.3;
  }

  .show-info-button {
    right: 14px;
    bottom: 50%;
    transform: translateY(50%);
    width: 32px;
    height: 32px;
  }

  .shows-list {
    gap: 10px;
    margin-top: 32px;
  }

  .social-icons {
    display: grid;
    grid-template-columns: repeat(4, 46px);
    justify-content: center;
    gap: 12px;
  }

  .social-icons a {
    width: 46px;
    height: 46px;
    margin: 0;
  }
}
.floating-listen {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #f3efe7;
  background: rgba(18,18,18,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  transition: all 0.25s ease;
}

.floating-listen i {
  font-size: 18px;
}

.floating-listen:hover {
  background: rgba(29,185,84,0.95);
  color: white;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .floating-listen {
    right: 14px;
    bottom: 14px;
    padding: 11px 15px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .show-item {
    padding: 16px 50px 16px 16px;
    gap: 2px;
    border-radius: 16px;
  }

  .show-info h3 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .show-info p {
    font-size: 12px;
    line-height: 1.2;
  }

  .show-date {
    font-size: 13px;
  }

  .shows-list {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .logo img {
    height: 42px;
    max-width: 240px;
  }
}
