header {
    width: 100%;
    margin-bottom: 10px;
}

.logo-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow:
        0 0 3px rgba(255, 255, 255, 0.05),
        inset 0 0 10px rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    overflow: hidden;
}

.logo-block {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    position: relative;
    flex: 1;
}

.logo {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.3),
        0 0 10px rgba(255, 255, 255, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.6);
    color: #f0e68c;
    animation: logo-glow 2s infinite alternate;
    white-space: nowrap;
    margin: 0;
    padding-bottom: 5px;
}

@keyframes logo-glow {
    0% {
        text-shadow: 0 0 5px #fef4c0, 0 0 10px #fef4c0, 2px 2px 4px rgba(0,0,0,0.6);
    }
    100% {
        text-shadow: 0 0 10px #ffe658, 0 0 20px #ffe658, 2px 2px 6px rgba(0,0,0,0.7);
    }
}

.delivery-tagline {
    font-size: 0.9rem;
    color: #ccc;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    margin-top: auto;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: underline;
}
