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

:root{
  --container-max: 72rem;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --space-1: clamp(0.5rem, 1.5vw, 0.75rem);
  --space-2: clamp(0.75rem, 2vw, 1.25rem);
  --space-3: clamp(1rem, 3vw, 2rem);
  --space-4: clamp(1.5rem, 4vw, 3rem);
  --space-5: clamp(2rem, 5vw, 4rem);
  --radius-1: 0.5rem;
  --radius-2: 0.75rem;
  --shadow-soft: 0 0.75rem 2rem rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 1.5rem rgba(255, 215, 0, 0.25);
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: clamp(0.95rem, 0.6vw + 0.9rem, 1.125rem);
}

/* Optional scrollbar styling for dark theme */
::-webkit-scrollbar {
  width: 1.25rem;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 0.375rem;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #450e2b;
    padding: var(--space-4) 0 var(--space-5);
}
.hero-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
}
.hero img{
    width: min(32rem, 90vw);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-soft);
}
.hero-text{
    max-width: 60rem;
    width: 100%;
}

body {
    background-color: #111111;
    color: #f5f5f5;
    font-family: Anton, oswald;
    line-height: 1.6;
    overflow-x: hidden;
}

.container{
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

@supports (width: min(100% - 2rem, 72rem)){
  .container{
    width: min(100% - (2 * var(--gutter)), var(--container-max));
    padding-inline: 0;
  }
}

.header-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: var(--space-3);
}


.header {
  height: 100%;
  padding: var(--space-2) 0;
  background-color: #111;
  color: #fff;
}

.header-center{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: clamp(2rem, 3vw, 3rem);
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  flex: 1 1 16rem;
  margin-right: 0.5rem;
  margin-left: 0;
  background: none;
  border: none;
  color: #1db954;
  cursor: pointer;
  margin-bottom: 0;
  padding-bottom: 0.25rem;
  justify-self: start;
  min-width: 0;
}

.header-center {
  flex: 0 1 auto;
  justify-content: center;
  margin-right: 0;
  margin-top: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-self: center;
  transform: translateX(-0.75rem);
}

.header-center h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.1rem);
  line-height: 1;
  margin: 0;
  text-shadow: 2px 2px 8px #0ee4d3;
  text-align: center;
  padding-bottom: 0.15em;
  display: block;
}

.header-right {
  flex: 1 1 16rem;
  gap: var(--space-2);
  margin-right: 0;
  margin-top: 0;
  flex-wrap: nowrap;
  margin-bottom: 0;
  justify-content: flex-end;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-self: end;
  white-space: nowrap;
  min-width: 0;
  width: 100%;
}

.play-pause-button {
  background: #1db954;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #f5f5f5;
  padding-top: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 0.5rem;
  border-radius: 999px;
}

.play-pause-button:hover {
  
  background-color: #1db954; /* Spotify green vibe */
  box-shadow: 0 0 0.625rem 0.125rem rgba(255, 255, 255, 0.685);
}

.play-pause-button svg {
  display: block;
}

.song-title {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: bold;
  color: #f5f5f5;
  margin-left: 0.625rem;
  margin-top: 0.5rem;
}

.progress-container {
  flex-grow: 1;
  background: #444;
  height: 0.375rem;
  width:100%;
  cursor: pointer;
  position: relative;
  margin-left: 0.625rem;
  border-radius: 999px;
}

.progress {
  background: #1db954; /* Spotify green */
  height: 100%;
  width: 0%;
  border-radius: 0.25rem;
  transition: width 0.2s;
}

.time-info{
    font-size: 0.8rem;
    color:#f5f5f5;
    display: flex;
    justify-content: left;
    margin-left: 0.625rem;
}

.volume-container {
  display: flex;
  margin-top: 0;
  margin-left: 0.625rem;
  width:100%;
  max-width: 30rem;
}

#volume-slider {
  width: 100%;
  height: 0.375rem;
  accent-color: #1db954; /* Spotify green */
  background: #444;
  margin-top: 0;
  cursor: pointer;
  border-radius: 999px;
}

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

p{
    font-family: Anton, urbanist;    
    color: #f5f5f5;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.stream-link-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    margin-left: auto;
    margin-bottom: -1.563rem;
}

.stream-link{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease, color 0.2s ease;
    font-size: 0.75rem;
    line-height: 1.5;
    gap: 0.25rem;
}

.stream-link p{
    margin: 0.25rem 0 0;
    line-height: 1.1;
}

