\/* =========================
    Global Reset
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
    Base Styles
========================= */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.5;
}

/* =========================
    Header & Navigation
========================= */
header {
    text-align: center;
    padding: 40px 20px 20px;
}

header h1 {
    font-size: 24px;         /* Reset back to your original size */
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #666666;
}

/* =========================
    Gallery Layout
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    padding: 20px;
}

/* =========================
    Images
========================= */
.gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery img:hover {
    opacity: 0.9;
}

/* =========================
    Contact Section Style
========================= */
#contact h2 {
    font-size: 18px;         /* 25% smaller than the original 24px */
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================
    Footer
========================= */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 12px;
    color: #666666;
}

/* =========================
    Responsive Tweaks
========================= */
@media (max-width: 600px) {
    header h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    #contact h2 {
        font-size: 16px;
    }

    nav ul {
        gap: 15px;
    }
}
