/* =========================================
   TRUE WORSHIPERS
   MAIN WEBSITE DESIGN
   CLEAN POLISHED VERSION
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #050B18;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: #ffffff;
}

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

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   LOADING SCREEN
========================================= */

#loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #050B18;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9999;
}

.loader-content {
    width: 90%;
    max-width: 500px;
}

.loader-logo {
    width: 120px;
    animation: pulse 2s infinite;
}

.loader-content h1 {
    color: #FFD700;
    letter-spacing: 3px;
    margin-top: 20px;
}

.loader-content p {
    margin-top: 10px;
    color: #ffffff;
}

.loading-bar {
    width: 220px;
    max-width: 90%;
    height: 5px;
    background: #222;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 10px;
}

.loading-fill {
    width: 0%;
    height: 100%;
    background: #FFD700;
    animation: loading 3s forwards;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

section {
    overflow: hidden;
}

.daily-verse,
.upper-room-preview,
.social,
.prayer,
.testimonies,
.newsletter {
    padding: 80px 0;
    text-align: center;
}

.daily-verse,
.prayer {
    background: #081326;
}


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

nav {
    position: relative;
    z-index: 1000;

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

    padding: 20px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
}

.logo span {
    color: #FFD700;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

nav ul li a {
    transition: 0.3s ease;
    font-size: 14px;
}

nav ul li a:hover {
    color: #FFD700;
}


/* =========================================
   HAMBURGER MENU
========================================= */

.menu-toggle {
    display: none;
    font-size: 40px;
    color: #FFD700;
    cursor: pointer;
    line-height: 1;
    user-select: none;
    z-index: 1001;
}


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

.hero {
    min-height: 100vh;

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

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

    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;
    max-width: 1000px;

    text-align: center;

    z-index: 5;
}

.hero-content h3 {
    letter-spacing: 7px;
    font-size: 18px;
}

.hero-content h1 {
    font-size: 60px;
    color: #FFD700;
    margin: 20px 0;
    line-height: 1.15;
}

.hero-content h2 {
    font-size: 36px;
    line-height: 1.3;
}

.hero-content p {
    max-width: 700px;
    margin: 25px auto;
    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.btn,
.btn2 {
    display: inline-block;

    padding: 14px 30px;
    margin: 10px;

    border-radius: 30px;

    font-weight: 600;

    transition: 0.4s ease;

    cursor: pointer;
}

.btn {
    background: #FFD700;
    color: #050B18;
    border: 2px solid #FFD700;
}

.btn2 {
    background: transparent;
    color: #ffffff;
    border: 2px solid #FFD700;
}

.btn:hover,
.btn2:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
}

.btn2:hover {
    background: #FFD700;
    color: #050B18;
}


/* =========================================
   FEATURED SERMON
========================================= */

.featured-sermon-home {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/sermon.jpg");

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

    position: relative;
}


.featured-sermon-home h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.featured-sermon-home h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.featured-sermon-home p {
    max-width: 700px;
    margin: 0 auto 25px;
}


/* =========================================
   DAILY VERSE
========================================= */

.verse-card {
    max-width: 700px;

    margin: 40px auto;

    padding: 40px;

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

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

    position: relative;
}


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

    border-radius: 20px;

    backdrop-filter: blur(10px);
}

.verse-card h3 {
    color: #FFD700;
    margin-bottom: 20px;
}

.verse-card p {
    line-height: 2;
    font-size: 18px;
}

.verse-card button {
    margin-top: 25px;

    padding: 12px 30px;

    border: none;

    background: #FFD700;
    color: #050B18;

    border-radius: 25px;

    cursor: pointer;
    font-weight: bold;

    transition: 0.3s ease;
}

.verse-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}


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

.event {
    padding: 90px 0;
    text-align: center;

    background:
        linear-gradient(
            rgba(5, 11, 24, 0.82),
            rgba(5, 11, 24, 0.88)
        ),
        url("../images/event.jpg");

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

.event h2 {
    color: #FFD700;
}

.event h1 {
    font-size: 55px;
    margin: 20px 0;
    line-height: 1.2;
}

.event h3 {
    font-size: 25px;
}

.event p {
    font-size: 18px;
    margin: 20px auto;
    max-width: 800px;
}


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

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;

    margin: 40px 0;

    flex-wrap: wrap;
}

.countdown div {
    width: 120px;

    padding: 25px 10px;

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

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

    position: relative;
}


    border-radius: 15px;

    border: 1px solid #FFD700;
}

.countdown span {
    font-size: 40px;
    color: #FFD700;
    font-weight: bold;
}


/* =========================================
   UPPER ROOM
========================================= */

.upper-room-preview {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/upper-room.jpg");

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

.upper-room-preview h2 {
    font-size: 45px;
    color: #FFD700;
}

.upper-room-preview p {
    max-width: 700px;
    margin: 25px auto;
    line-height: 2;
}


/* =========================================
   LIVE MINISTRY
========================================= */

.home-live {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/live.jpg");

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

    position: relative;
}

}