@media (min-width: 601px){
    .stream-link{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .stream-link img,
    .stream-link svg{
        width: 28px;
        height: 28px;
        display: block;
    }

    .header-right{
        margin-right: calc(-1 * var(--gutter));
    }
}

.stream-link:hover img{
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px #FFD700);
}

.stream-link:hover .envelope_icon{
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px #FFD700);
}

.stream-link:active img{
    transform: scale(0.95);
    filter:drop-shadow(0 0 8px #FFFFFF);
}
.stream-link:hover p{ 
    color:#FFD700;
}
.stream-link:focus-visible{
    outline: 2px solid #FFD700;
    outline-offset: 4px;
    border-radius: 0.375rem;
}

.apple_icon,.spotify_icon,.youtube_icon,.instagram_icon,.soundcloud_icon,.envelope_icon{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 2.188rem;
    height: 2rem;
    margin-bottom: -0.625rem;
    padding: 0;
}

.envelope_icon{
    display: block;
    margin-left: auto;
    margin-right: auto;
    color:#f5f5f5;
    transition: color 0.3s ease;
    margin-bottom: -0.625rem;
    padding: 0;
}

/*.apple_link{
    text-align: center;
    font-family: Urbanist;
    color: #f5f5f5;
    text-decoration: none;
}*/

.soundcloud_icon, .youtube_icon{
    display: block;
    max-width: 3.5rem;
}



.tagline{
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-family: 'Urbanist' anton;
    font-style: italic;
    color: #eee;
    text-align:center;
    margin-top: var(--space-2);
    overflow-wrap: anywhere;
}

.bio{
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    padding: 0;
    line-height: 1.7;
    font-family: 'Urbanist', anton;
    color: #eee;
    max-width: 60rem;
    margin: var(--space-3) auto 0;
    overflow-wrap: anywhere;
   
}

#media{
    padding: var(--space-4) 0;
    background-color: #111;
    color: #fff;
    text-align: center;
    padding-bottom: var(--space-5);
}

#media h2{
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-family: Urbanist, anton;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

.media-content{
    display:flex;
    align-items: center;
    gap: var(--space-3);
    background-color: #111;
    color: #fff;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
}

.media-left{
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
}

.media-right{
    display:flex;
    flex:2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.photo-gallery{
    flex: 1;
    width:100%;
    display:flex;
    flex-direction: column;
    gap:1rem;
    
}

.media-left img{
    width:100%;
    max-width: 37.5rem;
    border-radius: var(--radius-2);
    height:auto;
    object-fit:cover;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.media-left img:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.video-container{
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;/* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-soft);
    background: #000;
}

.second-video{
    margin-top: 16rem;
}

.video-container iframe{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2);
    border:none;
    margin: auto;
}


 
.contact-section{
    background-color:#450e2b;
    color:#fff;
    padding: var(--space-4) 0 var(--space-5);
    margin-top: 0;
    text-align: center;
}

#contact{
    scroll-margin-top: -6rem;
}

.contact-title{
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-family: 'Urbanist', anton;
    margin-bottom: 0.25rem;
    letter-spacing: 0.063rem;
    color:#FFD700
}

.contact-info{
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-family: Urbanist;
    margin-bottom: var(--space-2);
    color:#eee;    
}

.epk-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: var(--space-2);
    margin: var(--space-3) auto var(--space-4);
    max-width: 50rem;
}

.epk-grid--hero{
    width: 100%;
    margin: var(--space-2) auto 0;
    max-width: 44rem;
    padding-inline: 0;
}

.epk-grid--hero .epk-card{
    background: rgba(0, 0, 0, 0.18);
}

.epk-card{
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-1);
    padding: var(--space-2);
    background: rgba(0, 0, 0, 0.25);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.epk-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.epk-label{
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: #f5f5f5;
    opacity: 0.7;
}

.epk-value{
    font-size: 1.05rem;
    margin-top: 0.35rem;
}

form{
    display: flex;
    flex-direction: column;
    max-width: 45rem;
    margin: 0 auto;
    text-align: left;
    justify-content: left;
}

.hidden{
    display: none;
}


input, textarea{
    padding: 1vh 0.938rem;
    font-size: 1em;
    font-family: Urbanist, anton;
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 0.5rem;
    background-color: #1b1b1b;
    color: #f5f5f5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus{
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.25);
}

button{
    padding: 0.75rem 0.938rem;
    margin-top: 0.313rem;
    margin-bottom: 0.313rem;
    font-size: 1em;
    font-family: Urbanist;
    background-color: #f5f5f5;
    color: #333;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.3);
}

button:hover{
    background-color: #eee;
    transform: translateY(-2px);
    box-shadow: 0 0.375rem 1rem #FFD700;
}   

button:active{
    transform: scale(0.98);
    box-shadow: 0 0.18rem 0.5rem rgba(255,44,44,0.4);
}
button:focus-visible{
    outline: 2px solid #FFD700;
    outline-offset: 3px;
}

.mobile-cta button:focus-visible{
    box-shadow: none !important;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: var(--space-4) 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-content {
  margin: 0 auto;
}

.mobile-cta { display: none; }

@keyframes fade-up{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner,
.media-content,
.contact-section .container{
  animation: fade-up 0.6s ease both;
}

@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior: auto;
  }
  .hero-inner,
  .media-content,
  .contact-section .container{
    animation: none;
  }
  .play-pause-button,
  .media-left img,
  .epk-card,
  .stream-link,
  button{
    transition: none;
  }
}

/*For Cellphone Devices*/
@media screen and (max-width: 600px) {
    :root{
        --gutter: 1.25rem;
    }

    body{
        padding-bottom: calc(6.75rem + env(safe-area-inset-bottom));
    }

    .mobile-cta{
        position: fixed;
        left: var(--gutter);
        right: var(--gutter);
        bottom: calc(var(--space-2) + env(safe-area-inset-bottom));
        z-index: 999;

        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;

        padding: 0.6rem;
        border-radius: 999px;
        background: rgba(17, 17, 17, 0.85);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(10px);
    }

    .mobile-cta__btn,
    .mobile-cta__link{
        display: grid;
        place-items: center;
        gap: 0.25rem;
        padding: 0.55rem 0.25rem;
        border-radius: 999px;
        text-decoration: none;
        color: #f5f5f5;
        background: transparent;
        border: 1px solid transparent;
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
        filter: none !important;
        box-shadow: none !important;
        outline: none;
        appearance: none;
    }

    .mobile-cta__btn{
        background: #1db954;
        color: #f5f5f5;
        border-color: transparent;
    }

    .mobile-cta__btn:focus,
    .mobile-cta__btn:active{
        background: #1db954;
        color: #f5f5f5;
        border-color: transparent;
    }

    .mobile-cta,
    .mobile-cta *{
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-cta__link img{
        width: 22px;
        height: 22px;
        display: block;
    }

    .mobile-cta__label{
        font-size: 0.7rem;
        line-height: 1;
        opacity: 0.9;
    }

    .mobile-cta__btn svg,
    .mobile-cta__btn img{
        filter: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .mobile-cta__btn:hover,
    .mobile-cta__link:hover,
    .mobile-cta__btn:active,
    .mobile-cta__link:active{
        filter: none !important;
        box-shadow: none !important;
    }

    .mobile-cta__btn:active,
    .mobile-cta__link:active{
        transform: translateY(1px);
        border-color: rgba(29, 185, 84, 0.5);
    }

    .mobile-cta__btn:focus,
    .mobile-cta__link:focus{
        outline: none !important;
        box-shadow: none !important;
    }

    .mobile-cta__btn:focus-visible,
    .mobile-cta__link:focus-visible{
        outline: 1px solid rgba(29, 185, 84, 0.45) !important;
        outline-offset: 2px;
        box-shadow: none !important;
    }

    @media (hover: none){
        .mobile-cta__btn:focus,
        .mobile-cta__link:focus,
        .mobile-cta__btn:focus-visible,
        .mobile-cta__link:focus-visible{
            outline: none !important;
            box-shadow: none !important;
        }
    }

    input[type="range"]{
        margin: 0;
        padding: 0;
        cursor: pointer;
    }    
    .header {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
        padding-bottom: var(--space-2);
        margin-top: 0;
    }

    .header-inner{
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: flex-end;
    }

    .header-left,
    .header-right {
        justify-content: center;
    }

    .header-left {
        order: 2;
        justify-content: left;
        margin-left: 0;
        margin-bottom: var(--space-2);
        margin-top: 1rem;
       
    }

    .header-center {
        order: 1;
        justify-content: center;
        font-weight: bolder;
        margin-left: 0;
        margin-bottom: 0.25rem;

    }

    .header-right {
        order: 3;
        margin-top: 1.5rem;
        margin-bottom: 0;
        display: none;
    }

    .envelope_icon{
        width: 2rem;
        height: 1.5rem;
    }

    h2{
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .audio-player {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 50%;
    }

    audio {
        width: 100%;
        margin: 1rem 0;
    }

    .play-pause-button{
        width: auto;
        padding: 0.5rem;
        font-size: 1.5rem;
        margin-bottom:0;
        margin-top: 0.5rem;
        height: 3rem;
    }

    .volume-container {
        display: flex;
        margin-top: 0;
        margin-left: 0.625rem;
    }

    #volume-slider {
        width: 100%;
        height: 0.375rem;
        accent-color: #1db954; /* Spotify green */
        background: #444;
        margin-top: 0;
        cursor: pointer;
        pointer-events: auto;
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
        max-width: 100%;
    } 

    .contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    form{
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto;
        text-align: left;
    }


    img{
        width: 100%;
        max-height: none;
        max-width: 100%;
        margin: 0 auto;
    }

    .stream-link-container{
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.625rem;
        width: 100%;
    }

    .stream-link {
        align-items: center;
        text-align: center;
    }

    .media-content {
    display: block;
    flex-direction: column;
    align-items: center;
    }
    .media-left, .media-right {
    align-items: center;
    }
    .media-left img {
    max-width: 100%;
    }
    .media-content {
    flex-direction: column;
    align-items: center;
    }

    .media img{
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .stream-link img{
        width: 1.5rem;
        height: 1.5rem;
    }
}
