/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000; /* Dark background */
    color: #fff; /* White text */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    animation: fadeIn 1s ease-in-out;
}

/* Logo Area */
.logo-placeholder {
    margin: 0 auto 2.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    width: 100%;
    max-width: 700px;
    max-height: 450px;
    height: auto;
    object-fit: contain;
}

/* Typography */
.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 0.75rem;
}

.tagline {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

/* Interactive Elements */
.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-info a:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
