* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: Georgia, serif;
    background: #fff;
    color: #222;
    font-size: 16px;
    line-height: 1.7;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    border-bottom: 1px solid #e5e5e5;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    transition: color 0.15s;
}

.nav-links a:hover { color: #000; }

/* MAIN & FOOTER */
main { padding: 3rem 2.5rem; max-width: 1100px; margin: 0 auto; }

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.8rem;
    color: #aaa;
    font-family: Arial, sans-serif;
    margin-top: 4rem;
}

/* PAGE TITLE */
.page-title {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #222;
}

/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.no-images {
    color: #999;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

/* CONTACT FORM */
.contact-form { max-width: 500px; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

label {
    font-size: 0.82rem;
    font-family: Arial, sans-serif;
    color: #666;
}

input, textarea {
    font-family: Georgia, serif;
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid #ddd;
    color: #222;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

input:focus, textarea:focus { border-color: #999; }

textarea { resize: vertical; min-height: 120px; }

button {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s;
}

button:hover { background: #444; }

/* RESPONSIVE */
@media (max-width: 700px) {
    .image-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 450px) {
    nav { padding: 1rem 1.25rem; }
    .image-grid { grid-template-columns: 1fr; }
}

.logo {
    height: 200px;
    width: auto;
}