/* Reset & Base */
body {
    margin: 0;
    font-family: "Georgia", serif;
    background-color: #ffffff;
    color: #111;
    text-align: center;
}

header {
    padding: 80px 20px 40px;
}

h1 {
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 400;
}

.subtitle {
    font-size: 16px;
    color: #777;
    margin-top: 10px;
}

/* About Section */
.about {
    max-width: 800px;
    margin: 60px auto;
    padding: 20px;
}

.about img {
    width: 200px;
    border-radius: 100%;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
}

/* Gallery */
.gallery {
    margin: 80px auto;
    max-width: 1100px;
}

.gallery h2 {
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.grid img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Contact */
.contact {
    margin: 80px auto;
    max-width: 600px;
}

.contact h2 {
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.contact a {
    text-decoration: none;
    color: #111;
    border-bottom: 1px solid #ccc;
    transition: 0.3s;
}

.contact a:hover {
    border-bottom: 1px solid #111;
}

/* Footer */
footer {
    margin: 100px 0 40px;
    font-size: 14px;
    color: #aaa;
}

/* Language Switch */
.lang-switch {
    margin-top: 20px;
}

.lang-switch button {
    background: none;
    border: 1px solid #ccc;
    padding: 6px 14px;
    margin: 5px;
    cursor: pointer;
    font-family: Georgia, serif;
    transition: 0.3s;
}

.lang-switch button:hover {
    border-color: #111;
}

/* Responsive */
@media (max-width: 600px) {
    h1 { font-size: 32px; }
    .about img { width: 150px; }
    .about p { font-size: 16px; }
}
