/* HOME PAGE STARTS */

html, body {
    font-family: "Montserrat", sans-serif !important;
    
  }

  /* Link Styles */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* General Links Class */
.links {
    color: #2cb1bc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.links:hover {
    color: #133453;
    text-decoration: none;
}

.links:focus {
    outline: 2px solid #2cb1bc;
    outline-offset: 2px;
}

.links:active {
    color: #1a8c94;
}

/* Optional: Underline effect on hover */
.links.underline-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #2cb1bc;
    transition: width 0.3s ease;
}

.links.underline-effect:hover::after {
    width: 100%;
}

/* NAV SECTION STARTS */
#mobile-nav{
    display: none;
     padding: 0px 20px;
}

#desktop-nav{
    padding: 0px 30px;
}

nav{
    background-color: white;
}

.nav-item{
    padding-right: 15px;
}

.navbar-brand{
    font-size: 20px;
    font-weight: 600;
}

.nav-item .nav-link{
    font-size: 16px;
    font-weight: 500;
}

.nav-item .nav-link:hover{
    color: #2cb1bc;
}

.nav-item .nav-link.active{
    color: #2cb1bc !important;
}

.logIn-btn{
background-color: #2cb1bc;
width: fit-content;
height: 40px;
border-radius: 10px;
border: none;
color: white;
transition: all 0.5s ease-in-out;
font-weight: 500;
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
padding: 0 20px;
}

.logIn-btn:hover{
  background-color: gray;
  color: black;
  
}

/* NAV SECTION ENDS */

.row{
    width: 100%;
    overflow-x: hidden;
    
}

/* HERO-SECTION STARTS */

.hero-section{
    width: 100%;
    background-image: url(../IMAGES/bg-image.jpg);
    background-size: cover;
    padding: 50px 60px;
    height: fit-content;
    position: relative;
}

.bg-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content{
    padding: 50px 0px 100px 0px;
    position: relative;
    z-index: 5;
}

.hero-content h3{
    color: white;
    font-size: 50px;
    font-weight: 700;
    padding: 20px 0px 60px 0px;
}

.hero-content h3 span{
    color: #2cb1bc;
}

.hero-content form,
.forum-search{
    position: relative;
    
}

.hero-content form input,
.forum-search input{
    width: 100%;
    height: 50px;
    border-radius: 10px;
    padding-left: 10px;
    border: none;
}

.searchResult{
    display: none; 
    max-height: 170px;
    border: 1px solid #ccc;
    overflow-y: auto;
    background: white;
    position: absolute;
    z-index: 700;
    width: 300px;
    margin-top: 10px;
    text-align: left;
}

.searchResult div{
    padding: 10px;
    cursor: pointer;
}

.searchResult div:hover{
    background: #f0f0f0;
}

.hero-content form button,
.forum-search button{
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 17px;
    width: 100px;
    height: 50px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border: none;
    background-color: #2cb1bc;
    color: white;

}

.callToaction-btn-wrapper{
    padding-top: 50px;
}

.callToaction-btn-wrapper .callToaction-btn:first-child{
    background-color: #2cb1bc;
    color: white;
} 

.callToaction-btn-wrapper .callToaction-btn:first-child:hover{
    background-color: #133453;
}

.callToaction-btn{
    width: 45%;
    height: 50px;
    border-radius: 10px;
    background-color: white;
    border:none;
    color: black;
}

.callToaction-btn:hover{
    background-color: gray;
}

/* Leave Forum Button Variant */
.callToaction-btn.leave-forum {
    background-color: #f8f9fa;
    color: #dc3545;
    border: 1px solid #dc3545;
    transition: all 0.3s ease;
}

.callToaction-btn.leave-forum:hover {
    background-color: #dc3545;
    color: white;
    border-color: #dc3545;
}

.callToaction-btn.leave-forum:active {
    background-color: #c82333;
    border-color: #bd2130;
}


.btn.btn-theme {
    background-color: #2cb1bc;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(44, 177, 188, 0.2);
}

.btn.btn-theme:hover {
    background-color: #133453;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(44, 177, 188, 0.3);
}

.btn.btn-theme:active {
    background-color: #1a8c94;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(44, 177, 188, 0.2);
}

.btn.btn-theme:focus {
    outline: 2px solid #2cb1bc;
    outline-offset: 2px;
}

