/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Variables de Colores */
:root {
    --pastel-blue: #b3d9e9;
    --background-blue: #b3d9e9;
    --text-color: #2a5c74;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --accent-orange: #ffb347;
    --accent-pink: #ff85a2;
    --ribbon-color: #ff6b6b;
    --instagram-color: #c13584;
    --facebook-color: #3b5998;
    --twitter-color: #1da1f2;
}

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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: var(--white);
    position: relative;
    color: #333;
    line-height: 1.6;
}

/* Ribbon de mantenimiento */
.ribbon {
    width: 200px;
    background: var(--ribbon-color);
    position: absolute;
    top: 25px;
    left: -50px;
    text-align: center;
    line-height: 40px;
    color: var(--white);
    font-weight: bold;
    font-size: 14px;
    font-family: 'Fredoka', sans-serif;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.ribbon span {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0;
    letter-spacing: 1px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-link:hover {
    color: var(--white);
    opacity: 0.8;
}

/* Contenedor principal */
.container {
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    background-image: linear-gradient(var(--light-gray) 1px, transparent 1px),
                      linear-gradient(90deg, var(--light-gray) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: -1px -1px;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    padding-top: 40px;
}

/* Título Principal con Pacifico */
.hero-title {
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.main-title {
    font-family: 'Pacifico', cursive;
    font-size: 8rem;
    color: var(--text-color);
    text-shadow: 
        3px 3px 0 var(--white),
        -1px -1px 0 var(--white),
        1px -1px 0 var(--white),
        -1px 1px 0 var(--white),
        1px 1px 0 var(--white);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--text-color);
    margin-right: 10px;
    font-weight: 500;
    margin-top: -30px;
    z-index: -1;
}

.icon-container {
    display: inline-flex;
    align-items: center;
}

.icon-bear {
    transition: all 0.3s ease;
}

.icon-bear:hover {
    transform: scale(1.2);
}

/* Título Centrado */
.hero-text {
    position: absolute;
    text-align: center;
    z-index: -1;
    width: 100%;
    margin-bottom: 0px;
    top: -20px;

}

.hero-text h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0px;
}



.hero-text p {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Content */
.top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    z-index: 5;
}

/* Yogurt Container */
.yogurt-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

/* Coming Soon Label - Ahora debajo del helado */
.coming-soon-label {
    position: relative;
    background-color: var(--text-color);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    z-index: 6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: -30px;
    margin-bottom: 20px;
}

/* Imagen del Yogur */
.yogurt-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 90;
}

.yogurt-image img {
    width: auto;
    height: 600px; /* Más grande */
    max-height: 80dvh;
}

/* Iconos de Redes Sociales en Esquina */
.social-icons-corner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.social-icon-small {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon-small:nth-child(1) {
    background: var(--instagram-color);
}

.social-icon-small:nth-child(2) {
    background: var(--facebook-color);
}

.social-icon-small:nth-child(3) {
    background: var(--twitter-color);
}

.social-icon-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mensaje de éxito */
.success-message {
    text-align: center;
    animation: fadeIn 0.5s ease;
    color: var(--text-color);
    font-family: 'Fredoka', sans-serif;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .main-title {
        font-size: 4.5rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
        margin-top: -20px;
    }
    
    .yogurt-image img {
        height: 550px;
    }
    
    .coming-soon-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 20px;
    }
    
    .main-title {
        font-size: 4.5rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
    }
    
    .hero-text h2, .hero-text p {
        font-size: 3rem;
    }
    
    .yogurt-image img {
        height: 500px;
    }
    
    .coming-soon-label {
        font-size: 1.1rem;
        padding: 8px 25px;
        margin-top: -20px;
    }
    
    .social-icons-corner {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 4.5rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
        margin-top: -10px;
    }
    
    .hero-text h2, .hero-text p {
        font-size: 3rem;
    }
    
    .yogurt-image img {
        height: 400px;
    }
    
    .coming-soon-label {
        font-size: 1rem;
        padding: 6px 20px;
        margin-top: -15px;
    }
    
    .social-icons-corner {
        bottom: 10px;
        right: 10px;
    }
    
    .social-icon-small {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 