/* General styles for body with a white background */
body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333; /* Set text color to dark grey for contrast on white */
    background-color: #fff; /* Set background color to white */
}

/* Header section styling */
.header {
    position: relative;
    width: 100%;
    height: 400px; /* Set the height for the header */
    background: url('images/header1.jpg') no-repeat center center; /* Header image */
    background-size: cover; /* Ensure it covers the entire header area */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Set header text color to white */
    text-align: center;
    overflow: hidden; /* Prevent overflow */
}

/* Header text styling */
.header h1 {
    font-size: 2.5em; /* Adjust font size for the name */
    font-weight: bold;
    margin: 0; /* Remove margin */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add shadow for text visibility */
}

/* Position text at the bottom of the header without a box */
.header h1 {
    position: absolute;
    bottom: 20px; /* Distance from the bottom of the header */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    color: white; /* Text color */
    font-size: 3.5em;
    padding: 10px 20px; /* Space around the text */
    margin: 0; /* Remove any extra margin */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Optional: Add text shadow for better visibility */
}

.language-switcher {
    text-align: center;
    margin: 20px 0;
}

.language-switcher a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
}

.language-switcher a:hover {
    color: #007bff;
}

/* Main content container */
.container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    justify-content: center; /* Center elements */
    text-align: center;
    max-width: 800px; /* Set a max width for content */
    margin: auto; /* Center the container */
    padding: 20px; /* Space around content */
}

/* Logo styling */
.logo {
    width: auto;
    max-width: 480px; /* Limit logo width */
    height: auto;
    margin-bottom: 10px; /* Space below logo */
}

/* Intro text styling */
.intro {
    margin: 20px 0; /* Space around intro */
}

.intro h1 {
    font-size: 2.5em; /* Larger font size */
    margin: 0; /* Remove margin */
}

.intro p {
    font-size: 1em; /* Normal font size */
    line-height: 1.5; /* Line spacing for readability */
}

/* Gallery styling */
.gallery {
    display: flex; /* Flexbox layout for gallery */
    justify-content: center; /* Center gallery items */
    flex-wrap: wrap; /* Allow items to wrap */
    gap: 10px; /* Space between images */
    margin-top: 20px; /* Space above gallery */
}

.gallery img {
    max-width: 45%; /* Set max width for images */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    object-fit: cover; /* Cover without distortion */
}

/* Footer styling */
footer {
    background-color: #fff; /* Footer background */
    color: #333; /* Footer text color */
    text-align: center; /* Center footer text */
    padding: 20px; /* Space around footer */
    font-size: 10px; /* Font size for footer */
    width: 100%; /* Full width footer */
}

footer p {
    margin: 0; /* Remove margin from footer text */
}

footer .download-button {
    background-color: #007bff; /* Button color */
    color: white; /* Button text color */
    padding: 8px 12px; /* Button padding */
    border-radius: 5px; /* Rounded button corners */
    text-decoration: none; /* Remove underline */
}

footer .download-button:hover {
    background-color: #0056b3; /* Button hover color */
}