/* =====================================================
   DAYA MISSION WEBSITE
   Version : 3.0
   Author  : ChatGPT
   ===================================================== */


/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');


/* ===========================
   ROOT COLORS
=========================== */

:root{

    --primary:#005B73;

    --secondary:#F79400;

    --light:#F8F9FA;

    --white:#FFFFFF;

    --dark:#1E293B;

    --gray:#6B7280;

}


/* ===========================
   RESET
=========================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

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

    color:var(--dark);

    background:#ffffff;

    line-height:1.7;

    overflow-x:hidden;

    padding-top:90px;

}


/* ===========================
   HEADINGS
=========================== */

h1,h2,h3,h4,h5{

    font-weight:700;

}


h2{

    color:var(--primary);

    margin-bottom:20px;

}


p{

    color:#555;

    font-size:16px;

}


/* ===========================
   LINKS
=========================== */

a{

    text-decoration:none;

    transition:.3s;

}


/* ===========================
   SECTION SPACING
=========================== */

section{

    padding:80px 0;

}


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

.navbar{

    background:#ffffff;

    transition:.3s;

}


.navbar.scrolled{

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}


.logo{

    width:65px;

    margin-right:12px;

}


.brand-text h2{

    color:var(--primary);

    margin:0;

    font-size:28px;

    line-height:1;

}


.brand-text p{

    color:var(--secondary);

    margin:0;

    font-size:14px;

    font-style:italic;

    font-weight:600;

}


.nav-link{

    color:#333;

    margin-left:15px;

    font-weight:500;

}


.nav-link:hover{

    color:var(--secondary);

}


.partner-btn{

    border-radius:30px;

    padding:10px 22px;

    margin-left:15px;

}


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

.hero-image{

    height:90vh;

    object-fit:cover;

    filter:brightness(60%);

}


.carousel-caption{

    bottom:20%;

}


.carousel-caption h5{

    font-family:'Merriweather',serif;

    color:#FFD166;

    margin-bottom:15px;

}


.carousel-caption h1{

    font-size:58px;

    margin-bottom:20px;

    font-weight:700;

}


.carousel-caption p{

    color:white;

    font-size:22px;

    max-width:850px;

    margin:auto;

    margin-bottom:30px;

}


.hero-buttons .btn{

    border-radius:40px;

    padding:14px 34px;

    margin:6px;

    font-weight:600;

}


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

.btn-warning{

    background:var(--secondary);

    border:none;

    color:white;

}


.btn-warning:hover{

    background:var(--primary);

    color:white;

}


.btn-outline-light{

    border:2px solid white;

}


.btn-outline-light:hover{

    background:white;

    color:var(--primary);

}


/* ===========================
   CAROUSEL CONTROLS
=========================== */

.carousel-control-prev-icon,

.carousel-control-next-icon{

    width:50px;

    height:50px;

}


.carousel-indicators button{

    width:12px!important;

    height:12px!important;

    border-radius:50%;

}

/* =====================================================
   WELCOME SECTION
===================================================== */

.welcome{

    background:#ffffff;

}

.welcome h2{

    font-size:42px;

    margin-bottom:25px;

}

.welcome p{

    font-size:17px;

    text-align:justify;

    margin-bottom:25px;

}

