/* ===========================================
   KWAMLABA XIMBA COMMUNITY TRUST WEBSITE
   Designed by ZamashengeTechCompany
=========================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#b8adad;
    color:#222;
    position:relative;
    padding-bottom:50px;
}

/* WATERMARK */

body::before{

    content:"";

    position:fixed;

    top:50%;
    left:50%;

    width:550px;
    height:550px;

    background:url("images/logo.jpeg") no-repeat center;

    background-size:contain;

    transform:translate(-50%,-50%);

    opacity:.06;

    z-index:0;

}

/* KEEP CONTENT ABOVE WATERMARK */

body *{
    position:relative;
    z-index:2;
}

/* ==========================
HEADER
========================== */

.header{

    background:#ffffff;

    text-align:center;

    padding:15px 0;

}

.logo{

    width:180px;

}

.big-logo{

    width:250px;

}

/* ==========================
NAVIGATION
========================== */

nav{

    background:#000;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:40px;

    padding:15px;

}

nav a{

    color:gold;

    text-decoration:none;

    font-weight:bold;

    font-size:18px;

    transition:.3s;

}

nav a:hover{

    color:white;

}

/* ==========================
CONTAINER
========================== */

.container{

    width:90%;

    margin:auto;

    padding:40px 0;

    text-align:center;

}

/* ==========================
CARD
========================== */

.card{

    background:rgb(134, 126, 126);

    width:90%;

    margin:20px auto;

    padding:25px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

/* ==========================
PROJECTS
========================== */

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

    margin-top:30px;

}

.project-card{

    background:white;

    border-radius:10px;

    padding:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    transition:.3s;

}

.project-card:hover{

    transform:translateY(-8px);

}

.project-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    border-radius:8px;

}

.project-card h3{

    margin:15px 0;

}

.description{

    line-height:1.6;

}

/* ==========================
CONTACT
========================== */

.contact-container{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.contact-card{

    background:white;

    width:280px;

    padding:25px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.2);

    transition:.3s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.profile-icon{

    font-size:60px;

    color:#c6a300;

    margin-bottom:15px;

}

.contact-icons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:15px;

}

.contact-icons a{

    font-size:30px;

}

.fa-phone{

    color:black;

}

.fa-whatsapp{

    color:#25D366;

}

/* ==========================
FOOTER
========================== */

footer{

    position:fixed;

    bottom:0;

    width:100%;

    background:black;

    color:white;

    text-align:center;

    padding:8px;

    font-size:12px;

}