
/*
Theme Name: IbomServices
Theme URI: https://ibomservices.com
Author: ChatGPT
Description: A clean, classy, mobile responsive directory theme for IbomServices.
Version: 1.0
*/

body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f8f8f8;
    color:#222;
}

header{
    background:#fff;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:100;
}

.logo img{
    max-height:65px;
}

nav a{
    margin-left:20px;
    text-decoration:none;
    color:#006b3f;
    font-weight:bold;
}

.hero{
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1200');
    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

.search-box{
    margin-top:30px;
}

.search-box input{
    padding:15px;
    width:60%;
    max-width:500px;
    border:none;
    border-radius:5px;
}

.search-box button{
    padding:15px 25px;
    border:none;
    background:#ff7f00;
    color:#fff;
    border-radius:5px;
    font-weight:bold;
}

.section{
    padding:70px 5%;
}

.section h2{
    text-align:center;
    color:#006b3f;
    margin-bottom:40px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    color:#ff7f00;
}

footer{
    background:#006b3f;
    color:#fff;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){
    header{
        flex-direction:column;
    }

    nav{
        margin-top:10px;
    }

    nav a{
        display:inline-block;
        margin:10px;
    }

    .hero h1{
        font-size:32px;
    }

    .search-box input{
        width:90%;
        margin-bottom:10px;
    }
}