.home-live h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.home-live p {
    max-width: 700px;
    margin: 0 auto 25px;
}


/* =========================================
   EXPLORE / QUICK GRID
========================================= */

.explore,
.quick {
    padding: 90px 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;
}

}

.explore h2 {
    color: #FFD700;
    margin-bottom: 40px;
}

.quick-grid {
    display: grid;

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

    gap: 25px;
}

.quick-grid a {
    padding: 30px;

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

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.04);

    transition: 0.4s ease;
}

.quick-grid a:hover {
    transform: translateY(-8px);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.social h2 {
    color: #FFD700;
}

.social-grid {
    display: grid;

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

    gap: 20px;

    margin-top: 40px;
}

.social-grid a {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 70px;

    padding: 20px;

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

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

    position: relative;
}


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

    border-radius: 15px;

    transition: 0.4s ease;
}

.social-grid a:hover {
    background: #FFD700;
    color: #050B18;

    transform: translateY(-6px);
}

.social-grid a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-grid a span {
    font-weight: 500;
}

.email-icon,
.website-icon {
    font-size: 30px;
}


/* =========================================
   PRAYER FORM
========================================= */

.prayer h2 {
    color: #FFD700;
}

.prayer form {
    max-width: 600px;
    margin: 40px auto;
}

.prayer input,
.prayer textarea {
    width: 100%;

    padding: 15px;

    margin: 10px 0;

    background: rgba(255, 255, 255, 0.08);

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

    color: white;

    border-radius: 10px;

    outline: none;
}

.prayer input:focus,
.prayer textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.prayer textarea {
    height: 150px;
    resize: vertical;
}

.prayer input::placeholder,
.prayer textarea::placeholder {
    color: #dddddd;
}


/* =========================================
   TESTIMONIES
========================================= */

.testimonies h2 {
    color: #FFD700;
}

.testimony-card {
    max-width: 650px;

    margin: 40px auto;

    padding: 35px;

    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;
}


    border-radius: 20px;

    border-left: 4px solid #FFD700;
}

.testimony-card p {
    font-style: italic;
    line-height: 2;
}

.testimony-card h4 {
    margin-top: 20px;
    color: #FFD700;
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    background: #050B18;
}

.newsletter h2 {
    color: #FFD700;
}

.newsletter p {
    max-width: 700px;
    margin: 15px auto;
}

.newsletter form {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    margin-top: 20px;
}

.newsletter input {
    width: 300px;
    max-width: 90%;

    padding: 15px 20px;

    border-radius: 30px;

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

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

    position: relative;
}


    background: rgba(255, 255, 255, 0.08);

    color: white;

    outline: none;
}

.newsletter input::placeholder {
    color: #dddddd;
}


/* =========================================
   VIDEO SECTION
========================================= */

.video-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/twcm.jpg");

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

    position: relative;
}

}

.video-section h2 {
    color: #FFD700;
    margin-bottom: 30px;
}

.video-section video {
    display: block;

    width: 100%;
    max-width: 900px;

    margin: auto;

    border-radius: 15px;

    border: 1px solid rgba(255, 215, 0, 0.3);
}


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

footer {
    padding: 60px 20px;

    text-align: center;

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

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

    position: relative;
}


    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

footer img {
    margin-bottom: 15px;
}

footer h2 {
    color: #FFD700;
    letter-spacing: 3px;
}

footer p {
    margin: 15px auto;
    max-width: 700px;
    line-height: 1.8;
}


/* =========================================
   GOLD GLOW
========================================= */

h1,
h2 {
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.25);
}


/* =========================================
   PARTICLES
========================================= */

#particles {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;

    z-index: 1;

    opacity: 0.5;
}


/* =========================================
   30 SOUNDS HOME SECTION
========================================= */

.sounds-home {
    padding: 100px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(5, 11, 24, 0.95)
        ),
        url("../images/30sounds.jpg");

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

    border-top: 1px solid rgba(255, 215, 0, 0.25);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.sounds-home-label {
    color: #FFD700;

    font-size: 14px;

    letter-spacing: 3px;

    font-weight: 600;

    margin-bottom: 15px;
}

.sounds-home h2 {
    color: #FFD700;

    font-size: 55px;

    margin: 20px 0;
}

.sounds-home h3 {
    max-width: 850px;

    margin: auto;

    font-size: 28px;

    line-height: 1.5;
}

.sounds-home-description {
    max-width: 750px;

    margin: 30px auto;

    line-height: 2;

    font-size: 17px;
}

.sounds-home-details {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin: 35px 0;
}

.sounds-home-details div {
    padding: 15px 25px;

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

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.05);
}

.sounds-home-details strong {
    margin-left: 8px;

    font-size: 14px;
}


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

