/* Global */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #faf6f0;
    color: #333;

    /* Paper texture */
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    background-size: 400px;
}

/* Header */
header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* left | center | right */
    align-items: center;
    padding: 25px 40px;
    background: #f2e4d6;
    border-bottom: 3px solid #ff8c2a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Centered, larger title */
header h1 {
    grid-column: 2;
    /* force title into the center column */
    margin: 0;
    font-size: 2.8rem;
    color: #ff7a00;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
}

/* Contact Button */
header .contact-btn {
    grid-column: 3;
    /* right side */
    justify-self: end;
    font-size: 1.15rem;
    font-weight: 600;
    color: #b24a00;
    background: #ffe8d1;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #ffb47a;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
}

header .contact-btn:hover {
    background: #ffcf9e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px;
}

.gallery .item {
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #f5d8b8;
    background: #fff;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.gallery .item:hover {
    border-color: #ff9d47;
    box-shadow: 0 6px 18px rgba(255, 140, 50, 0.25);
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, opacity .4s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.06);
    opacity: 0.95;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 245, 235, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn .3s ease;
}

.lightbox img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(255, 140, 50, 0.45);
    animation: zoomIn .25s ease;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #f2e4d6;
    /* slightly darker warm beige */
    border-top: 3px solid #ff8c2a;
    margin-top: 40px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.08);
}

footer p {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #ff7a00;
}

footer .social a {
    margin: 0 12px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s ease;
}

footer .social a:hover {
    color: #ff7a00;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
    }

    to {
        transform: scale(1);
    }
}