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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    z-index: 1; /* Logo container stays at z-index 1 */
    text-align: center;
}

.logo {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Taglines styling */
.tagline {
    position: absolute;
    font-size: 1.5rem;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    max-width: 300px;
    pointer-events: none;
    z-index: 2; /* Ensure taglines appear above the logo */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Contact Email Link */
.contact-email {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: 1000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-email:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.contact-email:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .tagline {
        font-size: 1.2rem;
        max-width: 200px;
    }
}

/* Animation for taglines - Slower and smoother */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    15% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
