/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('images/top-view-green-leaves.jpg') no-repeat center center fixed;
    background-size: cover; /* Cover the entire viewport */
    background-color: #f4f4f4; /* Fallback color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center; /* Center the text inside the container */
}

.section {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center; /* Center the text inside each section */
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d9534f; /* A nice red */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Center the ul horizontally */
    max-width: 600px; /* Optional: Set a max width to control width */
    text-align: center; /* Center the text inside the ul */
}

li {
    margin-bottom: 10px; /* Increase spacing between items if needed */
}

a.form-button {
    display: inline-block;
    background: #5bc0de;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

a.form-button:hover {
    background: #31b0d5;
}

.language-switcher {
    text-align: center;
    margin: 20px 0;
}

.flag-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin: 0 5px;
    transition: transform 0.3s;
}

.flag-btn:hover {
    transform: scale(1.1);
}

.language-section {
    display: none;
}

.photo-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.album-button {
    padding: 10px 20px;
    background-color: #739658;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.album-button:hover {
    background-color: #739658;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p, ul {
        font-size: 0.9rem;
    }

    a.form-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .flag-btn {
        font-size: 1.5rem;
    }
}
