:root {
    --bg-color: rgb(254, 241, 213);
    --text-color: #2d3436;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    max-width: 300px;
    width: 80%;
    text-align: center;
}

#main-logo {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
    transition: var(--transition);
}

#main-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08));
}

.footer {
    padding: 40px;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.6;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.fade-in {
    animation: fadeIn 1.2s ease-out both;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .logo-wrapper {
        max-width: 200px;
    }
    
    .footer {
        padding: 30px;
        font-size: 0.8rem;
    }
}
