/* ── THEME VARIABLES ── */

[data-theme="dark"] {
    --bg-deep: #020617;
    --bg-surface: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.7);
    --bg-card-solid: #0f172a;
    --glass: rgba(15, 23, 42, 0.55);
    --glass-border: rgba(148, 163, 184, 0.12);
    --accent: #38bdf8;
    --accent2: #818cf8;
    --accent-glow: rgba(56, 189, 248, 0.25);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --shadow: rgba(0,0,0,0.4);
    --header-bg: rgba(2, 6, 23, 0.8);
    --orb-opacity: 0.3;
    --logo-filter: none;
    --invert: 0;
}

[data-theme="light"] {
    --bg-deep: #f1f5f9;
    --bg-surface: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-solid: #ffffff;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(100, 116, 139, 0.2);
    --accent: #0369a1;
    --accent2: #4f46e5;
    --accent-glow: rgba(3, 105, 161, 0.15);
    --text: #0f172a;
    --text-muted: #334155;
    --text-dim: #64748b;
    --shadow: rgba(0,0,0,0.1);
    --header-bg: rgba(255, 255, 255, 0.9);
    --orb-opacity: 0.08;
    --logo-filter: none;
    --invert: 1;
}

[data-theme="light"] .company-card,
[data-theme="light"] .event-card,
[data-theme="light"] .cat-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    border-color: rgba(100, 116, 139, 0.15);
}

[data-theme="light"] .company-card:hover,
[data-theme="light"] .event-card:hover,
[data-theme="light"] .cat-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

[data-theme="light"] .hero-search input {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(100, 116, 139, 0.25);
}

[data-theme="light"] .site-header {
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

[data-theme="light"] .bottom-nav {
    box-shadow: 0 -1px 3px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background 0.4s ease, color 0.3s ease;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── AMBIENT BACKGROUND ── */

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: var(--orb-opacity);
    transition: opacity 0.5s;
}

.ambient-orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(56,189,248,0.35), transparent 70%);
    top: -150px; left: -100px;
}

.ambient-orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(129,140,248,0.3), transparent 70%);
    top: 300px; right: -150px;
}

.ambient-orb--3 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 70%);
    bottom: -200px; left: 30%;
}

/* ── SITE HEADER ── */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-link { display: flex; align-items: center; }

.header-logo {
    height: 32px;
    width: auto;
    transition: filter 0.3s;
}

[data-theme="light"] .header-logo {
    filter: none;
}

.header-actions { display: flex; align-items: center; gap: 8px; }

/* Theme Toggle */
.theme-toggle {
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* Hamburger */
.hamburger {
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    transition: border-color 0.2s;
}

.hamburger:hover { border-color: var(--accent); }

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-nav {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-link {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 20px;
    border-radius: 12px;
    transition: color 0.2s, background 0.2s;
    opacity: 0;
    transform: translateY(20px);
}

.menu-link:hover {
    color: var(--accent);
    background: var(--glass);
    text-decoration: none;
}

.menu-divider {
    width: 60px;
    height: 2px;
    background: var(--glass-border);
    margin: 12px auto;
    opacity: 0;
}

.menu-cat-link {
    font-size: 16px;
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 999px;
    display: inline-block;
    margin: 3px;
    transition: color 0.2s, background 0.2s;
    opacity: 0;
    transform: translateY(10px);
}

.menu-cat-link:hover {
    color: var(--accent);
    background: var(--glass);
    text-decoration: none;
}

/* ── LAYOUT ── */

.page-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 80px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HERO ── */

.hero {
    text-align: center;
    padding: 50px 20px 36px;
    position: relative;
}

.hero-logo {
    max-width: 360px;
    width: 75%;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 40px rgba(56,189,248,0.15));
}

[data-theme="light"] .hero-logo { display: none; }
[data-theme="light"] .hero-title { display: block; }
[data-theme="dark"] .hero-title { display: none; }

.hero-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.hero-tagline {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.hero-search input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.hero-search input::placeholder { color: var(--text-dim); }

.hero-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.hero-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 18px;
    pointer-events: none;
}

/* ── SECTION ── */

.section { padding: 16px 0 32px; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    cursor: pointer;
}

/* ── CATEGORY SCROLL ── */

.cat-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 4px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
}

