/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.7); /* transparent black */
    backdrop-filter: blur(10px);   /* glass effect */
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.logo {
    color: gold;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    margin-left: 20px;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: gold;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 250vh;
    background: url('myphotos5.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 5px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* DARK OVERLAY */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* HERO CONTENT */
.hero-content {
    position: bottom;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(-50%);
}


/* HERO TEXT */


.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px 0;
    color: gold;
    text-shadow: 1px 1px 8px rgba(red, green, blue, alpha);
    font-weight: bold;
}

/* BUTTON */
.btn {
    padding: 10px 20px;
    background: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: white;
}

/* ABOUT SECTION BACKGROUND (THIS IS WHAT I WANT) */
.about {
    padding: 100px 20px;
    background: #111; /* DARK YOU WILL SEE THIS */
}
 
/* WHITE CARD */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-height: 1100px;
    margin: auto;

    background: black;
    padding: 40px;
    border-radius: 15px;

    /* STRONG SHADOW */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TEXT */
.about-text {
    flex: 1;
    line-height: 1.8;
    color: gold;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: gold;
}

.about-text h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: gold;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: gold;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #f5c542;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3;
}

.about-btn:hover {
    background: white;
    color: black;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(150, 142, 142, 0.15);
}

/* ABOUT HERO (NEW) */
.about-hero {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(myphotos3.jpg) center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
    width: 100%;
}

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-hero h3 {
    color: #111;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* IMPROVE ABOUT TEXT */
.about-text h3 {
    margin-top: 20px;
    color: black;
}

/* FOOTER STYLES (ADDED HERE) */
.footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

menu-toggle {
    display: none;
}

/* MOBILE RESPONSIVE DESIGN*/
@media (max-width: 600px ) {
    .container {
        width: 100%;
        display: block;
    }
    /* everything mobile goes here */
    /* NAVBAR STACK */

    .menu-toggle {
        display: block;
    }
    .nav-links{
        display: none;
    }
    .nav-links.active {
        display: flex;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    /* NAV LINKS STACKS */
    .nav-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-top: 10px;
        gap: 10px;
    }

    .nav-links li {
        margin: 8px 0;
    }

    /* HERO TEXT SMALLER */
    .hero-content p {
        font-size: 20px;
        line-height: 1.4;
    }

    /* BUTTON ADJUST */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* HERO PADDING */
    .hero-content {
        padding: 0 15px;
    }

    /* NEW (MESSAGES PAGE) */
    .video-container {
        grid-template-columns: 1fr;
    }

    .messages-hero h1 {
        font-size: 28px;
    }

    /* TESTIMONIES */
    .testimony-container{
        grid-template-columns: 1fr;
    }

    .testimony-hero h1 {
        font-size: 28px;
    }

    .donate-hero h1 {
        font-size: 28px;
    }

    .bookings-hero h1 {
        font-size: 28px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .bookings-container {
        margin-left: 0;
    }
}

/* ABOUT MOBILE (ADDED HERE) */
.about-container {
    flex-direction: column;
    text-align: center;
}

/* NEW CODE YOU ADD HERE */
.about-hero h1 {
    font-size: 28px;
}

.about-hero p {
    font-size: 16px;
}

.btn-text h2 {
    font-size: 26px;
}


/* PAGE LOAD FADE-IN EFFECT */

body {
    opacity: 0;
    animation: pageLoad 1.5s ease-in forwards;
}

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

/* MESSAGES HERO */
.messages-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(myphotos4.jpg) center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
}

.messages-hero h1 {
    font-size: 40px;
}

.messages-hero p {
    font-size: 18px;
}

/* VIDEO SECTION */
.messages {
    padding: 80px 20px;
    background: black;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.video-box {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.video-box {
    transition: all 0.4s ease;
}

.video-iframe {
    width: 100%;
    height: 200%;
    border-radius: 10px;
}

.video-box h3 {
    margin-top: 10px;
    font-size: 16px;
}

/* TESTIMONY HERO */
.testimony-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(myphotos4.jpg), center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
}

.testimony-hero h1 {
    font-size: 40px;
}

.testimony-hero p {
    font-size: 18px;
}

/* TESTIMONIES SECTION */
.testimonies {
    padding: 80px 20px;
    background: black;
}

.testimony-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

.testimony-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimony-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.testimony-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimony-card h4 {
    color: #1877f2;
}

/* DONATE HERO */
.donate-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(myphotos4.jpg) center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
}

.donate-hero h1 {
    font-size: 40px;
}

.donate-hero p {
    font-size: 18px;
}

/* DONATE SECTION */
.donate {
    padding: 80px 20px;
    background: black;
}

.donate-container {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.donate-container h2 {
    margin-bottom: 15px;
}
.donate-container p {
    margin-bottom: 25px;
}

/* FORM */
.donate-form input,
.donate-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid gold;
    border-radius: 5px;
}

.donate-form button {
    width: 100%;
    padding: 12px;
    background: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.donate-form button:hover {
    background: gold;
}

/* BOOKINGS HERO */
.bookings-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(myphotos4.jpg) center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
}

.bookings-hero h1 {
    font-size: 40px;
}

.bookings-hero p {
    font-size: 18px;
}

/* BOOKINGS SECTION */
.bookings {
    padding: 80px 20px;
    background: black;
    color: gold;
}

.bookings-container {
    max-width: 600px;
    width: 100%;
    margin: 0;
    margin-left: 40px;
    background: black;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(2, 2, 2, 0.894);
    text-align: left;
}

.bookings-container h2 {
    margin-bottom: 15px;
}

.bookings-container p {
    margin-bottom: 25px;
}

/* FORM*/
.bookings-form input,
.bookings-form select, 
.bookings-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid gold;
    border-radius: 10px;
    text-align: left;
    
}