.btn.btn-theme:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}


/* HERO SECTION ENDS */

/* DAILYVERSE SECTIONS STARTS */

.dailyVerse-section{
    padding: 80px 80px;
}

.dailyverse-wrapper{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    padding: 20px 20px;
}

.dailyVerse-intro h4{
     font-weight: 700;
     font-size: 30px;
     padding-left: 15px;
     padding-top: 10px;    
    
}

.dailyVerse{
    background-color: antiquewhite;
    padding: 20px 20px;
    border-radius: 10px;
}

 p{
    font-size: 18px;
    font-weight: 500;
    color: gray;
}

.dailyVerse h5{
    padding-bottom: 15px;
    font-weight: 300;  
    font-size: 28px;
}

/* DAILYVERSE SECTIONS STARTS */

/* ARTICLE SECTION STARTS */

.article-section{
    padding: 80px 80px;
    width: 100%;
    max-width: 100%;
}

.article-section h4,
.category-section h4{
    padding: 15px 0px;
    font-size: 30px;
    color: #2cb1bc;
}

.article-detail img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.article-detail h3{
    padding: 15px 0px;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
}

.article-detail a{
    color: black;
    text-decoration: none;   

}

.article-detail a i{
    padding-left: 7px;
    font-size: 13px;
}

.article-catigory-Date{
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    
}

.article-catigory-Date div:first-child{
    
    background-color: lightblue;
    padding: 0px 15px;
    border-radius: 20px;
   
}

.article-catigory-Date div h5{
     font-size: 16px;
     padding-top: 10px;
}

.article-catigory-Date p{
    font-size: 13px !important;
    padding-top: 5px;
}

.article-catigory-Date p i{
    padding-right: 5px;
}


/* ARTICLE SECTION ENDS */

/* CATEGORY SECTION STARTS */

.category-section{
    padding: 40px 80px;
    width: 100%;
    max-width: 100%;
}

.category-content{
    columns: 3;
    column-gap: 20px;
    row-gap: 20px;
    padding: 40px 0px;
}

