body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #222;
}

header {
    background: #222;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd700;
}

.hero {
    background: #0077b3;
center/cover no-repeat;
    color: #fff;
    padding: 50px 10px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
}

.about, .gallery, .contact {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-preview {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-preview img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-link {
    text-align: center;
    margin-top: 20px;
}

.gallery-link a {
    color: #222;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #ffd700;
    transition: color 0.2s, border-color 0.2s;
}

.gallery-link a:hover {
    color: #ffd700;
    border-color: #222;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 40px;
}

a {
    transition: color 0.2s;
}