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

html,
body {
    height: 100%;
}

/* Basic Layout */
body {
    background-color: white;
    font-family: 'Montserrat', Arial, sans-serif;
}

.container {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Logo centering */
.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 20px;
}

.logo-wrapper {
    animation: logoFloat 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo {
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.25));
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(6px 8px 6px rgba(0, 0, 0, 0.35));
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Fallback styles for logo loading failure */
.logo-fallback {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    display: none;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-fallback:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

/* Copyright positioning */
.copyright {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.copyright p {
    font-size: 16px;
    color: #666;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
}

/* Responsive Design for Mobile Devices */
@media screen and (max-width: 768px) {
    .logo {
        max-width: 280px;
        margin: 0 auto;
    }

    .logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo-fallback {
        font-size: 2rem;
    }

    .logo:hover {
        transform: scale(1.02);
    }

    .logo-fallback:hover {
        transform: scale(1.02);
    }



    .copyright {
        bottom: 15px;
        right: 15px;
    }

    .copyright p {
        font-size: 14px;
    }
}