/* =====================================
   FRIENDS OF CHRIST COVENANT CENTER
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
    overflow-x:hidden;
    position:relative;
}

/* =====================================
   WATERMARK
===================================== */

.watermark{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:350px;
    height:350px;
    background:url('../../images/logo.png') no-repeat center;
    background-size:contain;
    opacity:0.05;
    z-index:-1;
}

/* =====================================
   NAVBAR
===================================== */

.navbar{
    background:#0d6efd !important;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand{
    color:#fff !important;
    font-weight:bold;
    font-size:22px;
}

.navbar-brand img{
    height:50px;
    width:auto;
}

.nav-link{
    color:#fff !important;
    font-weight:600;
    margin-left:10px;
}

.nav-link:hover{
    color:#dbe9ff !important;
}

/* =====================================
   HERO SECTION
===================================== */

.hero{
    padding:80px 20px;
    text-align:center;
}

.hero img{
    max-width:180px;
}

.hero h1{
    color:#0d6efd;
    font-size:42px;
    font-weight:bold;
    margin-top:20px;
}

.hero p{
    font-size:18px;
}

/* =====================================
   GENERAL SECTIONS
===================================== */

.section{
    padding:60px 0;
}

.section h2{
    color:#0d6efd;
    font-weight:bold;
    margin-bottom:30px;
}

/* =====================================
   SERVICE BOXES
===================================== */

.service-box{
    background:#f8f9fa;
    border-radius:10px;
    padding:30px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    margin-bottom:20px;
}

.service-box h3{
    color:#0d6efd;
}

/* =====================================
   CARDS
===================================== */

.card{
    border:none;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.card-header{
    font-weight:bold;
}

.card img{
    width:100%;
}

/* =====================================
   FORMS
===================================== */

form{
    background:#fff;
}

.form-control{
    border-radius:8px;
    padding:12px;
}

textarea.form-control{
    resize:none;
}

.btn{
    border-radius:8px;
    padding:12px 25px;
    font-weight:bold;
}

/* =====================================
   YOUTUBE VIDEOS
===================================== */

iframe{
    border:none;
    width:100%;
}

.ratio{
    border-radius:10px;
    overflow:hidden;
}

/* =====================================
   GALLERY
===================================== */

.gallery-image{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
}

.gallery-image:hover{
    transform:scale(1.03);
}

.pastor-image{
    width:100%;
    height:420px;
    object-fit:cover;
}

/* =====================================
   ALERTS
===================================== */

.alert{
    border-radius:8px;
}

/* =====================================
   DONATION PAGE
===================================== */

.donation-box{
    background:#f8f9fa;
    padding:25px;
    border-radius:10px;
}

/* =====================================
   MAP
===================================== */

.map-container{
    border-radius:10px;
    overflow:hidden;
}

/* =====================================
   FOOTER
===================================== */

.footer{
    background:#0d6efd;
    color:#fff;
    padding:50px 0;
    margin-top:50px;
}

.footer h4{
    margin-bottom:15px;
    font-weight:bold;
}

.footer p{
    color:#fff;
    margin-bottom:8px;
}

.footer ul{
    padding-left:20px;
}

.footer li{
    color:#fff;
}

.footer img{
    max-width:90px;
}

.footer hr{
    border-color:rgba(255,255,255,0.3);
}

/* =====================================
   TABLES
===================================== */

.table{
    background:#fff;
}

/* =====================================
   ADMIN DASHBOARD
===================================== */

.admin-card{
    background:#fff;
    border-radius:10px;
    padding:20px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.admin-card h3{
    color:#0d6efd;
}

/* =====================================
   MOBILE DEVICES
===================================== */

@media(max-width:991px){

    .navbar-brand{
        font-size:18px;
    }

    .hero h1{
        font-size:34px;
    }

    .pastor-image{
        height:320px;
    }

}

@media(max-width:768px){

    .hero{
        padding:50px 15px;
    }

    .hero img{
        max-width:130px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:16px;
    }

    .section{
        padding:40px 0;
    }

    .service-box{
        padding:20px;
    }

    .pastor-image{
        height:280px;
    }

    .gallery-image{
        height:220px;
    }

    .footer{
        text-align:center;
    }

    .footer .text-md-end{
        text-align:center !important;
        margin-top:20px;
    }

    .btn{
        width:100%;
    }

}

@media(max-width:576px){

    .hero h1{
        font-size:24px;
    }

    .section h2{
        font-size:24px;
    }

    .gallery-image{
        height:200px;
    }

    .pastor-image{
        height:250px;
    }

    .watermark{
        width:200px;
        height:200px;
    }

    .navbar-brand img{
        height:40px;
    }

}