.cat-scroll::-webkit-scrollbar { display: none; }

@media (min-width: 900px) {
    .cat-scroll {
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.cat-card {
    flex: 0 0 auto;
    width: 140px;
    scroll-snap-align: start;
    padding: 22px 16px 18px;
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(129,140,248,0.06));
    opacity: 0;
    transition: opacity 0.3s;
}

.cat-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(56,189,248,0.4);
    box-shadow: 0 20px 40px var(--shadow), 0 0 30px var(--accent-glow);
}

.cat-card:hover::before { opacity: 1; }

.cat-icon { font-size: 28px; margin-bottom: 8px; display: block; position: relative; z-index: 1; }
.cat-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; position: relative; z-index: 1; }
.cat-count { font-size: 11px; color: var(--text-dim); position: relative; z-index: 1; }

/* ── COMPANY CARDS ── */

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.company-card {
    border-radius: 20px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s, border-color 0.3s, background 0.3s;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.company-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56,189,248,0.3);
    box-shadow: 0 30px 60px var(--shadow), 0 0 40px rgba(56,189,248,0.08);
}

.company-cover {
    height: 160px;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.company-cover-img { width: 100%; height: 100%; object-fit: cover; }

.company-cover-placeholder {
    font-size: 56px;
    opacity: 0.08;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
}

.company-logo-wrap {
    position: relative;
    margin-top: -26px;
    margin-left: 20px;
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--bg-card-solid);
    border: 3px solid var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    flex-shrink: 0;
}

.company-logo-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: 11px; }
.company-logo-letter { font-size: 20px; font-weight: 700; color: var(--accent); }

.company-body { padding: 10px 20px 18px; }

.company-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }

.company-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }

.company-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(56,189,248,0.1);
    color: var(--accent);
    font-weight: 500;
}

[data-theme="light"] .company-tag { background: rgba(2,132,199,0.08); }

.company-location { font-size: 11px; color: var(--text-dim); margin-left: auto; }

.company-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}

.company-card:hover .company-cta { gap: 8px; }

.company-contact { display: flex; gap: 10px; }
.company-contact a { font-size: 14px; color: var(--text-dim); transition: color 0.2s; text-decoration: none; }
.company-contact a:hover { color: var(--text); }

/* ── EVENT CARDS ── */

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.event-card {
    border-radius: 20px;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s, border-color 0.3s, background 0.3s;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(129,140,248,0.4);
    box-shadow: 0 20px 40px var(--shadow);
}

.event-date-badge {
    flex: 0 0 auto;
    width: 56px;
    text-align: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(129,140,248,0.15), rgba(56,189,248,0.1));
    border: 1px solid rgba(129,140,248,0.2);
    padding: 10px 6px;
}

[data-theme="light"] .event-date-badge {
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(2,132,199,0.06));
    border-color: rgba(99,102,241,0.15);
}

.event-date-day { font-size: 24px; font-weight: 800; color: var(--text); line-height: 1; }
.event-date-month { font-size: 11px; color: var(--accent2); text-transform: uppercase; font-weight: 600; }
.event-info { flex: 1; min-width: 0; }
.event-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.event-venue { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.event-time { font-size: 11px; color: var(--text-dim); }
.event-source { font-size: 10px; color: var(--text-dim); opacity: .7; margin-top: 2px; font-style: italic; }

.event-card--has-img { flex-direction: column; }
.event-card--has-img .event-date-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.event-card--has-img .event-info { padding: 12px 16px; }
.event-img { width: 100%; height: 140px; overflow: hidden; border-radius: 14px 14px 0 0; position: relative; }
.event-img img { width: 100%; height: 100%; object-fit: cover; }

.detail-source {
    margin-top: 24px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--text-dim);
}
.detail-source a { color: var(--accent); text-decoration: underline; }

/* ── DETAIL PAGES ── */

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.detail-back:hover { color: var(--accent); text-decoration: none; }

