html{
    scroll-behavior: smooth;

    font-size: 18px;
}

body{  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
background: #f0f0f0;}


.gradient-text {

background: linear-gradient(
    90deg,
    #ff6b57 0%,
    #ff3b86 40%,
    #ff0084 100%
);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}



h3{
    font-size: 1.5rem;
    color: #171c22;
    margin-bottom: 1rem;
}

p{
    color: #171c22;
}

.hero {
    position: relative;
    min-height: 70vh;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.40) 0%,
            rgba(0,0,0,.20) 60%,
            rgba(0,0,0,0) 100%
        ),
        url("images/hero2.png") center center / cover no-repeat;

    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {

    .hero {
        min-height: 80vh;
    }

}

/* NAVBAR
================================================== */

.hero .navbar {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1.25rem 0;
}

.hero .navbar-brand {
    color: #fff;
    text-decoration: none;
    letter-spacing: .08em;
    font-weight: 700;
}

.hero .navbar-brand:hover {
    color: #fff;
}

.hero .material-symbols-outlined {
    color: #fff;
    vertical-align: middle;
}

.hero .nav-link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color .2s ease;
}

.hero .nav-link:hover,
.hero .nav-link:focus {
    color: #FF0084;
}

.hero .navbar-toggler {
    border: 0;
    padding: 0;
}

.hero .navbar-toggler:focus {
    box-shadow: none;
}

.hero .navbar-toggler .material-symbols-outlined {
    font-size: 2rem;
    color: #fff;
}


.hamburger{
    width:28px;
    height:22px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;
}

.hamburger span{

    display:block;

    width:100%;
    height:3px;

    background:#fff;
    border-radius:2px;

    transition:
        transform .3s ease,
        opacity .25s ease;

}


.navbar-toggler.collapsed .hamburger span:nth-child(1){
    transform:none;
}

.navbar-toggler.collapsed .hamburger span:nth-child(2){
    opacity:1;
}

.navbar-toggler.collapsed .hamburger span:nth-child(3){
    transform:none;
}

/* Open */

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1){
    transform:
        translateY(9px)
        rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2){
    opacity:0;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3){
    transform:
        translateY(-9px)
        rotate(-45deg);
}
/* HERO CONTENT
================================================== */

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-copy {
    color: #fff;
    max-width: 700px;
}

.hero h1 {
    margin-bottom: 1rem;
    line-height: 1.05;
}

.hero h1 span {
    display: block;
}

.hero .lead {
    margin-bottom: 2rem;
    font-size: 1.35rem;
    font-weight: 500;
 ;
    color: #fff;
}


/* BUTTONS
================================================== */
.btn-primary {

    background: linear-gradient(
        90deg,
        #ff6b57 0%,
        #ff3b86 40%,
        #ff0084 100%
    );

    border: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: .75rem;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease;

}

.btn-primary:hover {

    filter: brightness(1.08);

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(255,0,132,.30);

}
.btn-primary:active {

    transform: translateY(0);

    filter: brightness(.95);

}
.btn-primary:focus,
.btn-primary:focus-visible {

    box-shadow:
        0 0 0 .25rem rgba(255,0,132,.25);

}

.btn {
    padding: .85rem 1.6rem;
    border-radius: .75rem;
}

/* LINKS
================================================== */

a {
    color: #FF0084;
}

main a {
    text-decoration: underline;
}

main a:hover {
    text-decoration: none;
}


/* FOOTER
================================================== */

.site-footer{

    padding:2rem 0;

    background:#12171d;

}

.footer-inner{

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

}

.footer-inner p{

    margin:0;
    color:rgba(255,255,255,.6);

    font-size:.95rem;

}

.footer-inner nav{

    display:flex;
    gap:2rem;

}

.footer-inner a{

    color:rgba(255,255,255,.6);
    text-decoration:none;

    transition:color .2s ease;

}

.footer-inner a:hover{

    color:#fff;

}

@media(max-width:767px){

    .footer-inner{

        flex-direction:column;
        gap:1rem;
        text-align:center;

    }

}



/* MAIN
================================================== */

.site-main {

    background-color: #f3f3f4;

    background-image:
        radial-gradient(
            circle,
            rgba(0,0,0,.2) 1px,
            transparent 1px
        );

    background-size: 26px 26px;

}

