/*
Theme Name: ViewsTheme
Author: ViewsIndia
Description: NGO Foundation Theme
Version: 1.0
*/

/* =========================
ROOT VARIABLES
========================= */

:root{
    --primary:#0A2E6D;
    --accent:#F4B400;
    --dark:#111827;
}

/* =========================
GLOBAL RESET
========================= */

body{
    font-family: "Segoe UI", Arial, sans-serif;
    margin:0;
    padding:0;
}

/* Remove bootstrap container conflicts */
.views-container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

.bg-views {
    --bs-bg-opacity: 1;
    background-color: #144361  !important;
}


/* =========================
TOP BAR
========================= */

.views-topbar{
    font-size:14px;
}

.views-topbar a{
    text-decoration:none;
}

.views-topbar-inner{
    display:flex;
    align-items:center;
    width:100%;
}

/* Push social icons to right */
.views-topbar-right{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:15px;
}

/* Contact Items */

.views-contact-item{
    display:flex;
    align-items:center;
    gap:6px;
    color:white;
}

/* Separator */

.views-separator{
    opacity:.5;
}

/* Social Icons */

.views-topbar-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.views-social-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    transition:.3s;

    text-decoration:none;

}


/* Social Icons */
.views-social-iconbk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: 0.3s ease;
    font-size: 12px;
}

.views-social-icon:hover {
    background: #ffffff;
    color: #0A2E6D;
	
}


.views-social-iconbk:hover{
    background:white;
    color:var(--primary);
}

/* =========================
HEADER
========================= */

.views-header{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.views-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

/* Logo */

.views-logo a{
    font-size:24px;
    font-weight:700;
    color:var(--primary);
    text-decoration:none;
}

/* Menu */

.views-navigation{
    flex:1;
    text-align:center;
}

.views-menu{
    list-style:none;
    display:inline-flex;
    gap:25px;
    margin:0;
    padding:0;
}

.views-menu li{
    position:relative;
}

.views-menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    padding:8px 5px;
    display:block;
}

/* Menu Hover Effect */

.views-menu a::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:var(--accent);
    transition:.3s;
}

.views-menu a:hover::after{
    width:100%;
}

/* Dropdown */

.views-menu ul{
    position:absolute;
    top:100%;
    left:0;
    background:white;
    list-style:none;
    padding:10px 0;
    min-width:220px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.views-menu li:hover > ul{
    opacity:1;
    visibility:visible;
}

.views-menu ul li a{
    padding:10px 20px;
}

/* =========================
DONATE BUTTON
========================= */

.views-donate-btn{
    background:var(--accent);
    color:black;
    font-weight:600;
    padding:10px 24px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}

.views-donate-btn:hover{
    background:#e0a800;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media(max-width:991px){

    .views-topbar-inner{
        flex-direction:column;
        text-align:center;
    }

    .views-topbar-right{
        justify-content:center;
    }

    .views-header-inner{
        flex-wrap:wrap;
        gap:15px;
    }

    .views-navigation{
        order:3;
        width:100%;
        text-align:left;
    }

    .views-menu{
        flex-direction:column;
        width:100%;
    }

    .views-donate-btn{
        width:100%;
        text-align:center;
    }

}