/* =====================================================
   LOKJAN SOCIALIST PARTY
   PREMIUM FRONTEND STYLE
   Navy + Orange Theme
===================================================== */


/* ---------- GLOBAL ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:
    'Segoe UI',
    Arial,
    sans-serif;

    color:#333;

    background:#fff;

}



a{

    text-decoration:none;

}



.section{

    padding:80px 0;

}



h1,h2,h3,h4,h5{

    font-weight:700;

}




/* =====================================================
   NAVBAR
===================================================== */


.navbar{

    background:rgba(7,25,82,0.96);

    padding:12px 0;

    transition:.3s;

    box-shadow:
    0 5px 20px rgba(0,0,0,.15);

}



.navbar-brand{

    color:white !important;

    font-size:22px;

    font-weight:700;

    display:flex;

    align-items:center;

    gap:12px;

}



.navbar-brand img{

    border-radius:50%;

    background:white;

    padding:4px;

}



.nav-link{

    color:white !important;

    margin:0 8px;

    font-weight:600;

    transition:.3s;

}



.nav-link:hover{

    color:#ff9800 !important;

}




.join-btn{

    background:#ff8c00;

    color:white;

    padding:10px 25px;

    border-radius:30px;

    font-weight:700;

    margin-left:15px;

    transition:.3s;

}



.join-btn:hover{

    background:white;

    color:#071952;

}





/* =====================================================
 HERO SECTION
===================================================== */


.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    linear-gradient(
    rgba(7,25,82,.75),
    rgba(7,25,82,.75)
    ),

    url('../../uploads/banners/banner.jpg');


    background-size:cover;

    background-position:center;

    color:white;

}



.hero-content{

    max-width:750px;

    padding-top:80px;

}



.hero h1{

    font-size:55px;

    line-height:1.2;

    margin-bottom:25px;

}



.hero p{

    font-size:20px;

    line-height:1.7;

    margin-bottom:35px;

}



.hero-btn{

    background:#ff8c00;

    color:white;

    padding:14px 35px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}



.hero-btn:hover{

    background:white;

    color:#071952;

}





/* =====================================================
 SECTION TITLE
===================================================== */


.section h2{

    color:#071952;

    font-size:36px;

    margin-bottom:20px;

    position:relative;

}



.section h2:after{

    content:"";

    width:70px;

    height:4px;

    background:#ff8c00;

    display:block;

    margin:15px auto;

    border-radius:10px;

}





/* =====================================================
 OBJECTIVE CARD
===================================================== */


.objective{

    padding:35px 25px;

    border:none;

    border-radius:20px;

    height:100%;

    text-align:center;

    box-shadow:

    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}



.objective:hover{

    transform:translateY(-10px);

    box-shadow:

    0 15px 40px rgba(0,0,0,.18);

}



.icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#ff8c00;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:20px;

}





/* =====================================================
 NEWS CARD
===================================================== */


.card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    box-shadow:

    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}



.card:hover{

    transform:translateY(-8px);

}



.card img{

    height:230px;

    object-fit:cover;

}



.card-body h5{

    color:#071952;

}







/* =====================================================
 GALLERY
===================================================== */


.gallery{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;

}



.gallery:hover{

    transform:scale(1.05);

}







/* =====================================================
 JOIN SECTION
===================================================== */


.join-section{

    padding:80px 20px;

    text-align:center;

    background:

    linear-gradient(
    135deg,
    #071952,
    #ff8c00
    );

    color:white;

}



.join-section h2{

    font-size:40px;

    margin-bottom:25px;

}



.join-section .btn{

    padding:14px 40px;

    border-radius:40px;

    font-weight:700;

}







/* =====================================================
 FOOTER
===================================================== */


footer{

    background:#071952;

    color:white;

    padding:50px 20px;

    text-align:center;

}



footer h4{

    color:#ff9800;

}





/* =====================================================
 MOBILE RESPONSIVE
===================================================== */


@media(max-width:768px){


.hero h1{

    font-size:35px;

}



.hero p{

    font-size:17px;

}



.section{

    padding:50px 0;

}



.navbar-brand{

    font-size:17px;

}


.join-btn{

    display:inline-block;

    margin-top:10px;

}



}


/* =====================================================
   HOMEPAGE EXTRA PREMIUM DESIGN
===================================================== */


/* =========================
   HERO BUTTON SECONDARY
========================= */

.btn-outline-light{

    padding:14px 35px;

    border-radius:40px;

    font-weight:700;

    border:2px solid #fff;

    transition:.3s;

}


.btn-outline-light:hover{

    background:#fff;

    color:#071952;

}



/* =========================
   ABOUT IMAGE
========================= */

#about img{

    border-radius:25px;

    transition:.5s;

}


#about img:hover{

    transform:scale(1.03);

}




/* =========================
   STATS SECTION
========================= */


.stats-section{

    background:

    linear-gradient(
    135deg,
    #071952,
    #102a7a
    );

    padding:60px 0;

    color:#fff;

}



.stats-section h2{

    color:#ff9800;

    font-size:45px;

    font-weight:800;

    margin-bottom:5px;

}



.stats-section p{

    font-size:18px;

    font-weight:600;

}







/* =========================
   LEADER CARD
========================= */


.card.text-center{

    padding:35px 20px!important;

}



.card.text-center img{

    border:6px solid #ff8c00;

    object-fit:cover;

}



.card.text-center h4{

    color:#071952;

    margin-top:20px;

}



.card.text-center p{

    color:#666;

}






/* =========================
   NEWS IMAGE
========================= */


.card img{

    transition:.4s;

}



.card:hover img{

    transform:scale(1.05);

}





/* =========================
   GALLERY GRID
========================= */


.gallery{

    display:block;

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:18px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.12);

    cursor:pointer;

}



.gallery:hover{

    transform:translateY(-8px);

}







/* =========================
   JOIN SECTION
========================= */


.join-section{

    position:relative;

    overflow:hidden;

}



.join-section:before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.15);

    border-radius:50%;

    top:-100px;

    left:-100px;

}



.join-section h2,

.join-section p,

.join-section a{

    position:relative;

    z-index:2;

}







/* =========================
   ANIMATION
========================= */


.hero-content{

    animation:

    fadeUp 1s ease;

}



@keyframes fadeUp{


from{

opacity:0;

transform:translateY(40px);

}


to{

opacity:1;

transform:translateY(0);

}


}





.objective{

    animation:

    fadeUp .8s ease;

}







/* =========================
   MOBILE HOMEPAGE
========================= */


@media(max-width:768px){


.hero{

    min-height:90vh;

}


.hero-content{

    text-align:center;

}


.hero h1{

    font-size:32px;

}



.stats-section h2{

    font-size:35px;

}


.stats-section .col-md-3{

    margin-bottom:30px;

}



#about{

    text-align:center;

}


.gallery{

    height:200px;

}



}