
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #ffffff;
    color: #111111;
}

header {
    text-align: center;
    padding: 50px 20px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
}

nav {
    text-align: center;
    margin: 30px 0;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    color: #111111;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s;
}

nav a:hover {
    border-bottom: 1px solid #111111;
}

.hero {
    text-align: center;
    margin: 30px 0;
}

.hero img {
    width: 80%;
    max-width: 1000px;
    height: auto;
    animation: fadeIn 2s;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery img {
    width: 300px;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

input, textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background: none;
    border: 2px solid #111;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

input[type="submit"]:hover {
    background: #111;
    color: #fff;
}

footer {
    text-align: center;
    font-size: 0.9em;
    padding: 30px 10px;
    color: #555;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Styles */
@media (max-width: 768px) {
    header {
        font-size: 36px;
        padding: 30px 10px;
    }

    nav a {
        display: block;
        margin: 10px 0;
        font-size: 20px;
    }

    .hero img {
        width: 95%;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery img {
        width: 90%;
        height: auto;
    }

    form {
        padding: 0 10px;
    }

    section {
        padding: 20px 10px;
    }
}
