/* resources/main.css */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

body{
    font-family:'PT Sans',sans-serif;
    background:#0f0f0f;
    color:#fff;
    overflow-x:hidden;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
}

h2 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 500;
}

h3 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.4em, 2.6vw, 2rem);
    font-weight: 300;
}

h4 {
    font-family: 'PT Sans', san-serif;
    font-size: clamp(1.4rem, 1.8vw, 1.2rem);
    font-weight: 500;
}

h5 {
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(.8rem, 1.8vw, 1.1rem);
    font-weight: 700;
}


p {
    font-family: 'PT Sans', sans-serif;
    font-size: clamp(.8rem, 1.8vw, 1rem);
    font-weight: 500;
}


img{
    width:100%;
    display:block;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:100px 0;
}

.center{
    text-align:center;
}

/* NAV */

.nav-wrap{
    position:fixed;
    width:100%;
    z-index:999;
    background:transparent;
    backdrop-filter:blur(0px);
    transition: 0.4s ease;
}

.nav-wrap.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo img{
    width:100px;
    height: auto;
}

.menu{
    display:flex;
    gap:30px;
}

.menu a{
    font-family: 'Merriweather', serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color:#fff;
    text-decoration:none;
    transition: .3s ease;
}

.menu a:hover{
    color:#cb1212;
}

/* MOBILE MENU */

.menu-btn{
    display:none;
    width:40px;
    height:40px;
    position:relative;
    cursor:pointer;
    z-index:1001;
}

.menu-btn span{
    position:absolute;
    width:100%;
    height:2px;
    background:#fff;
    left:0;
    transition:.4s ease;
}

.menu-btn span:nth-child(1){
    top:10px;
}

.menu-btn span:nth-child(2){
    top:19px;
}

.menu-btn span:nth-child(3){
    top:28px;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 19px;
}

/* =========================
   FULL SCREEN MENU FIX
========================= */

.full-menu-header {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.full-menu-header img {
    width: 60px;
    border-radius: 50%;
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    transition: 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.2);
    opacity: 0.7;
}

.full-menu a {
    position: relative;
    font-family: 'Merriweather', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 2px;
    transition: 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.full-menu a:hover {
    transform: translateY(-5px);
    opacity: 0.6;
}

.full-menu {
    position: fixed;
    inset: 0;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;

    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;

    transition: .5s ease;
    z-index: 998; /* below nav so hamburger stays visible */
}
.full-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* HERO */

.hero-section{
    position:relative;
    overflow:hidden;
    background:#000;
}


/* ANIMATED RADIAL GLOW */

.hero-section::before{
    content:"";

    position:absolute;
    inset:-20%;

    background:
        radial-gradient(circle at 30% 30%, rgba(255,0,150,.3), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0,150,255,.2), transparent 40%),
        #000;
    animation:pulseGradient 3s ease-in-out infinite;

    z-index:0;
}


/* CONTENT ABOVE */

.hero-section > *{
    position:relative;
    z-index:1;
}


/* ANIMATION */

@keyframes pulseGradient{

    0%{
        transform:scale(1);
        opacity:0.7;
    }

    50%{
        transform:scale(1.4);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:0.7;
    }

}

.hero{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background: #222;
}
.hero-content {
    display:flex;
    flex-direction: column;
    line-height: 1;
    align-items:center;
}
.hero-small-title{
    padding: 24px;
    font-family: 'PT Sans', sans-serif;
    letter-spacing: .2em;
}

.hero-title{
    position:relative;
    z-index:2;
    margin: 0;
    font-family:'Merriweather',serif;
    font-size:clamp(3rem,8vw,7rem);
    font-weight: 500;
    color: #fff;
}

.hero-img-grid{
    display:flex;
    gap:20px;
    margin:-30px auto;
    position:relative;
    z-index:1;
}

.hero-img-1 {
    width: 400px;
    height: auto;
    margin: 0 auto;
    animation:bopImg 3s ease-in-out infinite;
}
.hero-img-2 {
    width: 300px;
    height: auto;
    margin: 0 auto;
    animation:bopImg-2 3s ease-in-out infinite;
}

/* ANIMATION HERO */

@keyframes bopImg{

    0%{
        transform:translateY(4px);
    }

    50%{
        transform:translateY(0);
    }

    100%{
        transform:translateY(4px);
    }

}
@keyframes bopImg-2{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(4px);
    }

    100%{
        transform:translateY(0);
    }

}


/* BUTTON */

.button{
    display:inline-block;
    padding: 15px 50px;
    background:#cb1212;
    color:#fff;
    text-decoration:none;
    font-weight: 300;
    margin-top:30px;
    cursor:pointer;
    border-radius: 10px;
    border: none;
    transition: .3s ease;
    font-family: 'Merriweather', serif;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    transform: scale(1.04);
    background: #b90e0e;
}

