/* =========================================
   TRUE WORSHIPERS
   30 SOUNDS OF WORSHIP
   EVENT PAGE
========================================= */


/* =========================================
   GLOBAL EVENT PAGE
========================================= */

body{

    background:#050B18;

    color:white;

}


/* =========================================
   EVENT NAVIGATION
========================================= */

.event-header{

    position:absolute;

    top:0;
    left:0;

    width:100%;

    z-index:100;

}


.event-header nav{

    background:rgba(5,11,24,.35);

    backdrop-filter:blur(8px);

}


/* =========================================
   HERO
========================================= */

.sounds-hero{

    min-height:100vh;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    background:

    linear-gradient(
        rgba(0,0,0,.55),
        rgba(5,11,24,.9)
    ),

    url("../images/30sounds.jpg");

    background-size:cover;

    background-position:center;

}


.sounds-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(
        circle at center,
        rgba(255,215,0,.12),
        transparent 45%
    );

}


.sounds-hero-content{

    position:relative;

    z-index:2;

    max-width:1000px;

    margin:auto;

}


.event-label{

    color:#FFD700;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}


.sounds-hero h3{

    font-size:28px;

    letter-spacing:5px;

}


.sounds-hero h1{

    font-size:65px;

    color:#FFD700;

    letter-spacing:4px;

    margin:15px 0;

}


.sounds-hero h2{

    font-size:45px;

    margin:25px 0;

}


.gold-line{

    width:100px;

    height:3px;

    background:#FFD700;

    margin:25px auto;

    box-shadow:

    0 0 15px #FFD700;

}


.event-description{

    max-width:750px;

    margin:30px auto;

    line-height:2;

    font-size:18px;

}


.event-details{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin:35px 0;

}


.event-details div{

    padding:15px 25px;

    border:1px solid rgba(255,215,0,.6);

    background:rgba(255,255,255,.06);

    border-radius:30px;

    backdrop-filter:blur(8px);

}


.event-details span{

    margin-right:8px;

}


/* =========================================
   INTRODUCTION
========================================= */

.sounds-intro{

    padding:100px 0;

    text-align:center;

    background:#050B18;

}


.section-label{

    color:#FFD700;

    letter-spacing:4px;

    font-size:14px;

    font-weight:600;

}


.sounds-intro h2{

    font-size:45px;

    margin:20px 0;

}


.sounds-intro p{

    max-width:750px;

    margin:25px auto;

    line-height:2;

    font-size:17px;

}


.sounds-intro h3{

    color:#FFD700;

    font-size:30px;

    margin-top:45px;

}


/* =========================================
   SONG SUBMISSION
========================================= */

.song-submission{

    padding:100px 0;

    text-align:center;

    background:linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/expl.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}


    linear-gradient(
        rgba(8,19,38,.9),
        rgba(5,11,24,.95)
    ),

    url("../images/upper-room.jpg");

    background-size:cover;

    background-position:center;

}


.song-submission h2{

    color:#FFD700;

    font-size:45px;

    margin:20px 0;

}


.submission-intro{

    max-width:700px;

    margin:20px auto;

    line-height:2;

}


#songSubmissionForm{

    max-width:650px;

    margin:50px auto 20px;

    padding:40px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,215,0,.4);

    border-radius:25px;

    backdrop-filter:blur(12px);

}


#songSubmissionForm input,
#songSubmissionForm textarea{

    width:100%;

    padding:16px;

    margin:10px 0;

    border-radius:10px;

    border:1px solid rgba(255,215,0,.35);

    background:rgba(0,0,0,.35);

    color:white;

    font-family:'Poppins',sans-serif;

    outline:none;

}


#songSubmissionForm input:focus,
#songSubmissionForm textarea:focus{

    border-color:#FFD700;

    box-shadow:0 0 12px rgba(255,215,0,.2);

}


#songSubmissionForm input::placeholder,
#songSubmissionForm textarea::placeholder{

    color:#ccc;

}


#songSubmissionForm textarea{

    height:140px;

    resize:vertical;

}


.consent{

    display:flex;

    align-items:flex-start;

    gap:10px;

    text-align:left;

    margin:20px 0;

    font-size:13px;

    line-height:1.6;

    color:#ddd;

}


.consent input{

    width:auto !important;

    margin-top:4px !important;

}


.submission-note{

    max-width:650px;

    margin:20px auto;

    color:#aaa;

    font-size:13px;

    line-height:1.7;

}


/* =========================================
   30 SOUNDS
========================================= */

.thirty-sounds{

    padding:100px 0;

    text-align:center;

    background:#081326;

}


.thirty-sounds h2{

    color:#FFD700;

    font-size:45px;

    margin:20px 0;

}


