/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   NAVIGATION
========================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 5%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

}

/* Navigation */
.main-nav {
    grid-column: 1;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 25px;
}

.main-nav a {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    white-space: nowrap;

    transition: opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 0.6;
}

/* Masters Touch Ministries */

/* Logo */
.logo {
    grid-column: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #fff;

    font-size: 32px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 5px;

    text-align: center;
}

.logo span {
    display: block;
}

/* Mobile menu button */

.menu-toggle {
    display: none;

    margin-left: auto;

    border: none;
    background: none;

    color: #fff;
    font-size: 30px;
    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 750px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        url("../images/hands_on_bible.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: absolute;
    z-index: 2;

    left: 8%;
    bottom: 10%;

    max-width: 600px;

    color: #fff;
    text-align: left;
}

.hero-small {
    margin-bottom: 15px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
}

.hero h1 {
    margin-bottom: 20px;

    font-size: 24pt;
    line-height: 1.05;
    font-weight: 700;
}

.hero-subtitle {
    margin-bottom: 35px;

    font-size: 22px;
    letter-spacing: 1px;
}

.hero-button {
    display: inline-block;

    padding: 14px 32px;

    border: 2px solid #fff;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.hero-button:hover {
    background: #fff;
    color: #222;
}


/* =========================================
   ABOUT US SECTION
========================================= */

.together {
    padding: 110px 30px;
    background: #fff;
}

.about-us-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-us-heading {
    margin-bottom: 65px;
    text-align: center;
}

.eyebrow {
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #777;
}

.about-us-heading h2 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.heading-line {
    width: 60px;
    height: 3px;

    margin: 20px auto 0;

    background: #222;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;   
    gap: 70px;
    align-items: start;
}

.about-us-text {
    display: flex;
    flex-direction: column;
}

.about-us-text img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.about-us-text h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
}

.about-us-text p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 17px;
    color: #555;
}

.text-button {
    display: inline-block;

    margin-top: 10px;
    padding: 12px 25px;

    background: #222;
    color: #fff;

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: opacity 0.25s ease;
}

.text-button:hover {
    opacity: 0.75;
}


/* =========================================
   WARTIME PRAYER
========================================= */

.war-time-prayer {
    padding: 80px 8%;
    text-align: center;
}

.war-time-prayer .section-heading {
    margin-bottom: 40px;
}

.pdf-container {
    max-width: 900px;
    margin: 0 auto;
}

.pdf-container iframe {
    width: 100%;
    height: 800px;
    border: none;
}

.pdf-download {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    
    background-color: darkgreen;
    color: #fff;
    
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    
    border-radius: 5px;
    
    transition: background-color 0.3s ease;
}

.pdf-download:hover {
    background-color: LightGreen;
}


/* =========================================
   IMAGE PLACEHOLDER
========================================= */

.image-placeholder {
    min-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #ddd;
    color: #777;

    text-align: center;
}

.image-placeholder span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
}

.image-placeholder small {
    margin-top: 8px;
    font-size: 13px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 60px 30px 25px;

    background: #171717;
    color: #fff;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto 45px;

    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand h3 {
    margin-bottom: 8px;
    font-size: 22px;
}

.footer-brand p {
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;

    max-width: 500px;
}

.footer-links a {
    color: #bbb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    padding-top: 25px;

    border-top: 1px solid #333;

    text-align: center;
    color: #777;
    font-size: 12px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .nav-container {
        padding: 25px 25px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .logo {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .together-content {
        gap: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .nav-container {
        position: relative;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 20px;
    }


    /* MTM title */

    .logo {
        margin: 0;

        font-size: 24px;
        letter-spacing: 3px;
        line-height: 0.95;

        text-align: center;
    }


    /* Hamburger */

    .menu-toggle {
        display: block;

        position: absolute;
        right: 20px;
        top: 50%;

        transform: translateY(-50%);

        border: none;
        background: none;

        color: #fff;
        font-size: 30px;

        cursor: pointer;
    }


    /* Mobile navigation */

    .main-nav {
        display: none;

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        padding: 15px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        background: rgba(0, 0, 0, 0.9);

        transform: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;

        padding: 14px 5px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.15);

        font-size: 12px;
        letter-spacing: 1.5px;
    }


    /* Hero */

    .hero {
        min-height: 650px;
    }


    /* Together We Can */

    .together {
        padding: 75px 20px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .together-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .image-placeholder {
        min-height: 300px;
    }


    /* Footer */

    .footer-container {
        flex-direction: column;
    }

}