.bookings-form button {
    width: 100%;
    padding: 12px;
    background: gold;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.bookings-form button:hover {
    background: white;
}

/* CONTACT HERO */
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(myphotos4.jpg) center/cover; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: gold;
    text-align: center;
}

.contact-hero h1 {
    font-size: 40px;
}

.contact-hero p {
    font-size: 18px;
}

/* CONTACT SECTION */
.contact {
    padding: 80px 20px;
    background: black;
    color: gold;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
}

/* LEFT SIDE */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* FORM */
.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid gold;
    border-radius: 5px;
}

.contact-form button {
    padding: 12px 20px;
    background: gold;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background: white;
}

/* ============= FINAL MOBILE FIX ============ */
@media (max-width: 768px) {
    
    /* RESET EVERYTHING */
    * {
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 15px !important;
    }

    .logo {
        font-size: 14px !important;
    }

    .menu-toggle {
        display: block !important;
        font-size: 26px;
    }

    .nav-links {
        position: absolute !important;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000;

        display: none !important;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex !important;
    }

    /* SECTIONS */
    section {
        padding: 40px 15px !important;
    }

    /* CARDS */
    .bookings-card,
    .contact-container,
    .donate-container {
        width: 95% !important;
        margin: 20px auto !important;
        padding: 20px !important;
    }

    /* TEXT */
    h1, h2 {
        font-size: 22px !important;
        text-align: center;
    }

    p {
        font-size: 14px !important;
        text-align: center;
    }

    /* FORM */
    input, select, textarea {
        width: 100% !important;
    }

    button {
        width: 100% !important;
    }
    
    /* HERO FIX */
    .hero {
        height: 60vh !important;
        background-size: cover;
        background-position: center;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #f5b400;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 6px;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    /* HERO FIX */
    .hero {
        height: 60vh !important;
        background-size: cover;
        background-position: center;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    menu-toggle {
        display: block;
        font-size: 26px;
        color: #f5b400;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    /* MOBILE FIX */
    .video-container {
        flex-direction: column;
        align-items: center;
    }

    .video-card {
        width: 90%;
    }

    .video-card iframe {
        height: 200px;
    }

    img, iframe {
        max-width: 100%;
        height: auto;
    }
    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .background-text {
        font-size: 40px;
        white-space: normal; /* ALLOW WRAPPING */
        text-align: center;
    }

    .image-row img {
        width: 100%; /* FULL WIDTH ON MOBILE */
    }

    .messages-video iframe {
        height: 200px;
    }

    .messages-page {
        padding: 15px;
    }

    .video-card
    .messages-card {
        width: 95%;
    }

    .messages-video iframe {
        width: 95%;
        height: 220px;
    }

    .message-text {
        padding: 15px;
    }

}


/* VIDEO CONTAINER */
.video-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* THIS FIXES MY ISSUE */
}

/* VIDEO CARD */
.video-card {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

/* VIDEO */
.video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
}

/* GLOBAL (ALL SCREENS) */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

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

body {
    display: flex;
    flex-direction: column;
    min-height: 150vh;
}

footer {
    margin-top: auto;
}

/* BUTTON SPACING FIX */
.hero .btn {
    margin-top: 25px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero h1 {
    font-size: clamp(28px, 5vw,60px); /* RESPONSIVE TEXT */
    line-height: 1.2;
    padding: 0 10px;
    word-break: break-word;
}

.background-text {
    font-size: clamp(40px, 10vw, 120px);
    opacity: 0.1;
    position: absolute;
    top: 20%;
    left: 50px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.hero {
    padding: 0 15px;
}

.hero {
    position: relative;
}

.hero::before {
    z-index: 1;
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2; /* BRINGS TEXT ABOVE OVERLAY */
}

.image-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.image-row img {
    width: 48%;
    border-radius: 10px;
}

/* ===== GLOBAL RESET FIX ===== */

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

html, body {
    height: auto !important;
    min-height: 100%;
}

/* FIX FOOTER POSITION */
body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* REMOVE EXTRA SPACE BEFORE FOOTER */
.footer {
    margin-top: auto !important;
}

/* MESSAGE PAGE */

.messages-header {
    text-align: center;
    padding: 60px 20px;
    background: #111;
    margin-top: 80px;
}

.messages-header h1 {
    color: #f5b400;
    font-size: 28px;
}

.messages-video {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.messages-video iframe {
    width: 700px;
    height: 400px;
    border-radius: 10px;
}

.messages-text {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    line-height: 1.7;
    color: #fff;
}

.back-btn {
    text-align: center;
    margin: 30px;
}

.back-btn a {
    background: #f5b400;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

/* MESSAGE CARD */

.messages-card {
    background: black;
    border-radius: 12px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.messages-card:hover {
    transform: translateY(-5px);
}

.messages-card img {
    width: 100%;
    display: block;
}

.messages-content {
    padding: 20px;
}

.messages-content h3 {
    color: #f5b400;
    margin-bottom: 10px;
}

.messages-content p {
    color: #ccc;
}

a.read-more {
    display: inline-block !important;
    margin-top: 10px !important;
    padding: 10px 18px !important;
    background: linear-gradient(45deg, #f5b400, #ffcc00) !important;
    color: #000 !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: 0.3s !important;
}

a.read-more:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(245, 180, 0, 0.5);
}

body {
    background: #000;
    color: black;
}

a.read-more {
    all: unset;
    display: inline-block;
    cursor: pointer;
}

.doc-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.doc-container iframe {
    width: 100%;
    height: 80vh;
    border-radius: 10px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.main-content iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    background: white;
}

.doc-container iframe {
    width: 100%;
}

.image-sermon {
    max-width: 900px;
    margin: 100px auto;
    text-align: center;
    background: #111;
    padding: 30px;
    border-radius: 15px;
}

.image-sermon h2 {
    color: gold;
    margin-bottom: 25px;
}

.image-sermon img {
    width: 100%;
    border-radius: 15px;
}

.image-sermon p {
    color: white;
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.6;
}

.testimony-form {
    max-width: 700px;
    margin: 100px auto;
    padding: 40px;
    background: #111;
    border-radius: 20px;
    text-align: center;
}

.testimony-form h2 {
    color: gold;
    margin-bottom: 30px;
}

.testimony-form input,
.testimony-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.testimony-form textarea {
    height: 200px;
}

.testimony-form button {
    background: gold;
    color: black;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}