.thirty-sounds > .container > p:not(.section-label){

    line-height:2;

}


.sounds-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:20px;

    margin-top:50px;

}


.sound-card{

    padding:30px 20px;

    min-height:180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        rgba(0,0,0,.75),
        rgba(5,11,24,.9)
    ),

    url("../images/frez.jpg");


    border:1px solid rgba(255,215,0,.3);

    border-radius:20px;

    transition:.4s;

}


.sound-card:hover{

    transform:translateY(-8px);

    border-color:#FFD700;

    box-shadow:

    0 0 25px rgba(255,215,0,.2);

}


.sound-card span{

    font-size:40px;

    color:#FFD700;

    font-weight:bold;

}


.sound-card h3{

    margin:10px 0;

}


.sound-card p{

    color:#aaa;

}


.more-sounds{

    margin-top:40px;

    color:#FFD700;

    letter-spacing:3px;

}


/* =========================================
   COUNTDOWN
========================================= */

.sounds-countdown{

    padding:100px 0;

    text-align:center;

    background:

    linear-gradient(
        rgba(0,0,0,.75),
        rgba(5,11,24,.9)
    ),

    url("../images/ftd.jpg");

    background-size:cover;

    background-position:center;

}


.sounds-countdown h2{

    font-size:45px;

    color:#FFD700;

    margin:20px 0;

}


.sounds-countdown .countdown{

    margin-top:45px;

}


/* =========================================
   LIVE SECTION
========================================= */

.sounds-live{

    padding:100px 0;

    text-align:center;

    background:#050B18;

}


.sounds-live h2{

    color:#FFD700;

    font-size:45px;

    margin:20px 0;

}


.sounds-live > .container > p:not(.section-label){

    max-width:700px;

    margin:20px auto;

    line-height:2;

}


.live-box{

    max-width:700px;

    margin:50px auto;

    padding:50px 30px;

    background:

    linear-gradient(
        rgba(255,255,255,.06),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,215,0,.4);

    border-radius:25px;

}


.live-icon{

    font-size:50px;

    margin-bottom:20px;

}


.live-box h3{

    font-size:30px;

    color:#FFD700;

}


.live-box p{

    margin:15px 0;

    letter-spacing:2px;

}


/* =========================================
   FINAL SECTION
========================================= */

.sounds-final{

    padding:120px 20px;

    text-align:center;

    background:

    linear-gradient(
        rgba(0,0,0,.7),
        rgba(5,11,24,.95)
    ),

    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

}


.sounds-final h2{

    max-width:900px;

    margin:auto;

    font-size:45px;

    color:#FFD700;

    line-height:1.4;

}


.sounds-final p{

    line-height:2;

    font-size:18px;

    margin:30px auto;

}


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

@media(max-width:900px){

    .event-header nav{

        padding:15px 5%;

    }


    .sounds-hero{

        padding-top:150px;

    }


    .sounds-hero h3{

        font-size:20px;

        letter-spacing:3px;

    }


    .sounds-hero h1{

        font-size:40px;

        letter-spacing:2px;

    }


    .sounds-hero h2{

        font-size:30px;

    }


    .event-description{

        font-size:15px;

    }


    .event-details{

        flex-direction:column;

        align-items:center;

    }


    .event-details div{

        width:90%;

    }


    .sounds-intro h2,
    .song-submission h2,
    .thirty-sounds h2,
    .sounds-countdown h2,
    .sounds-live h2{

        font-size:32px;

    }


    #songSubmissionForm{

        width:92%;

        padding:25px 20px;

    }


    .sounds-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:12px;

    }


    .sound-card{

        min-height:150px;

        padding:20px 10px;

    }


    .sound-card span{

        font-size:30px;

    }


    .sound-card h3{

        font-size:16px;

    }


    .sounds-final h2{

        font-size:30px;

    }

}


@media(max-width:500px){

    .sounds-grid{

        grid-template-columns:1fr;

    }


    .sounds-hero h1{

        font-size:34px;

    }


    .sounds-hero h2{

        font-size:25px;

    }


    .event-label{

        font-size:11px;

        letter-spacing:2px;

    }


    .btn,
    .btn2{

        width:90%;

        margin:8px auto;

    }

}
/* =========================================
   SONG SUBMISSION SUCCESS
========================================= */

.submission-success{

    text-align:center;

    padding:30px 10px;

}


.submission-success .success-icon{

    font-size:60px;

    margin-bottom:20px;

}


.submission-success h3{

    color:#FFD700;

    font-size:28px;

    line-height:1.4;

    margin-bottom:20px;

}


.submission-success p{

    color:white;

    line-height:1.8;

    margin:15px auto;

    max-width:600px;

}


.submission-success .success-message{

    color:#FFD700;

    font-weight:600;

}