/* INTRO CARDS
================================================== */

.intro-section {
    padding: 2rem 0;
}

.intro-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;

    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
}

.intro-card p:first-of-type{
    font-weight:500;
}

.intro-copy {
    flex: 1;
    max-width: 650px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.45rem;

    margin-bottom:.75rem;

    color:#FF0084;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.musicicons{
    font-size:1.25rem;
    line-height:1;
}
.intro-card h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.1;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.intro-image {
    flex: 0 1 280px;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.intro-image img {
    width: 280px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.portrait-frame {
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 50%;
}

.portrait-frame img {
    display: block;
    width: 280px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}


/* REVERSE LAYOUT
================================================== */

.intro-card--reverse {
    flex-direction: row-reverse;
}


/* OPTIONAL HOVER
================================================== */

.intro-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

/* MOBILE NAVIGATION
================================================== */

@media (max-width: 991px) {

    .hero .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 1rem;
        background: rgba(18, 23, 29, .95);
        backdrop-filter: blur(10px);
    }

    .hero .nav-link {
        margin-left: 0;
        padding: .75rem 0;
    }

}

/* MOBILE
================================================== */

@media (max-width: 767px) {

    .intro-card,
    .intro-card--reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }

    .intro-image {
        order: 1;
        flex: 0 0 auto;
        align-self: center;
        justify-content: center;
        margin: 0 auto;
    }

    .intro-copy {
        order: 2;
        max-width: 100%;
    }

    .intro-image img,
    .portrait-frame img {
        width: 180px;
    }

    .portrait-frame {
        padding: 8px;
    }

    .intro-card h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .intro-card p {
        font-size: 1rem;
    }

}

@media (max-width: 991px) {

    .intro-card,
    .intro-card--reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .intro-image {
        order: 1;
        margin: 0 auto;
    }

    .intro-copy {
        order: 2;
        max-width: 700px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 2.5rem auto 0;
        text-align: left;
    }

}



/* MIXES
================================================== */

/* FEATURED MIXES
================================================== */

.mixes-section{
    padding:5rem 0;
}

.section-header{
    text-align:center;
    max-width:720px;
    margin:0 auto 4rem;
}

.section-header h2{
    margin:1rem 0;
    font-size:clamp(2rem,3vw,3rem);
}

.section-header p:last-child{
    color:#666;
    font-size:1.1rem;
    line-height:1.7;
}

.mix-grid{

    display:grid;
    gap:2.5rem;

}

.mix-card{

    background:#fff;
    border-radius:1.5rem;
    overflow:hidden;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.mix-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.mix-card iframe{

    border:0;

}

.mix-info{

    padding:1.5rem;

}

.mix-info h3{

    margin-bottom:.4rem;

}

.mix-info p{

    margin:0;

    color:#666;

    font-size:.95rem;

}

.mix-footer{

    text-align:center;

    margin-top:3rem;

}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p:last-child {
    color: #666;
    line-height: 1.6;
}

.mix-grid {
    display: grid;
    gap: 2rem;
}

.mix-item {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.mix-item iframe {
    border: 0;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.feature-list .material-symbols-outlined{
    color: #FF0084;
    font-size: 1.2rem;
}


/* RESPONSIVE GRID
================================================== */

@media (min-width:768px){

    .mix-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (min-width:1200px){

    .mix-grid{
        grid-template-columns:repeat(3,1fr);
    }

}


/* CONTACT
================================================== */

.contact-section {
    padding: 5rem 0;
}

.contact-card {

    background: #171c22;
    color: #fff;

    border-radius: 1.5rem;
    padding: 4rem;

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

}

.contact-copy {
    flex: 1;
    max-width: 650px;
}

.contact-copy h2 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-copy p {
    color: rgba(255,255,255,.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-links a {

    display: flex;
    align-items: center;
    gap: .75rem;

    color: #fff;
    text-decoration: none;
    font-weight: 500;

    transition: color .2s ease;

}

.contact-links a:hover {
    color: #FF0084;
}

.contact-links .material-symbols-outlined, .fa-brands {
    color: #FF0084;
}

.contact-section .eyebrow {
    color: #FF0084;
}


/* MOBILE
================================================== */

@media (max-width: 767px) {

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .contact-links {
        align-items: center;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
}