:root {
    --font-main: 'Outfit', sans-serif;
    --color-white: #ffffff;
    --color-white-dim: rgba(255, 255, 255, 0.8);
    --color-overlay: rgba(0, 0, 0, 0.45); /* Brightened from 0.65 */
    --animation-speed: 1.2s;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-white);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomSlow 15s infinite alternate ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    backdrop-filter: blur(2px); /* Reduced blur */
}

.hero {
    text-align: center;
    z-index: 10;
    padding: 20px;
    width: 100%;
    max-width: 800px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
    /* Optional: subtle glass card effect for the content itself, can be removed for cleaner look */
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 16px;
}

.logo-container {
    width: 250px; /* Increased from 120px */
    height: 250px;
    margin-bottom: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.company-name {
    font-size: 1.05rem; /* Reduced by ~10% from 1.2rem */
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    color: var(--color-white); /* Solid white for better readability at small size */
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.5;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    margin: 0 auto;
}

.contact-email {
    font-size: 1.1rem;
    color: var(--color-white-dim);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
}

.contact-email:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Animations */
.fade-in {
    animation: fadeIn var(--animation-speed) ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomSlow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.15); /* More noticeable drift */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .company-name {
        font-size: 1rem;
    }
    
    .logo-container {
        width: 180px;
        height: 180px;
    }
}
