body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #faf7f3;
    color: #333;
}

header {
    background: #ffaf4c;
    color: #fff;
    padding: 32px 0 16px 0;
    text-align: center;
    font-size: 2.5em;
    letter-spacing: 2px;
    font-weight: bold;
    box-shadow: 0 2px 8px #00000010;
}

main {
    padding: 40px 10px 40px 10px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    color: #ff6f00;
    margin-bottom: 32px;
}

.images {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px #00000014;
    padding: 18px;
    text-align: center;
    width: 260px;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 24px #ffaf4c33;
}

.card img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card p {
    font-size: 1.1em;
    color: #5d3a00;
    margin: 0;
}

footer {
    background: #ffaf4c;
    color: #fff;
    text-align: center;
    padding: 16px 0 12px 0;
    font-size: 1.2em;
    margin-top: 40px;
    position: relative;
}

footer .rights {
    font-size: 1em;
    margin-top: 8px;
    color: #fffde0;
}