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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    padding-top: 18vh;
    text-align: center;
    overflow: hidden;
}

/* Imagen de fondo y overlay */
.background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('home-mobile.webp');
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Elementos decorativos */
.decorative-element {
    position: absolute;
    border-radius: 50%;
}

.top-left {
    top: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(116, 145, 130, 0.1);
    filter: blur(24px);
}

.bottom-right {
    bottom: 0;
    right: 0;
    width: 12rem;
    height: 12rem;
    background: rgba(234, 229, 226, 0.2);
    filter: blur(24px);
}

/* Contenido principal */
.content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Contenedor de vidrio */
.glass-container {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background: rgba(255, 255, 255, 0.45);
    padding: 2.5rem 1.25rem 1.75rem;
    border-radius: 1.5rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    will-change: transform, opacity;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.home-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    filter: brightness(0.15);
}

.logo h1 {
    font-family: 'MrEavesXLModOT', serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: #1e2428;
    text-shadow: 0 1px 1px rgba(30, 36, 40, 0.2);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.02em;
}

/* Texto Coming Soon */
.coming-soon {
    margin-bottom: 2.5rem;
}

.typing {
    font-family: 'MrEavesXLModOT', serif;
    font-size: 2.75rem;
    font-weight: bold;
    color: #1e2428;
    margin-bottom: 1rem;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: typing 3.5s steps(30, end);
    position: relative;
    letter-spacing: -0.02em;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.coming-soon p {
    font-size: 1rem;
    color: rgba(30, 36, 40, 0.95);
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.5s both;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Enlaces sociales */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #749182;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background: rgba(116, 145, 130, 0.9);
}

.social-links svg {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    z-index: 10;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes typing {
    from { 
        width: 0;
    }
    to { 
        width: 100%;
    }
}

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

/* Media queries */
@media (min-width: 768px) {
    main {
        justify-content: center;
        padding-top: 1rem;
    }

    .glass-container {
        padding: 2.5rem 2rem;
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 
            0 8px 12px rgba(0, 0, 0, 0.12),
            0 2px 4px rgba(0, 0, 0, 0.1),
            inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    }

    .home-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .logo h1 {
        font-size: 2.75rem;
        text-shadow: 0 1px 1px rgba(30, 36, 40, 0.15);
        letter-spacing: -0.01em;
    }

    .typing {
        font-size: 4rem;
        letter-spacing: -0.01em;
    }

    .coming-soon p {
        font-size: 1.25rem;
        color: rgba(30, 36, 40, 1);
    }

    .social-links a {
        width: 3rem;
        height: 3rem;
    }

    .social-links svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .top-left {
        width: 16rem;
        height: 16rem;
    }

    .bottom-right {
        width: 24rem;
        height: 24rem;
    }

    .background {
        background-image: url('home02-desktop.webp');
    }
} 