/* styles.css */

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}



.main-header {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #dcbca9, #ff5900);
    color: rgb(0, 0, 0);
    padding: 15px 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border-bottom: 4px solid #cc8f78;
}

/* Efecto decorativo */
.main-header::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}s

/* Contenedor del logo */
.logo-container {
    flex-shrink: 0;
    z-index: 2;
}

/* Contenedor del logo */
.logo-container {
    flex-shrink: 0;
    
}

.logo {
    height: 220px;
    width:250px;
        position: absolute;
    top: 0px;
    left: 0px;
  
}

/* Contenedor de texto */
.text-container {
    margin-left: 310px;

}

.site-name {
    font-size: 1.8rem;
    font-weight: bold;

  
}

.tagline {
    font-size: 1rem;
    margin-left: 50px;
    color: #ffffff;
    


}

/* Responsivos */
@media (max-width: 600px) {
    .main-header {
        flex-direction:column;
        text-align: center;
    }
    .text-container {
        margin-left:200px ;
        margin-top: 10px;
        text-align: center;
    }
}  

.logo{

    /* Animación */
    animation: aparecer 3s ease-in-out infinite;
    transition: transform 0.3s ease-in-out;
}

/* Efecto al pasar el mouse */
.logo:hover{
    transform: scale(1.05);
}

/* Animación suave */
@keyframes flotar {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-8px);
    }
    100%{
        transform: translateY(0px);
    }
}
/* Contenedor de texto */
.text-container {
    margin-left: 310px;
    animation: flotar 1.2s infinite;
}

/* Nombre del sitio */
.site-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;

    /* Diseño */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);

  
}

/* Eslogan */
.tagline {
    font-size: 1rem;
    margin-left: 50px;
    color: #ffffff;

    animation: aparecer 2s ease;
}

/* Animaciones */
@keyframes deslizar {
    from{
        opacity: 0;
        transform: translateX(-40px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aparecer {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}