@media (max-width: 900px) {

    nav {
        padding: 18px 5%;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 20px 0;

        background: rgba(5, 11, 24, 0.98);

        border-top: 1px solid rgba(255, 215, 0, 0.3);

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content h3 {
        font-size: 15px;
        letter-spacing: 4px;
    }

    .event h1 {
        font-size: 42px;
    }

    .sounds-home h2 {
        font-size: 45px;
    }

}


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

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .logo img {
        width: 48px;
    }

    .logo span {
        font-size: 16px;
    }

    .menu-toggle {
        font-size: 30px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        width: 92%;
    }

    .hero-content h3 {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn,
    .btn2 {
        width: 90%;
        max-width: 360px;
        margin: 8px auto;
        text-align: center;
    }

    .featured-sermon-home,
    .daily-verse,
    .upper-room-preview,
    .social,
    .prayer,
    .testimonies,
    .newsletter,
    .home-live,
    .explore,
    .quick,
    .video-section {
        padding: 65px 0;
    }

    .featured-sermon-home h1 {
        font-size: 30px;
    }

    .verse-card {
        padding: 25px 18px;
    }

    .verse-card p {
        font-size: 16px;
    }

    .event {
        padding: 70px 0;
    }

    .event h1 {
        font-size: 32px;
    }

    .event h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .event h3 {
        font-size: 20px;
    }

    .event p {
        font-size: 15px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown div {
        width: 80px;
        padding: 18px 5px;
    }

    .countdown span {
        font-size: 28px;
    }

    .countdown p {
        font-size: 12px;
        margin: 5px 0;
    }

    .upper-room-preview h2 {
        font-size: 32px;
    }

    .upper-room-preview p {
        font-size: 15px;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-grid a {
        padding: 22px 10px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-grid a {
        min-height: 60px;
    }

    .prayer input,
    .prayer textarea {
        font-size: 14px;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input {
        width: 90%;
        margin-bottom: 10px;
    }

    .newsletter .btn {
        margin-top: 5px;
    }

    .sounds-home {
        padding: 75px 0;
    }

    .sounds-home h2 {
        font-size: 36px;
    }

    .sounds-home h3 {
        font-size: 20px;
    }

    .sounds-home-description {
        font-size: 15px;
    }

    .sounds-home-details {
        flex-direction: column;
    }

    .sounds-home-details div {
        width: 90%;
        text-align: center;
    }

    footer {
        padding: 45px 20px;
    }

    footer h2 {
        font-size: 22px;
    }

    footer p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 400px) {

    .logo span {
        font-size: 14px;
    }

    .logo img {
        width: 42px;
    }

    .menu-toggle {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .event h1 {
        font-size: 28px;
    }

    .countdown div {
        width: 70px;
    }

    .countdown span {
        font-size: 24px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .sounds-home h2 {
        font-size: 31px;
    }

}


/* =========================================
   PAGE TRANSITION
========================================= */

body {
    animation: pageEnter 0.7s ease;
}

@keyframes pageEnter {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}
/* =========================================
TRUE WORSHIPERS FAMILY - HOME
========================================= */

.family-home-section {

position: relative;

padding: 90px 20px;

text-align: center;

overflow: hidden;

}

.family-home-content {

max-width: 850px;

margin: auto;

padding: 45px 25px;

border: 1px solid rgba(212, 175, 55, 0.30);

border-radius: 24px;

background: rgba(0, 0, 0, 0.20);

box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.25);

}

.family-home-section h2 {

margin: 15px 0 20px;

font-size: clamp(30px, 6vw, 52px);

line-height: 1.15;

}

.family-home-section h2 span {

display: block;

}

.family-home-text {

max-width: 650px;

margin: 0 auto 15px;

font-size: 19px;

font-style: italic;

}

.family-home-description {

max-width: 680px;

margin: 0 auto;

line-height: 1.8;

opacity: 0.82;

}

.family-home-buttons {

display: flex;

justify-content: center;

align-items: center;

gap: 15px;

flex-wrap: wrap;

margin-top: 30px;

}

@media (max-width: 600px) {

.family-home-section {

    padding: 60px 15px;

}


.family-home-content {

    padding: 35px 18px;

    border-radius: 18px;

}


.family-home-buttons {

    flex-direction: column;

}


.family-home-buttons a {

    width: 100%;

    text-align: center;

}

}
/* =========================================
FAMILY HOME BUTTONS
========================================= */

.family-home-buttons .gold-btn {

display: inline-block;

padding: 14px 28px;

background: #d4af37;

color: #000;

text-decoration: none;

border-radius: 6px;

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

font-weight: 600;

letter-spacing: 1px;

transition: all 0.3s ease;

}

.family-home-buttons .gold-btn:hover {

transform: translateY(-3px);

box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);

}

.family-home-buttons .outline-btn {

display: inline-block;

padding: 13px 28px;

background: transparent;

color: #d4af37;

text-decoration: none;

border: 1px solid #d4af37;

border-radius: 6px;

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

font-weight: 600;

letter-spacing: 1px;

transition: all 0.3s ease;

}

.family-home-buttons .outline-btn:hover {

background: #d4af37;

color: #000;

transform: translateY(-3px);

}

@media (max-width: 600px) {

.family-home-buttons .gold-btn,
.family-home-buttons .outline-btn {

    width: 100%;

    text-align: center;

    box-sizing: border-box;

}

}