/* --- General Styles --- */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

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

/* --- Header & Navigation --- */
header {
    background-color: #f8e5e5;
    padding: 10px 0;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

    header img {
        max-width: 150px;
        height: auto;
        margin-bottom: 10px;
    }

nav a {
    text-decoration: none;
    color: #555;
    margin: 0 15px;
    font-weight: bold;
}

    nav a:hover {
        color: #d17878;
    }

.gallery-nav {
    text-align: center;
    margin-bottom: 20px;
}

    .gallery-nav a {
        text-decoration: none;
        color: #fff;
        background-color: #d17878;
        padding: 8px 15px;
        border-radius: 5px;
        margin: 0 10px;
    }

        .gallery-nav a:hover {
            background-color: #a35d5d;
        }

/* --- Sticky Gallery Nav --- */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f4f4f4;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Sections --- */
.section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* --- Gallery --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

    .gallery img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.2s;
    }

        .gallery img:hover {
            transform: scale(1.05);
        }

/* --- Modal/Lightbox Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

    .close-btn:hover,
    .close-btn:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f8e5e5;
    border-top: 2px solid #ccc;
    position: relative;
}

/* --- Contact Form --- */
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #d17878;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .contact-form button:hover {
        background-color: #a35d5d;
    }
