/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #001918; /* Darkest Teal */
    color: #B17500;         /* Gold */
    font-family: 'Poppins', sans-serif; 
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 20px; 

    /* Attempt to improve font rendering consistency */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 900px;
    background-color: inherit;
    outline: none;
}

.company-name {
    font-family: 'Poiret One', sans-serif;
    font-size: 7rem; 
    font-weight: 400; 
    letter-spacing: 4px; 
    margin-bottom: 2.5rem; 
    line-height: 1.1; 
    /* Explicitly remove any text shadow */
    text-shadow: none; 
}

.footer-text {
    /* Container for the bottom text */
}

.tagline {
    font-family: 'Parisienne', cursive;
    font-size: 2.2rem; 
    font-weight: 400;
    margin-bottom: 1.5rem; 
    opacity: 0.95; 
    line-height: 1.2;
    /* Explicitly remove any text shadow */
    text-shadow: none;
}

.coming-soon {
    /* Inherits Poppins from body */
    font-size: 1.1rem; 
    font-weight: 300; 
    opacity: 0.7; 
    letter-spacing: 1px; 
    /* Explicitly remove any text shadow */
    text-shadow: none;
}

/* Simple responsiveness adjustments */
@media (max-width: 768px) {
    .company-name {
        font-size: 5.5rem;
        margin-bottom: 2rem;
    }
    .tagline {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    .coming-soon {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 4rem;
        letter-spacing: 2px;
    }
    .tagline {
        font-size: 1.6rem;
    }
}