.category-btn{
    width: 100%;
    height: 60px;
    font-size: 20px;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.category-btn:hover{
    background-color: #2cb1bc;
    color: white;
}

.category-scripture{
    padding: 40px 0px 40px 50px;  
    text-align: center; 
    background-color: white;
}

.category-scripture h3{
    padding: 10px 0px;
}

.category-verse{
    text-align: center;
}

.category-verse h2{
    padding: 30px 0px;
    font-weight: 700;
}

.category-verse p{
    font-size: 15px;
    text-align: justify;
}

/* CATEGORY SECTION ENDS */

/* FAQ SECTION STARTS */

.faq-section{
    padding: 50px 80px;
    background-color: whitesmoke;
}

.faq-content-wrapper{
    padding: 40px 80px;
}

.faq-content-wrapper h2{
    text-align: center;
    padding: 40px 0px;
    font-size: 45px;
    font-weight: 700;
}

.faq-content{
    background-color: white;
    
    margin-bottom: 20px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.faq-question{
    width: 100%;
    height: 60px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    padding: 0px 20px 0px 20px;
    transition: all 0.5s ease-in-out;
    text-align: start;
    background-color: transparent;
    border: none;
    color: gray;
    font-size: 19px;
    font-weight: 500;
}

.faq-question::after{
    content: '\f107';
    font-size: 20px;
    padding-top: 0px;
    font-family: 'Font Awesome 6 Free';
    font-weight:700;
    color: gray;
    float: right;
}

.faq-question.active{
    background-color: #133453;
    color: white;
}

.faq-question.active::after{
    content: '\f077';
    font-size: 18px;
    padding-top: 0px;
    font-family: 'Font Awesome 6 Free';
    font-weight:700;
    color: white;
    float: right;
}

.faq-answer{
    display: none;
    padding: 30px 20px;
}

/* FAQ SECTION ENDS */

/* FOOTER STARTS */

footer{
    background-color: #133453;
    color: white;
    padding: 60px 80px;
}

.social-btn{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    border: none;
    background-color: black;
    color: white;
}

footer div h4{
    padding: 15px 0px;
    font-weight: 600;
}

footer div p{
    padding-bottom: 15px;
}

footer div ul{
    list-style-type: none;
    padding: 0;
}

footer div ul li{
    font-size: 19px;
    padding-bottom: 15px;
}

footer div ul li:hover{
    color: #2cb1bc;
}

/* FOOTER ENDS */

/* HOME PAGE ENDS */

/* ABOUT US PAGE STARTS */

.mission-section{
    padding: 40px 100px;
    text-align: center;
}

.mission-section h3{
    padding: 20px 0px;
}

.values-section,
.team-section{
    padding: 50px 80px;
    background-color: whitesmoke;
}

.values-section div p{
    padding: 10px 0px 20px 0px;
}

.value-content-Wrapper{
    padding-left: 20px;
}

.value-content{
    text-align: center;
    padding: 0px 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.values-section div p,
.team-section div p{
    padding: 10px 0px 20px 0px;
}


.value-content i{
    font-size: 35px;
    color: lightblue;
    padding-top: 20px;
}

.value-content p{
    font-size: 16px;
}

.value-content h6{
    font-size: 20px;
    font-weight: 500;
    padding-top: 15px;
}



.team-section{
    background-color: white;
}

.team-content{
    text-align: center;
    padding: 20px 20px 15px 20px;
    background-color: whitesmoke;
    border-radius: 10px;
}

.team-content h5{
    padding-top: 10px;
}

.teamName-abbv{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: none;
    text-align: center;
    background-color: purple;
    justify-self: center;
    align-content: center;
    font-size: 23px;
    color: white;
    font-weight: 500;
}


.team-content h6{
    color: #2cb1bc;
}

.team-content p{
    font-size: 16px;
}


/* ABOUT US PAGE ENDS */

/* FORUM PAGE BEGINS */

.forum-hero-section{
    background-color: whitesmoke;
    padding: 80px 120px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.forum-content{
    padding-top: 40px;
}

.forum-content h2{
    font-size: 50px;
    font-weight: 700;
}

.forum-content p{
    padding-top: 15px;
}

/* FORUM-SUMMARY-SECTION STARTS */

.forumSummary-section{
    padding: 50px 80px;
}

.summary-panel{
    text-align: center;
}

.summary-panel h3{
    font-weight: 700;
}

.forumSummary-section div:nth-child(1) h3 {
    color:#2cb1bc;
}
.forumSummary-section div:nth-child(2) h3{
    color:#133453;
}
.forumSummary-section div:nth-child(3) h3{
    color: blue;
}
.forumSummary-section div:nth-child(4) h3{
    color: orange;
}

/* FORUM-SUMMARY-SECTION ENDS */

/* FORUM TOPIC SECTION STARTS */

.forumTopic-section{
    background: whitesmoke;
    padding: 50px 50px;
    overflow: hidden !important;
}


.forum-Topic-content{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 30px 0px 30px 30px;
    border-radius: 10px;
    width: 100%;   
    box-sizing: border-box;
    margin-bottom: 15px;
}

.forum-Topic-content:hover{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.forum-Topic-content h5{
    font-weight: 600;
    margin: 0;
}

.forum-Topic-content h6{
    padding: 20px 0px;
    font-weight: 400;
    margin: 0;
}

.community-stats{
    display: flex;
    column-gap: 30px;
}

.community-stats p{
    font-size: 14px;
    margin: 0;
}

.community-stats p i{
    padding-right: 5px;
}

.recent-post-content{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 30px 30px 40px 30px;
    border-radius: 10px;
}

.recent-post-decription{
    padding-top: 10px;
}

.recent-post-decription h6{
    font-weight: 600;
    font-size: 13px;
}

.recent-post-decription p{
    margin: 0;
    font-size: 14px;
}

.recent-post-decription p:nth-child(2){
    font-weight: 300;
    padding-bottom: 7px;
    padding-top: 5px;
}

.community-guidelines{
    padding: 20px 20px;
}

.community-guidelines h3{
    font-size: 25px;
    padding: 15px 0px;
}

.community-guidelines ul li{
    padding-bottom: 10px;
    color: gray;
    font-size: 14px;
}

.community-guidelines button{
    width: 100%;
    height: 45px;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    border: none;
}

.community-guidelines button:hover{
    background-color: gray;
    color: white;
}

/* FORUM TOPIC SECTION ENDS */

/* FORUM PAGE ENDS */

/* BLOG PAGE STARTS */

/* BLOG-SECTION STARTS */

.blog-section{
    padding: 40px 80px;
}

.blog-btn-wrapper{
    text-align: center;
    padding: 30px 0px;
}

.blog-fiter-btn{
    border: 1px solid #f0f0f0;
    background-color: transparent;
    color: black;
    text-align: center;
    padding: 3px 15px;
    border-radius: 15px;
    margin-right: 10px;
}

.blog-fiter-btn.active{
    background-color: black;
    color: white;
}

.filter-content{
    display: none;
}

.author-profile{
    cursor: pointer;
}

/* BLOG-SECTION ENDS */

/* BLOG PAGE ENDS */

/* AUTHOR PAGE START */

.author-Id{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    text-align: center;
    justify-self: center;
    background-color: #ccc;
    align-content: center;
    font-size: 50px;
    color: gray;
}

.author-article-content{
    padding: 60px 80px;
}

.center-title{
    text-align: center;
    padding: 15px 0px;
}

.forum-content h3{
    font-weight: 600;
    font-size: 40px;
}

.author-info{
    columns: 3;
    padding: 20px 100px;
}

.author-info p{
    font-size: 16px;
    font-weight: 400;
}

.author-info p:nth-child(1) i{
   color: purple;
}
.author-info p:nth-child(2) i{
   color: gold;
}
.author-info p:nth-child(3) i{
   color: lightgreen;
}

.author-info p i{
    font-size: 15px;
    padding-right: 7px;
}

/* AUTHOR PAGE ENDS */

@media screen and (max-width : 778px) {

    #mobile-nav{
        display: inherit;
    }

    #desktop-nav{
        display: none;
    }

    /* HERO-SECTION */

    .hero-section{
        padding: 20px 30px;
        background-size:cover;
       
    }

    .hero-content{
        padding: 60px 0px 50px 0px;
    }

    .hero-content h3{
        font-size: 35px;
        padding: 20px 0px 30px 0px;
    }

    .callToaction-btn{
        width: 100%;
        margin-bottom: 10px;
    }

    /* DAILY VERSE SECTION */

    .dailyVerse-section{
        padding: 50px 30px;
    }

    .dailyverse-wrapper{
        padding: 10px 0px 15px 15px;
    }

    .dailyVerse h5{
       
    font-size: 23px;   
    }

    /* ARTICLE SECTION */

    .article-section{
        padding: 40px 30px;
    }

    /* CATEGORY SECTION */

    .category-section{
        padding: 30px 30px;
    }

    .category-content{
        columns: 2;
    }

    .category-scripture{
       padding: 20px 10px;
    }

    .category-btn{
        height: 45px;
    }

    /* FAQ SECTION */

    .faq-section{
        padding: 40px 30px;
    }

    .faq-content-wrapper{
        padding: 20px 0px;
    }

    .faq-content-wrapper h2{
        font-size: 25px;
    }

    .faq-question{
        font-size: 14px;
        padding: 0px 10px;
    }

    .faq-question::after{
        font-size: 16px;
    }

    .faq-question.active::after{
        font-size: 14px;
    }

    /* ABOUT US PAGE */

    .mission-section{
        padding: 40px 30px;
    }

    .mission-section p{
        font-size: 15px;  
    }

    .values-section,
    .team-section{
        padding: 30px 10px;
    }


    /* FORUM PAGE */

    .forum-hero-section{
        padding: 50px 30px;
    }

    .forum-content h2{
        font-size: 30px;
    }

    /* .forumTopic-section */

    .forumTopic-section{
        padding: 40px 30px;
    }

    .forum-Topic-content{
        padding: 15px 15px;
    }

    .forum-Topic-content h5{
        font-size: 17px;
    }

    .forum-Topic-content h6{
        font-size: 14px;
    }

    .community-stats{
        column-gap: 15px;
    }

    /* .blog-section */

    .blog-section{
        padding: 40px 30px;
    }

    .blog-btn-wrapper{
        columns: 2;
    }

    .blog-fiter-btn{
        margin-bottom: 15px;
        font-size: 13px;
    }

    /* author-article-content */

    .author-article-content{
        padding: 40px 30px;
    }

    .forum-content h3{
        font-size: 30px;
    }

    .author-info{
    columns: 1;
    padding: 20px 0px;
    }

}

