@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color1: #D61F27;
    --primary-color2: #005B30;
    --primary-hover: #c157d6;
    --secondary-color: #E9D4ED;

    --background-color: #ffffff;
    --primary-background: #F5EFEA;
    --secondary-background: #E4D5B7;

    --text-color: #000000;
    --text-white: #ffffff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ---------------- about Us Page Style ---------------- */

#about-us-banner {
    height: 400px;
    width: 100%;
    background: url(../../assets/images/gospel_banner.png) no-repeat center center;
    background-size: cover;
}

#about-us-banner #about-us-heading {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 100px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

/* intro section style  */

#gospel_main_div p {
    font-size: 18px;
}

#gospel_heading {
    font-size: 45px !important;
    font-weight: 600;
    color: var(--primary-color1);
}

#to-be-christian {
    font-size: 40px !important;
    font-weight: 600;
}

#god-creator, #god-holy, #mankind, #sin-demand, #jesus-lord, #character-saving {
    font-size: 25px !important;
    font-weight: 600;
    color: var(--primary-color2);
}

/* ---------------- Responsive Styles ---------------- */

/* For small devices (phones, tablets, etc.) */
@media only screen and (max-width: 768px) {
    #about-us-banner {
        height: 250px;
    }

    #about-us-banner #about-us-heading {
        font-size: 50px;
    }

    #gospel_heading {
        font-size: 30px !important;
    }

    #to-be-christian {
        font-size: 30px !important;
    }

    #god-creator, #god-holy, #mankind, #sin-demand, #jesus-lord, #character-saving {
        font-size: 20px !important;
    }

    #gospel_main_div p {
        font-size: 16px;
    }
}

/* For extra small devices (phones in portrait mode) */
@media only screen and (max-width: 480px) {
    #about-us-banner #about-us-heading {
        font-size: 60px;
    }

    #gospel_heading {
        font-size: 24px !important;
    }

    #to-be-christian {
        font-size: 24px !important;
    }

    #god-creator, #god-holy, #mankind, #sin-demand, #jesus-lord, #character-saving {
        font-size: 18px !important;
    }

    #gospel_main_div p {
        font-size: 14px;
    }
}
