    @font-face {
    font-family: 'LEMON MILK';
    src: url('fonts/LEMONMILK-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LEMON MILK';
    src: url('fonts/LEMONMILK-MediumItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'LEMON MILK';
    src: url('fonts/LEMONMILK-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;  
}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'LEMON MILK', sans-serif;
    height: 100vh;
    /* overflow: hidden; */
    position: relative;
    text-transform: uppercase;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/Realistic-Horn.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #ebe0c4;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
}

.container {
    position: relative;
    z-index: 3;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    padding: 0px;
}

.logo-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo-row > div {
    width: 150px; 
    margin: 0;
    padding: 0;
    border: none;
}

.logo-row img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.logo-row > .brand {
    width: 250px; /* O el tamaño que prefieras */
}

.logo-row > .brand img {
    width: 100%;
    height: auto;
}

.coming-soon {
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

.coming-soon h2 {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 4rem;
    color: #34495e;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.progress-container {
    width: 300px;
    margin-bottom: 50px;
    animation: fadeIn 2s ease-out 1.2s both;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background-color: rgba(231, 76, 60, 0.2);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 100px;
    width: 0%;
    animation: progressFill 4s ease-out 2s both;
}

.progress-text {
    font-family: 'LEMON MILK', sans-serif;
    font-size: 1rem;
    color: #34495e;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 3px;
    animation: fadeIn 2.5s ease-out 2s both;
}

.map-container {
    width: 120px;
    height: 120px;
    max-width: 200px;
    max-height: 200px;
    min-width: 80px;
    min-height: 80px;
    margin: 20px auto 0 auto;
    border-radius: 100px;
    box-shadow: 0 2px 12px #ebe0c4;
    overflow: hidden;
    background: #ebe0c4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}   

.business-hours {
    margin-top: 30px;
    color: #34495e;
    font-family: 'LEMON MILK', sans-serif;
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    html, body {
        height: 100%;
        background-color: #ebe0c4;
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ebe0c4;
        background-image: url('images/Realistic-Horn.png');
        background-size: 70vw auto;
        background-position: right center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    .overlay {
        /* Overlay más opaco en móviles para mejor legibilidad */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 2;

        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.75) 100%
        );
    }
    
    .logo-row {
        display: flex;
        flex-direction: column;
        gap: 0; /* Sin espacio entre imágenes */
        justify-content: center;
        align-items: center;
        margin-bottom: 16px;
    }
    .logo-row > div {
        width: 90px; /* Ajusta el tamaño para móviles si lo deseas */
    }
    .logo-row img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .coming-soon h2 {
        font-size: 2.5rem;
        letter-spacing: 4px;
        font-weight: 500;
        /* Mejorar contraste del texto */
        text-shadow: 0 2px 6px rgba(255,255,255,0.8);
    }
    
    .progress-container {
        width: 250px;
    }

    .map-container {
        width: 30vw;
        height: 30vw;
        max-width: 90px;
        max-height: 90px;
        min-width: 60px;
        min-height: 60px;
        margin: 30px 0 0 0;
        border-radius: 100px;
        box-shadow: 0 2px 12px #ebe0c4;
        overflow: hidden;
        background: #ebe0c4;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .map-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    .business-hours {
        font-size: 0.7rem;
        margin-top: 20px;
    }
}