/*
Theme Name: FaithdojoTheme
Author: Anthony DiMeo
Description: Custom Faithdojo WordPress theme
Version: 1.0
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.snap-container {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y proximity;
}

.snap-section {
  min-height: 100vh;
  scroll-snap-align: start;
  
}
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  color:#fff;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-wrapper {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
   left: 58%;
  width: 650px;
  height: 900px;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 35%,
    rgba(0, 0, 0, 0.85) 55%,
    rgba(0, 0, 0, 0.35) 75%,
    transparent 100%
  );

  mask-image: radial-gradient(
    ellipse at center,
    black 35%,
    rgba(0, 0, 0, 0.85) 55%,
    rgba(0, 0, 0, 0.35) 75%,
    transparent 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 6%;
}

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

.nav-links ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero-content {
    position: absolute;

    left: 13%;
    top: 52%;

    transform: translateY(-50%);

    width: 520px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    text-align: left;

    color: white;

    z-index: 20;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 0.92;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 14px 34px;
    border-radius: 4px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 42px;
  background: white;
  color: #167d9c;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
}

.social-icons {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  display: flex;
  flex-direction: column;
  gap: 28px;
}

.social-icons a {
  color: white;
  font-size: 26px;
}
.music-section {
  min-height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 8%;
}

.music-player {
  position: relative;
  isolation: isolate;

  width: min(100%, 900px);
  min-height: 580px;

  overflow: hidden;
  border-radius: 28px;
  background: #000;

  box-shadow:
    0 0 25px rgba(255, 220, 235, 0.35),
    0 0 70px rgba(255, 120, 190, 0.22);
}

.album-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.album-bg img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center center;
}

/* Darkens the left side for text while keeping artwork visible */
.music-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 28%,
    rgba(0, 0, 0, 0.38) 58%,
    rgba(0, 0, 0, 0.55) 100%
  );
 pointer-events: none;
  z-index: 2;
}
.player-content {
  position: relative;
  z-index: 3;

  width: 68%;
  min-height: 580px;
  padding: 60px;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.album-info h2 {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .8;
}

.album-info h3 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 15px 0;
}

.album-info p {
  max-width: 420px;
  opacity: .85;
  margin-bottom: 40px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 620px;
}

#playBtn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: white;
  color: black;
  font-size: 20px;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

#progress {
  width: 100%;
  cursor: pointer;
}

.listen-btn {
  display: inline-block;
  width: fit-content;
  margin-top: 45px;
  padding: 15px 34px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
}