/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-Screen Container */
body, html {
    width: 100%;
    height: 100%;
    font-family: 'Noto Serif', Arial, sans-serif;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.company-name {
    font-size: 1rem;
    color: #EAEAEA;
    font-family: 'Noto Serif', Arial, sans-serif;
    text-align: left;
}

/* Background Container */
.background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Ensure the image fills the entire container */
    background-position: center;
    transform-origin: center; /* Keep the zoom centered */
    animation: zoomInOut 30s infinite alternate; /* Continuous zoom animation */
    z-index: -2; /* Keep behind content */
}

/* Blue Filter Overlay */
.background-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 33, 71, 0.8); /* Oxford Blue with 50% opacity */
    mix-blend-mode: multiply; /* Blend the color with the image */
    z-index: -1; /* Keep behind content */
}

/* Zoom Animation */
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Zoom in */
    }
    100% {
        transform: scale(1); /* Zoom out */
    }
}

/* Content Styling */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 6rem;
    color: #EAEAEA;
}

/* Smaller font size for the new paragraph */
.content .small-text {
    font-family: 'Noto Serif', Arial, sans-serif;
    font-size: 1.2rem;
    color: #EAEAEA;
}

/* Email Link Styling */
.content .small-text a {
    color: #E6E6FA; /* Change this to your desired color */
    /*text-decoration: none; !* Optional: Remove underline *!*/
}

/* Footer Styling */
footer {
    font-family: 'Noto Serif', Arial, sans-serif;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    background-color: #f1f1f1;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}
