body{
    font-family:Arial,sans-serif;
    background:#F5F0E6;
    color:#3B2A1D;margin:0
}

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

header{
    background:#7A4E2D;
    color:white;
    padding:20px
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 80px;
    width: auto;
}

nav a{
    color:white;
    margin-right:15px;
    text-decoration:none
}

.hero{
    text-align:center;
    padding:50px 20px
}

.btn{
    display:inline-block;
    background:#B59B3E;
    color:white;
    padding:10px 20px;
    text-decoration:none
}

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

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.gallery-item img {
    width: 100%;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.placeholder{
    background:#ddd;
    padding:60px 20px;
    text-align:center
}

input,textarea,select{
    width:100%;
    padding:8px;
    margin-bottom:12px
}

button{
    background:#B59B3E;
    color:white;
    border:none;
    padding:10px 20px
}

footer{
    padding:20px;
    text-align:center;
    background:#3B2A1D;
    color:white;
    margin-top:40px
}
