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

.hero{
    background:url('hero.jpg') center center/cover no-repeat;
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    background:rgba(0,0,0,.45);
    color:white;
    padding:40px;
    border-radius:12px;
    text-align:center;
}

.business-name{
    font-size:2rem;
    margin:10px 0;
}

.tagline{
    font-size:1.2rem;
}

.container{
    max-width:1100px;
    margin:auto;
    padding:40px 20px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
}

.btn{
    background:#8b5a2b;
    color:white;
    padding:12px 20px;
    text-decoration:none;
    border-radius:6px;
}

.btn:hover{
    opacity:.9;
}

a{
    color:#8b5a2b;
}

h1,h2{
    color:#333;
}
