/* Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff; /* light gray background */
  color: #111;
}


/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: none;      /* fully transparent at top */
  /* background-image: none;
  box-shadow: none;
  backdrop-filter: none; */

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 6vw;

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.25s ease,
    backdrop-filter 0.35s ease,
    background-image 0.35s ease;
}

/* when user scrolls */
.nav.scrolled {
  background-image: url("assets/nav-image-3840-400px-darker.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 0.55rem 6vw;
}

/* links stay white all the time */
.nav-links a {
  text-decoration: none;
  color: #fff;
  position: relative;
}


.logo img {
  height: 36px; /* adjust if you want smaller */
  width: auto;
  display: block;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: #fff;  
  transition: width 0.2s ease;
  font-weight: bold;
}


.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER BUTTON */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  width: 36px;     /* ensures symmetrical container */
  height: 32px;    /* enough height for perfect vertical spacing */
  position: relative;
  z-index: 999;    /* stays above mobile menu */
}

/* hamburger lines */
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;              /* cleaner thickness */
  background: #ffffff;       /* match your logo color */
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

/* top, middle, bottom lines */
.nav-toggle span:nth-child(1) {
  top: 6px;
}

.nav-toggle span:nth-child(2) {
  top: 14px;
}

.nav-toggle span:nth-child(3) {
  top: 22px;
}

/* --- OPEN STATE (turns into X) --- */
.nav-toggle--open span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.nav-toggle--open span:nth-child(2) {
  opacity: 0; /* hide middle bar */
}

.nav-toggle--open span:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}

/* Desktop stays as-is */
.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.95rem;
}

.nav {
  backdrop-filter: blur(6px);
}


/* MOBILE NAV BEHAVIOR */
@media (max-width: 768px) {

  /* show hamburger, hide inline links by default */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 56px 0 auto 0; /* below nav bar */
    background: rgba(5, 7, 22, 0.96);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 1.5rem 1rem 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links a {
    font-size: 1rem;
  }

  /* when open */
  .nav-links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
/* HERO */
.hero-wrapper {
  width: 100%;
  margin: 0;
  padding: 2.5rem 6vw 1.75rem;
  border-radius: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  padding-top: 60px; /* space for fixed nav */
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 200px);
}


.album-cover {
  width: 100%;
  max-width: 360px;      /* smaller cover so everything fits */
  aspect-ratio: 1 / 1;
  background: #cfcfcf;
  display: block;
  align-items: center;
  justify-content: center;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-info h1 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.album-info h2 {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #bbb;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.album-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.4rem;
}


#album-cover {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
}

#album-link {
  display: block;
  position: relative;
}

#album-link img {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Slight fade & zoom on hover */
#album-link:hover img {
  opacity: 0.75;
  transform: scale(1.02);
}

/* Overlay container */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* So clicks go through */
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* SHOW overlay on hover */
#album-link:hover .play-overlay {
  opacity: 1;
}

/* Play button icon */
.play-icon {
  width: 58px;
  height: 58px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  border-radius: 50%;
  position: relative;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
 /* Add to your library button AKA Listen Now */
.listen-button {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background: #ffffff;
  color: #000;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.listen-button:hover {
  background: #e2e2e2;
  color: #000;
  transform: translateY(-2px);
}


/* Controls */
.carousel-controls {
  display: block;  /* uncomment if needed - removed so they are centered on mobile */
  gap: 0.75rem;
  align-items: center;
}

.carousel-controls button {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.carousel-controls button:hover {
  background: #fff;
  color: black;
}

/* Thumbnails */
.thumb-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.thumb {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  outline: 1px solid transparent;
  transition: transform 0.15s ease, outline-color 0.15s ease;
}

.thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}


.thumb.active,
.thumb:hover {
  transform: translateY(-2px);
  /* outline-color: #111; */
}

/* GENERIC PAGE SECTIONS */
.page-section {
  background: white;
  border-radius: 12px;
  margin: 3rem auto;
  padding: 3rem 0;
  width: min(1100px, 90%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}


.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #333;
}


.section-intro {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.75rem;
}

/* ABOUT text */
#about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  max-width: 52rem;
}

