/* Shared header + logo styles */
/* .header sits OUTSIDE .container so logo position is independent of page content width */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 760px;
    margin: 0 auto 24px;
    padding: 30px 16px 10px;
}

.header .logo-link {
    flex: 1;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.header .site-logo {
    height: 48px;
    width: auto;
    display: block;
}

.header .header-spacer {
    width: 44px;
    flex-shrink: 0;
}

.header .tagline {
    width: 100%;
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: #b89a7f;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 10px 0 0;
    white-space: nowrap;
    text-align: center;
}

/* Desktop store icons — stacked to right of logo */
.header-store-icons {
    width: 44px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.header-store-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(38, 21, 59, 0.08);
    color: #26153b;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.header-store-icons a:hover {
    background: #26153b;
    color: white;
}

/* Mobile app download bar */
.mobile-app-bar {
    display: none;
    text-align: center;
    background: #26153b;
    color: rgba(255,255,255,0.85);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 12px;
    letter-spacing: 0.2px;
}

.mobile-app-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.mobile-app-bar a:hover {
    text-decoration: underline;
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .header .site-logo { height: 40px; }
    .mobile-app-bar { display: block; }
    .header-store-icons { display: none; }
}

@media (max-width: 480px) {
    .header { padding: 30px 10px 10px; }
    .header .site-logo { height: 34px; }
    .hamburger-btn { width: 38px; height: 38px; }
}
