/* Header Ultra Moderno */
.header-section {
    background: linear-gradient(to right, #A8D8E8, #F4A6B7, #F5E6D3);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem; /* Ajuste de padding */
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2); /* Sombra sutil */
}

/* Efeito de partículas de fundo */
.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 182, 193, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 218, 185, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 160, 122, 0.15) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.8; /* Ajuste de opacidade */
}

/* Linha decorativa no topo */
.header-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f5b3b2 0%, #fdedd9 25%, #70574e 50%, #b3d7de 75%);
}

.logo-container {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem; /* Aumentar espaçamento */
}

.restaurant-name {
    font-size: 4rem; /* Título maior */
    font-weight: 800; /* Mais negrito */
    margin-bottom: 0.8rem; /* Ajuste de espaçamento */
    position: relative;
    z-index: 2;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4); /* Sombra mais forte */
    background: linear-gradient(45deg, #ffffff, #e0e0e0); /* Gradiente no texto */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem; /* Subtítulo maior */
    font-weight: 600; /* Mais leve */
    opacity: 0.95;
    position: relative;
    z-index: 2;
    color: #70574e; /* Cor mais clara */
}

.restaurant-status{
    background: #ffffff48;
}

/* JS text */
.status-text, .status-details{
    color: #70574e; /* Cor mais clara */
}

.login-button{
    color: #70574e;
    border: 1px solid #70574e;
}


/* Header Cart Button */
.header-cart-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; /* Aumentar espaçamento */
    background: linear-gradient(135deg, #F5E6D3 0%, #F5E6D3 100%);
    color: #70574e;
    padding: 0.9rem 1.8rem; /* Aumentar padding */
    border-radius: 30px; /* Mais arredondado */
    cursor: pointer;
    transition: all 0.4s ease; /* Transição mais suave */
    box-shadow: 0 6px 20px #a8d8e869; /* Sombra mais forte */
    font-weight: 600; /* Mais negrito */
    position: relative;
    overflow: hidden;
    margin-top: 3rem; /* Aumentar margem superior */
}

.header-cart-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff26;
    transform: skewX(-30deg);
    transition: all 0.5s ease;
}

.header-cart-button:hover::before {
    left: 100%;
}

.header-cart-button:hover {
    transform: translateY(-3px) scale(1.02); /* Efeito de hover mais pronunciado */
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.header-cart-button i {
    font-size: 1.4rem; /* Ícone maior */
}

.header-cart-count {
    background: #70574e;
    color: #f5b3b2;
    border-radius: 50%;
    width: 28px; /* Maior */
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem; /* Fonte maior */
    font-weight: 700; /* Mais negrito */
    margin-left: 0.8rem; /* Ajuste de margem */
    box-shadow: 0 2px 8px #F4A6B7; /* Sombra no contador */
}

.header-cart-count.show {
    display: flex;
}

/* Animações */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-logo {
    0% { box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4); }
    100% { box-shadow: 0 10px 40px rgba(255, 105, 180, 0.6); }
}

/* Responsividade do Header */
@media (max-width: 992px) {
    .header-section {
        padding: 2.5rem 0 1.5rem;
    }
    .restaurant-name {
        font-size: 3.2rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
    .logo-circle {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    .header-cart-button {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        padding: 2rem 0 1rem;
    }
    .restaurant-name {
        font-size: 2.8rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .logo-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .header-cart-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    .header-cart-button i {
        font-size: 1.2rem;
    }
    .header-cart-count {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .header-section {
        padding: 1.5rem 0 0.8rem;
    }
    .restaurant-name {
        font-size: 2.2rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .logo-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .decorative-line {
        width: 80px;
        height: 4px;
        margin-top: 2rem;
    }
    .header-cart-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 2.5rem;
    }
    .header-cart-button i {
        font-size: 1.1rem;
    }
    .header-cart-count {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}


