/* static/styles/header.css */

/* Contenedor Principal estilo Glass (TUS CAMBIOS ORIGINALES) */
.cityair-header-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1rem 1rem;
    padding-top: 1.5rem;
    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: left;
}

.h1-header {
    display: none;
}

/* --- NUEVO: El Contenedor Circular --- */
.logo-circle-wrapper {
    /* Definimos el tamaño aquí (el que tenías antes en la imagen) */
    width: 12rem; 
    height: 12rem;
    
    /* Magia para hacerlo circular */
    border-radius: 50%;
    overflow: hidden; /* Recorta lo que sobresalga */
    
    /* Estilo del círculo (opcional: fondo blanco sutil para resaltar) */
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    
    /* Centrar la imagen dentro del círculo */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Animación se mueve al contenedor */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Control estricto del tamaño del logo DENTRO del círculo */
.header-logo {
    /* Ajustamos para que llene el contenedor circular */
    height: 100%; /* Un poco menos del 100% para dar aire, o 100% si prefieres */
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Animación: Ahora escalamos el círculo completo al pasar el mouse */
.cityair-header-container:hover .logo-circle-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Títulos (TUS CAMBIOS ORIGINALES) */
.header-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0;
    background: linear-gradient(90deg, #1f2d3d 0%, #344f1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.header-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}