/* General styles for body */
body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff; /* Consistent with html background */
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ensure the entire page is covered with the white background */
html {
    height: 100%; /* Ensures the background extends fully */
    background-color: #ffffff; /* Matches the body background */
}

/* Full-width header image container */
.header {
    width: 100%;
    height: 60vh;
    background-image: url('images/film.mp4');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Logo Styling */
.header-text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.header-text img {
    max-width: 480px;
    height: auto;
}

/* Main container settings */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    flex-direction: column;
}

/* Right Side Content */
.right-side {
    max-width: 800px;
    margin: 0 auto;
}

/* Introductory text settings, left-aligned */
.intro p {
    text-align: left;
    font-size: 0.9em;
}

/* Language switcher alignment */
.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;
}

/* Gallery styling */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    background-color: #ffffff;
}

.gallery img {
    max-width: 30%;
    border-radius: 10px;
    object-fit: cover;
}

/* Showreel section styles */
.reel {
    text-align: center;
    padding: 10px 20px;
    background-color: #ffffff;
}

.reel h2 {
    font-size: 1.2em;
}

/* Contact section styles */
.contact {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
}

.contact p {
    font-size: 0.9em;
}

/* Footer styling */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    font-size: 9px;
}

footer p {
    margin: 0;
}

/* Footer button styling */
footer .download-button {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

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

footer .social-links {
    margin-top: 10px;
}

footer .social-links a {
    color: white;
    margin: 0 10px;
}