.welcome img{

    border-radius:20px;

    transition:.4s;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.welcome img:hover{

    transform:scale(1.03);

}


/* =====================================================
   OUR MISSION
===================================================== */

.mission{

    background:var(--light);

}

.mission .card{

    border:none;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    background:white;

}

.mission .card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.mission i{

    color:var(--secondary);

    margin-bottom:20px;

}

.mission h4{

    color:var(--primary);

    margin-bottom:15px;

}


/* =====================================================
   FEATURED CAMPAIGNS
===================================================== */

.campaigns{

    background:white;

}

.campaigns .card{

    border:none;

    overflow:hidden;

    border-radius:18px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.campaigns .card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.campaigns img{

    height:250px;

    object-fit:cover;

    transition:.4s;

}

.campaigns .card:hover img{

    transform:scale(1.08);

}

.campaigns .card-body{

    padding:28px;

}

.campaigns h4{

    color:var(--primary);

    margin-bottom:15px;

}


/* =====================================================
   MINISTRY STATISTICS
===================================================== */

.statistics{

    background:linear-gradient(135deg,#005B73,#0A7C96);

}

.statistics h2{

    color:white;

    font-size:54px;

    margin-bottom:8px;

}

.statistics p{

    color:white;

    font-size:20px;

    font-weight:500;

}


/* =====================================================
   VERSE OF THE MONTH
===================================================== */

.verse{

    background:white;

    text-align:center;

}

.verse blockquote{

    font-family:'Merriweather',serif;

    font-size:28px;

    line-height:1.8;

    color:var(--primary);

    max-width:900px;

    margin:30px auto;

    font-style:italic;

}

.verse strong{

    color:var(--secondary);

    font-size:20px;

}


/* =====================================================
   GALLERY PREVIEW
===================================================== */

.gallery-preview{

    background:var(--light);

}

.gallery-preview img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.gallery-preview img:hover{

    transform:scale(1.05);

}


/* =====================================================
   PRAYER SECTION
===================================================== */

.prayer{

    background:white;

}

.prayer h2{

    margin-bottom:25px;

}

.prayer img{

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.prayer .list-group-item{

    border:none;

    padding:16px 0;

    font-size:17px;

    background:transparent;

}


/* =====================================================
   GENERAL CARDS
===================================================== */

.card{

    border:none;

}

.card-title{

    color:var(--primary);

}

.card-text{

    color:#555;

}

/* =====================================================
   PARTNER WITH US
===================================================== */

.partner{
    background:#F8F9FA;
}

.partner .card{
    border:none;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.partner .card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.partner i{
    color:var(--secondary);
    margin-bottom:20px;
}

.partner h4{
    color:var(--primary);
    margin-bottom:15px;
}


/* =====================================================
   CONTACT STRIP
===================================================== */

.contact-strip{
    background:linear-gradient(135deg,#005B73,#0A7C96);
}

.contact-strip h2{
    color:white;
    font-size:42px;
    margin-bottom:20px;
}

.contact-strip p{
    color:white;
    font-size:18px;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.contact-strip .btn{
    border-radius:35px;
    padding:14px 34px;
    font-weight:600;
}


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

footer{
    background:#012B36;
    color:white;
    padding:70px 0 20px;
}

footer h4,
footer h5{
    color:white;
    margin-bottom:20px;
}

footer p{
    color:#D8D8D8;
}

footer ul{
    padding:0;
}

footer li{
    list-style:none;
    margin-bottom:10px;
}

footer a{
    color:#D8D8D8;
    transition:.3s;
}

footer a:hover{
    color:var(--secondary);
    padding-left:6px;
}

footer hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 20px;
}


/* =====================================================
   IMAGE EFFECTS
===================================================== */

img{
    transition:.35s;
}

img:hover{
    transform:scale(1.02);
}


/* =====================================================
   BUTTON EFFECTS
===================================================== */

.btn{
    transition:.35s;
}

.btn:hover{
    transform:translateY(-3px);
}


/* =====================================================
   SECTION TITLES
===================================================== */

section h2{
    font-weight:700;
}

.lead{
    color:#666;
}


/* =====================================================
   BACK TO TOP BUTTON
===================================================== */

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    background:var(--secondary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:var(--primary);

}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#F5F5F5;
}

::-webkit-scrollbar-thumb{
    background:var(--secondary);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary);
}


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

@media(max-width:992px){

.hero-image{
    height:70vh;
}

.carousel-caption{
    bottom:15%;
}

.carousel-caption h1{
    font-size:42px;
}

.carousel-caption p{
    font-size:18px;
}

.statistics h2{
    font-size:42px;
}

}


@media(max-width:768px){

body{
    padding-top:80px;
}

.logo{
    width:55px;
}

.brand-text h2{
    font-size:22px;
}

.brand-text p{
    font-size:12px;
}

.hero-image{
    height:60vh;
}

.carousel-caption{
    bottom:10%;
}

.carousel-caption h1{
    font-size:30px;
}

.carousel-caption p{
    font-size:15px;
}

.hero-buttons .btn{
    display:block;
    width:220px;
    margin:10px auto;
}

.welcome h2,
.mission h2,
.campaigns h2,
.partner h2,
.gallery-preview h2,
.prayer h2,
.contact-strip h2{
    font-size:32px;
}

.statistics h2{
    font-size:36px;
}

.statistics p{
    margin-bottom:30px;
}

section{
    padding:60px 0;
}

footer{
    text-align:center;
}

footer .col-lg-2,
footer .col-lg-3,
footer .col-lg-4{
    margin-bottom:30px;
}

}


@media(max-width:576px){

.hero-image{
    height:55vh;
}

.carousel-caption h5{
    font-size:14px;
}

.carousel-caption h1{
    font-size:24px;
}

.carousel-caption p{
    font-size:14px;
}

.verse blockquote{
    font-size:22px;
}

.contact-strip h2{
    font-size:28px;
}

.partner .card,
.mission .card{
    padding:25px;
}

}

/* Fade-in animation */

.fade-section{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-section.animate{

    opacity:1;

    transform:translateY(0);

}

/* =====================================================
   END OF STYLE SHEET
===================================================== */