/* CONTACT */
.contact-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
   border: 1px solid #AFC8EA;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  background: #333;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: #333;
}

/* YOUTUBE VIDEOS */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.video-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-title {
  font-size: 0.9rem;
  color: #333;
}

/* --- MINIMALIST YOUTUBE SLIDER --- */
/* ---------- VIDEOS SECTION ---------- */

.videos-slider {
  max-width: 900px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.videos-window {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  background: #000;
}

/* sliding track */
.videos-track {
  display: flex;
  transition: transform 0.45s ease-in-out;
}

.video-slide {
  min-width: 100%;
}

/* video frame */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* overlay arrows */
.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-nav-prev {
  left: 12px;
}

.video-nav-next {
  right: 12px;
}

.video-nav:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.05);
}

/* dots under video */
.video-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.video-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.25);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.video-dot.active {
  width: 7px;
  height: 7px;
  opacity: 1;
  background: #111;
  transform: scale(1.1);
}

/* ---------- MOBILE TWEAKS ---------- */

@media (max-width: 768px) {
  #videos.page-section {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem 0 2.5rem;
  }

  #videos .section-inner {
    padding: 0 5vw;
  }

  .videos-slider {
    max-width: 100%;
    gap: 0.75rem;
  }

  .videos-window {
    border-radius: 12px;
  }

  .video-nav {
    width: 32px;
    height: 32px;
  }

  .video-dots {
    margin-top: 0.5rem;
  }
}

/* FOOTER */
/* FOOTER */
.site-footer {
  background: radial-gradient(circle at top center, #28305e 0%, #050716 55%, #020309 100%);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(169, 178, 255, 0.3);
}

/* main layout */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.85rem;
  color: #d5daf9;
}

/* LEFT SIDE */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 32px;          /* tweak if you want larger/smaller */
  width: auto;
}

.footer-wordmark {
  letter-spacing: 0.35em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-text {
  opacity: 0.9;
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* social row (right, top) */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-social-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* reuse your YouTube icon style */
.yt-icon {
  width: 24px;
  height: 16px;
  border-radius: 4px;
  background: #bbb;
  position: relative;
  transition: transform 0.15s ease;
}

.yt-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.footer-social-link:hover .yt-icon {
  transform: scale(1.05);
}

/* footer nav (right, bottom) */
.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #ffffff;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* MOBILE FOOTER LAYOUT */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}


.footer-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #fff;
}

.footer-youtube:hover .yt-icon {
  transform: scale(1.05);
}

/* Simple YouTube-style icon */
.yt-icon {
  width: 24px;
  height: 16px;
  border-radius: 4px;
  background: #f13333;
  position: relative;
  transition: transform 0.15s ease;
}

.yt-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.yt-label {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 1.75rem 5vw 2.25rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    min-height: auto;
    padding-top: 60px;
  }

  .album-cover {
    max-width: 260px;
    margin: 0 auto;
  }

  .album-info h1 {
    font-size: 1.5rem;
  }

  .album-info p {
    font-size: 0.85rem;
  }

  .thumb-row {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.2rem;
  }

  .thumb img {
    width: 52px;
    height: 52px;
  }

  /* make the whole section feel full-width and airy */
  #videos.page-section {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 0;
    box-shadow: none;
    padding: 2rem 0 2.5rem;
  }

  #videos .section-inner {
    padding: 0 5vw;
  }

  /* stack arrows + video nicely */
  .videos-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .videos-window {
    width: 100%;
  }

  .video-slide {
    min-width: 100%;
  }

  .video-embed {
    border-radius: 16px;
  }

  .video-title {
    text-align: center;
    font-size: 0.9rem;
  }

  .video-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .video-nav#video-prev,
  .video-nav#video-next {
    align-self: center;
  }

  .videos-slider {
    position: relative;
  }

  .videos-slider > .video-nav#video-prev,
  .videos-slider > .video-nav#video-next {
    order: 2;
    margin: 0 0.25rem;
  }

  .videos-slider {
    display: flex;
    flex-direction: column;
  }

  .videos-slider::after {
    content: "";
    display: block;
  }
}



