/*==================================================
DIAMOND AREA COMMUNITY DEVELOPMENT COUNCIL
GLOBAL STYLESHEET
Version 2.0
==================================================*/


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

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


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

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

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

background:#ffffff;

color:#555;

line-height:1.8;

overflow-x:hidden;

}

img{

display:block;

width:100%;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

button{

font-family:inherit;

cursor:pointer;

border:none;

}



/*==================================================
COLOUR PALETTE
==================================================*/

:root{

--primary:#0B6E3E;

--primary-dark:#074A2B;

--secondary:#173D74;

--gold:#D6B343;

--light:#F7FCF8;

--white:#FFFFFF;

--text:#555555;

--border:#E6EFE9;

--shadow:0 18px 45px rgba(0,0,0,.08);

--radius:22px;

--success:#0B6E3E;
--gray:#666666;
--transition:.35s ease;
}



/*==================================================
GLOBAL TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

font-weight:700;

color:var(--secondary);

line-height:1.2;

}

p{

color:var(--text);

line-height:1.9;

}



/*==================================================
CONTAINER
==================================================*/

.container{

width:min(1200px,92%);

margin:auto;

}



/*==================================================
GLOBAL SECTIONS
==================================================*/

section{

padding:100px 0;

}



/*==================================================
COMMON ANIMATIONS
==================================================*/

a,
button,
img{

transition:.35s ease;

}
/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#D9B54A;
    color:#0B6E3E;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;

}

.top-bar-content{

    display:flex;
    justify-content:center;
    align-items:center;

}

.top-bar-left{

    display:flex;
    align-items:center;
    gap:8px;

}

.top-bar-left i{

    color:#0B6E3E;

}
/*==================================================
HEADER
==================================================*/

header{

position:sticky;

top:0;

left:0;

width:100%;

background:var(--primary);

border-bottom:3px solid var(--gold);

z-index:9999;

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

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

height:105px;

display:flex;

justify-content:space-between;

align-items:center;

}


/*==================================================
LOGO
==================================================*/

.logo{

display:flex;

align-items:center;

gap:18px;

}

.logo-circle{

width:100px;

height:100px;

background:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

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

}

.logo-circle img{

width:78px;

height:78px;

object-fit:contain;

}

.logo-text h2{

font-size:30px;

font-weight:700;

color:#fff;

line-height:1.1;

margin-bottom:4px;

}

.logo-text p{

font-size:14px;

color:#DDEBDD;

}


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

.menu-toggle{

display:none;

}

nav ul{

display:flex;

align-items:center;

gap:36px;

}

nav ul li{

position:relative;

}

nav ul li a{

color:var(--gold);

font-size:15px;

font-weight:600;

letter-spacing:.5px;

transition:.3s;

position:relative;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

background:var(--gold);

transition:.3s;

}

nav ul li a:hover,

nav ul li a.active{

color:#fff;

}

nav ul li a:hover::after,

nav ul li a.active::after{

width:100%;

}

/*==================================================
MOBILE MENU ICON
==================================================*/

.menu-btn{

display:none;

font-size:28px;

color:var(--primary);

cursor:pointer;

}
/*==================================================
GLOBAL BUTTONS
==================================================*/

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

background:var(--primary);

color:#fff;

font-size:15px;

font-weight:600;

border-radius:50px;

transition:.35s;

}

.btn-primary:hover{

background:var(--primary-dark);

transform:translateY(-4px);

}



.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border:2px solid var(--primary);

color:var(--primary);

background:#fff;

font-size:15px;

font-weight:600;

border-radius:50px;

transition:.35s;

}

.btn-outline:hover{

background:var(--primary);

color:#fff;

transform:translateY(-4px);

}



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

footer{

background:#06351F;

color:#fff;

padding:70px 0 0;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

padding-bottom:50px;

}

.footer-logo{

width:80px;

margin-bottom:20px;

}

.footer-grid h4{

font-size:20px;

color:var(--gold);

margin-bottom:20px;

}

.footer-grid p{

color:rgba(255,255,255,.78);

margin-bottom:15px;

}

.footer-grid ul li{

margin-bottom:12px;

}

.footer-grid ul li a{

color:rgba(255,255,255,.82);

transition:.3s;

}

.footer-grid ul li a:hover{

color:var(--gold);

padding-left:6px;

}

.socials{

display:flex;

gap:15px;

margin-top:20px;

}

.socials a{

width:44px;

height:44px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.08);

border-radius:50%;

color:#fff;

transition:.35s;

}

.socials a:hover{

background:var(--gold);

color:#222;

}

.copyright{

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

padding:22px 0;

font-size:14px;

color:#bbb;

}



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

@media(max-width:992px){

.navbar{

height:auto;

padding:20px 0;

flex-wrap:wrap;

}

nav{

width:100%;

margin-top:20px;

}

nav ul{

justify-content:center;

flex-wrap:wrap;

gap:20px;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.logo{

justify-content:center;

width:100%;

margin-bottom:20px;

}

.logo img{

width:55px;

}

.logo h2{

font-size:21px;

}

.menu-btn{

display:block;

}

nav{

display:none;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.socials{

justify-content:center;

}

section{

padding:80px 0;

}

}



@media(max-width:480px){

.container{

width:94%;

}

}