@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Absolutně čisté krémové pozadí */
body {
    background-color: #F8F8F0;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Hlavní wrapper pro vycentrování všeho */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertikální centr */
    align-items: center;     /* Horizontální centr */
    position: relative;
    padding: 20px;
}

/* Sekce s obřím logem */
.logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    animation: scaleIn 1.5s ease-out; /* Plynulý náběh */
}

.main-logo {
    width: 100%;
    /* Tady jsme to pořádně zvětšili */
    max-width: 850px; 
    height: auto;
    display: block;
    /* Velmi jemný stín, aby logo nebylo ploché */
    filter: drop-shadow(0 15px 35px rgba(214, 45, 45, 0.1));
}

/* Patička se zastřešením MY */
.footer-info {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b0b0a0;
    margin-bottom: 12px;
}

.footer-logo {
    height: 50px; /* O něco větší logo MY pro rovnováhu */
    width: auto;
    opacity: 0.85;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Animace pro velkolepý nástup */
@keyframes scaleIn {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Responzivita pro mobilní telefony */
@media (max-width: 768px) {
    .main-logo {
        max-width: 90%; /* Na mobilu využije skoro celou šířku */
    }
    .footer-info {
        bottom: 25px;
    }
    .footer-logo {
        height: 38px;
    }
}