/* Estilos personalizados para CakeBar */

/* Variables de colores */
:root {
    --color-primario: #ff6b9d;
    --color-secundario: #ffeaa7;
    --color-acento: #74b9ff;
    --color-texto: #2d3436;
    --color-blanco: #ffffff;
}

/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 80px; /* Para compensar navbar fijo */
    color: var(--color-texto);
}

/* Navegación */
.navbar-brand {
    font-size: 1.8rem;
    color: var(--color-primario) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primario) !important;
}

/* Sección Hero */
.hero-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.hero-image-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 3px dashed #dee2e6;
}

/* Botones personalizados */
.btn-primary {
    background-color: var(--color-primario);
    border-color: var(--color-primario);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff4081;
    border-color: #ff4081;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    color: white;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-image-placeholder {
        min-height: 300px;
        margin-top: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
    }
}

/* Animaciones suaves */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}