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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Centered logo container */
.centered-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    gap: 2rem;
}

/* Logo link styling */
.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/* Main logo styling */
.main-logo {
    width: 300px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(1000%) hue-rotate(230deg) brightness(95%) contrast(95%);
    transition: all 0.3s ease;
    animation: fadeIn 1.5s ease-out;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(39%) sepia(57%) saturate(1000%) hue-rotate(230deg) brightness(95%) contrast(95%);
}

/* Subtext styling */
.subtext {
    max-width: 600px;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.subtext h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtext p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 400;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-logo {
        width: 220px;
    }
    
    .centered-logo {
        gap: 1.75rem;
    }
    
    .subtext h1 {
        font-size: 1.8rem;
    }
    
    .subtext p {
        font-size: 1rem;
    }
    
    .subtext {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 180px;
    }
    
    .centered-logo {
        padding: 1rem;
        gap: 1.5rem;
        min-height: 100vh;
    }
    
    .subtext h1 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .subtext p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .subtext {
        max-width: 100%;
        padding: 0 1rem;
    }
}