.detail-hero {
    width: 100%;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-deep));
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-hero img { width: 100%; height: 100%; object-fit: cover; }

.detail-hero-placeholder {
    font-size: 80px;
    font-weight: 800;
    opacity: 0.06;
    color: var(--text);
}

.detail-header { margin-bottom: 24px; }

.detail-logo {
    width: 72px; height: 72px;
    border-radius: 18px;
    background: var(--bg-card-solid);
    border: 3px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.detail-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; }
.detail-logo-letter { font-size: 28px; font-weight: 700; color: var(--accent); }

.detail-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }

.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.detail-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 28px;
    white-space: pre-line;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.detail-info-item {
    padding: 16px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.detail-info-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.detail-info-value { font-size: 14px; color: var(--text); font-weight: 500; }
.detail-info-value a { color: var(--accent); }

/* CTA Page */
.cta-page { text-align: center; padding: 60px 20px; }
.cta-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.cta-page p { font-size: 16px; color: var(--text-muted); max-width: 550px; margin: 0 auto 28px; line-height: 1.7; }

.cta-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-align: left;
}

.cta-card h3 { font-size: 18px; margin-bottom: 16px; }

.cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.cta-card li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid var(--glass-border);
}

.cta-card li:last-child { border-bottom: none; }

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-cta:hover { opacity: 0.9; transform: translateY(-2px); text-decoration: none; color: #fff; }

/* ── BOTTOM NAV ── */

.bottom-nav {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    padding: 6px 16px 10px;
    background: var(--header-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--glass-border);
    transition: background 0.3s;
}

.bottom-nav-inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-dim);
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    border-radius: 12px;
    text-decoration: none !important;
}

.bottom-nav-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.bottom-nav-btn--active { color: var(--accent); }
.bottom-nav-btn:hover { color: var(--text); }

/* GSAP animerar in elementen, men allt är synligt utan JS */

/* ── AD BANNER ── */
.ad-banner-wrap {
    max-width: 900px;
    margin: 32px auto;
    padding: 0 20px 90px;
    box-sizing: border-box;
}
.ad-banner-inner {
    background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(99,102,241,.06));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 6px;
}
.ad-banner-link {
    display: block;
    width: 100%;
}
.ad-banner-img {
    width: 100%;
    display: block;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    background: rgba(0,0,0,.08);
}
.ad-banner-html { padding: 20px; }
.ad-banner-badge {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 10px;
    color: var(--text-dim);
    background: rgba(0,0,0,.4);
    padding: 2px 8px;
    border-radius: 999px;
}

/* ── WEATHER WIDGET ── */
.weather-widget-section { padding-top: 0; }
.weather-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.weather-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--shadow);
}
.weather-widget-clock {
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid var(--glass-border);
}
.weather-widget-time {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.weather-widget-date {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 4px;
}
.weather-widget-weather {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.weather-widget-temp {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
}
.weather-widget-desc {
    font-size: 14px;
    color: var(--text-muted);
}
.weather-widget-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
}
@media (max-width: 500px) {
    .weather-widget { flex-direction: column; gap: 16px; }
    .weather-widget-clock { padding-right: 0; padding-bottom: 16px; border-right: none; border-bottom: 1px solid var(--glass-border); }
    .weather-widget-time { font-size: 2rem; }
}

/* ── EMPTY / LOADING ── */
.empty-state { text-align: center; padding: 40px 20px; color: var(--text-dim); font-size: 14px; }

/* ── RESPONSIVE ── */

@media (max-width: 640px) {
    .hero { padding: 36px 16px 24px; }
    .hero-logo { max-width: 260px; }
    .hero-tagline { font-size: 15px; }
    .section-title { font-size: 18px; }
    .company-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .menu-link { font-size: 22px; }
    .detail-title { font-size: 22px; }
    .detail-hero { height: 180px; }
    .cta-page h1 { font-size: 24px; }
}

@media (min-width: 768px) {
    .hero { padding: 60px 24px 40px; }
    .hero-tagline { font-size: 20px; }
    .cat-card { width: 150px; }
}
