body {
    font-family: Arial, sans-serif;
    background: #f4e7ce;
    color: #333;
    margin: 0;
    padding: 0;
}
header {
    background: #c7a46a;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 60px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}
main {
    padding: 2rem;
}
section {
    margin-bottom: 3rem;
}
footer {
    background: #c7a46a;
    color: white;
    text-align: center;
    padding: 1rem;
}
.disabled {
    color: gray;
    text-decoration: line-through;
}
#gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
#gallery img {
    height: 250px;
    cursor: pointer;
    transition: transform 0.2s;
}
#gallery img:hover {
    transform: scale(1.1);
}
#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
#modal img {
    max-width: 90%;
    max-height: 90%;
}