.outline-btn{
    display:inline-block;
    padding: 15px 50px;
    background:transparent;
    color:#333;
    text-decoration:none;
    font-weight: 300;
    margin-top:30px;
    cursor:pointer;
    border-radius: 10px;
    border: solid 2px #ddd;
    transition: .3s ease;
    font-family: 'Merriweather', serif;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.outline-btn:hover {
    transform: scale(1.04);
    background: #ddd;
    color: #333;
}


/* =========================
   SVG SLIDING BANNER
========================= */

.sm-section {
    padding-top: 24px !important;
    background: linear-gradient(#fff 50%, #f4f4f4 100%);
}

.banner {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.wave-banner-svg {
    width: 100%;
    height: 200px;
    display: block;
}

/* Text styling */
.wave-text {
    fill: #777;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Merriweather', serif ;
    white-space: nowrap;
}

/* Optional fade edges (if you already use them, keep yours) */
.banner-fade-left,
.banner-fade-right {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.banner-fade-left {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.banner-fade-right {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:24px;
}

.card{
    background:rgba(111, 111, 111, 0.5);
    padding:30px;
    border-radius:20px;
    transition: 200ms;
    cursor: pointer;
}
div.card:hover{
    transform: translateY(-8px);
}

.card img{
    border-radius:20px;
    margin-bottom:20px;
}

/* REVEAL LEFT */

.reveal{
    opacity:0;
    transform:translateX(-100px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateX(0);
}


/* REVEAL UP */

.reveal-up{
    opacity:0;
    transform:translateY(100px);
    transition:1s ease;
}

.reveal-up.active{
    opacity:1;
    transform:translateY(0);
}


/* DELAYS */

.delay-1{
    transition-delay:0.1s;
}

.delay-2{
    transition-delay:0.2s;
}

.delay-3{
    transition-delay:0.3s;
}

.delay-4{
    transition-delay:0.4s;
}
/* ARTISTS */

section.artist {
    background: #f4f4f4;
    color: #444;
}

.artist-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    justify-items:center;
    margin-top:80px;
}

.artist-wrapper{
    text-align:center;
}

.artist-img{
    cursor:pointer;
    display: flex;
    flex-direction: column;
    gap:14px;
}

.artist-img img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:999px;
    transition:.4s ease;
}

.artist-img img:hover{
    transform:scale(1.05);
}

.load-more-wrap{
    margin-top:50px;
}

/* MODAL */

.artist-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.4s ease;
    z-index:9999;
    padding:20px;
}

.artist-modal.active{
    opacity:1;
    visibility:visible;
}

.artist-modal-card{
    width:min(1000px,100%);
    display:grid;
    grid-template-columns:30% 70%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding: 42px;
}

h2#modalTitle, p#modalDesc {
    color:#444;
}

.artist-socials a {
    color:#444 !important;
    padding:4px 8px;
    border:solid 2px #444;
    border-radius:4px;
    transition: .3s ease;
}

.artist-socials a:hover {
    background: #444;
    color:#fff !important;
}

.artist-modal-image{
    height:200px;
    width:200px;
    background-size:cover;
    background-position:center;
    border-radius: 999px;
}

.artist-modal-content{
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.artist-socials{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.artist-socials a{
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #fff;

    border-radius: 50%;
    text-decoration: none;

    transition: 0.3s;
}

.artist-socials a:hover {
    transform: scale(1.1);
}

.artist-socials i {
    font-size: 22px;
}

.modal-close{
    position:absolute;
    top:30px;
    right:30px;
    font-size:2rem;
    cursor:pointer;
}

/* TESTIMONIAL */

.testimonial-section {
    background: #f4f4f4;
    padding:42px 0 100px 0;
}
.testimonial-slider-wrapper{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:30px;
    transition:.5s;
}

.testimonial-card{
    flex: 0 0 calc((100% - 60px) / 3);
    background:#888;
    padding:30px;
    border-radius:20px;
}
.testimonial-card p {
    font-family: 'Merriweather', serif;
    font-weight: 200;
    font-size: 1.2em;
    padding-bottom:10px;
}

.slider-controls{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.slider-controls button{
    padding:15px;
    cursor:pointer;
    border-radius: 100px;
    border:none;
    background: #f4f4f4;
    border:solid 1px #ddd;
    color: #000;
}

.slider-controls button:hover {
    background: #ddd;
    
}

/* FOOTER */

.footer{
    background-color: #111;
}

.footer-cta{
    text-align:center;
    padding:80px 20px;
}

.footer-bottom{
    display:grid;
    grid-template-columns:.2fr 1.6fr .2fr;
    padding:0px 24px;
    align-items:center;
    overflow: hidden;
}

.footer-logo{
    text-align:center;
    font-family:'Bodoni Moda',serif;
    font-size: 8em;
    position: relative;
    margin-bottom: -.5em;
}

.left {
    text-align: left;
}
.right {
    text-align: right;
}


/* MOBILE */

@media(max-width:768px){

    .desktop-menu{
        display:none;
    }

    .menu-btn{
        display:flex;
    }
    .wave-banner-svg {
        height: 100px;
    }
    .cards{
        grid-template-columns:1fr;
    }

    .artist-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        padding-top: 24px;
    }

    .artist-img img{
        width:150px;
        height:auto;
        object-fit:cover;
        border-radius:999px;
        transition:.4s ease;
    }

    .artist-modal-card{
        grid-template-columns:1fr;
        padding: 34px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .artist-modal-content{
        text-align: center;
        padding: 34px;
    }

    .testimonial-card{
        min-width:100%;
    }
    .testimonial-section {
        padding-bottom: 42px;
    }

    .footer-bottom{
        grid-template-columns:1fr;
        text-align:center;
        gap:14px;
        display: flex;
        flex-direction: column;
    }

    .footer-logo{
        order:3;
        font-size: 5em;
        line-height: 1;
        margin-bottom:-.3em;
    }
    .hero-img-1 {
        width:60%;
    }

    .hero-img-2 {
        width:40%;
    }

}