 :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #8b5cf6;
            --accent: #f59e0b;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --card-shadow: 0 10px 25px rgba(99, 102, 241, 0.08);
            --transition: all 0.3s ease;
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
        }
        
        a{
            text-decoration: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .main-header {
            background-color: var(--bg-white);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 18px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            color: var(--primary);
            font-size: 28px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }


        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Hero/Hot Event Section */
        .hero-section {
            padding: 60px 0 80px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-text p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 30px;
        }
.hero-stats {
    display: flex;
    flex-direction: row;        /* Always side-by-side */
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.stat-item {
    flex: 1;                    /* Equal width */
    min-width: 0;               /* Prevent overflow */
}

.stat-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.75rem;
    opacity: 0.8;
}


        .hot-event-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            height: 400px;
        }

        .hot-event-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hot-event-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 30px;
            color: white;
        }

        .hot-event-tag {
            background-color: var(--accent);
            color: white;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .hot-event-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .hot-event-details {
            display: flex;
            align-items: center;
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .hot-event-details i {
            margin-right: 8px;
        }

        /* Categories Section */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .see-all {
            font-size: 16px;
            color: var(--primary);
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 25px;
            margin-bottom: 80px;
        }

        .category-card {
            background-color: var(--bg-white);
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
        }

        .category-icon {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--primary);
            font-size: 28px;
        }

        .category-icon svg {
            width: 26px;
            height: 26px;
            stroke: #4a57e2;
        }

        .category-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .category-count {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Events Section */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
            margin-bottom: 80px;
        }

        .event-card {
            background-color: var(--bg-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .event-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .event-info {
            padding: 20px;
        }

        .event-date {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .event-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .event-location {
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Location Discovery Section */
        .location-section {
            margin-bottom: 80px;
        }

        .discovery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .location-card {
            background-color: var(--bg-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .location-card:hover {
            transform: translateY(-8px);
        }

        .location-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .location-content {
            padding: 25px;
        }

        .location-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .location-type {
            display: inline-block;
            background-color: #e0e7ff;
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .location-details {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .location-features {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: var(--text-light);
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            color: white;
            margin-bottom: 80px;
        }

        .newsletter-title {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .newsletter-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
        }

        .newsletter-form input:focus {
            outline: none;
        }

        /* Footer */
        .main-footer {
            background-color: var(--text-dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text h1 {
                font-size: 40px;
            }
            
            .categories-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .newsletter-section {
                padding: 40px 30px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-actions .btn-primary {
                display: none;
            }
            
            .search-box input {
                width: 150px;
            }
            
            .hero-text h1 {
                font-size: 34px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 40px 0 60px;
            }
            
            .hot-event-card {
                height: 350px;
            }
            
            .categories-grid, .events-grid, .discovery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* Location popup */
        .loc-popup-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.3);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 60;
            backdrop-filter: blur(6px);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .loc-popup-backdrop.is-visible {
            display: flex;
            opacity: 1;
        }

        .loc-popup {
            width: 100%;
            max-width: 420px;
            background: #0f172a;
            color: #e5e7eb;
            border-radius: 18px;
            padding: 24px 22px 20px;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
            position: relative;
            transform-origin: center;
        }

        .loc-popup h2 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .loc-popup-sub {
            font-size: 12px;
            color: #9ca3af;
            margin-bottom: 16px;
        }

        .loc-popup-form label {
            display: block;
            margin-bottom: 12px;
            font-size: 12px;
        }

        .loc-popup-form label span {
            display: block;
            margin-bottom: 4px;
            color: #cbd5f5;
        }

        .loc-popup-form select {
            width: 100%;
            border-radius: 10px;
            border: 1px solid rgba(148, 163, 184, 0.5);
            padding: 8px 10px;
            background: #020617;
            color: #e5e7eb;
            font-size: 12px;
        }

        .loc-popup-save {
            width: 100%;
            margin-top: 8px;
        }

        .loc-popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            border: none;
            background: transparent;
            color: #9ca3af;
            cursor: pointer;
            font-size: 13px;
        }

        /* Popup animations */
        @keyframes popupEnter {
            from {
                transform: scale(0.85) translateY(16px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        @keyframes popupExit {
            from {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
            to {
                transform: scale(0.8) translate(120px, 160px);
                opacity: 0;
            }
        }

        .loc-popup.popup-enter {
            animation: popupEnter 0.25s ease-out forwards;
        }

        .loc-popup.popup-exit {
            animation: popupExit 0.3s ease-in forwards;
        }

        /* Sticky pill */
        .loc-sticky {
            position: fixed;
            right: 18px;
            bottom: 18px;
            z-index: 50;
        }

        .loc-sticky.hidden {
            display: none;
        }

        .loc-sticky-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            border: none;
            padding: 8px 12px;
            background: #020617;
            color: #e5e7eb;
            font-size: 12px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
        }

        .loc-sticky-btn i {
            color: #f97316;
        }


        /* Horizontal scroll for categories */
        .categories-scroller {
            display: block;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            padding-bottom: 8px;
            margin: 0 -8px; /* small negative margin so cards touch the edges nicely on mobile */
        }

        .categories-scroller::-webkit-scrollbar {
            height: 6px;
        }

        .categories-scroller::-webkit-scrollbar-thumb {
            background: rgba(148, 163, 184, 0.7);
            border-radius: 999px;
        }

        /* Make category cards behave like "pills" in a row */
        .categories-scroller .category-card {
            display: inline-block;
            vertical-align: top;
            min-width: 150px;
            max-width: 200px;
            margin: 0 8px;
        }


        
        /* ================================
   NAVBAR / HEADER (header2.php)
   ================================ */

        .main-header.event-header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        }

        .event-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 10px 0;
        }

        /* -------- Logo -------- */

        .logo {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        }

        .logo-icon {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #eef2ff;
        color: #4f46e5;
        font-size: 14px;
        }

        .logo-text {
        font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
            sans-serif;
        font-weight: 700;
        font-size: 20px;
        color: #4f46e5;
        }

        /* -------- Layout sections -------- */

        .event-header-left {
        flex: 0 0 auto;
        }

        .event-header-middle {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: 12px;
        }

        .event-header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
        }

        /* -------- Search in middle -------- */

        .search-box.event-search-bar {
        position: relative;
        flex: 1 1 auto;
        max-width: 420px;
        display: flex;
        align-items: center;
        background: #f8fafc;
        border-radius: 999px;
        padding: 6px 12px;
        border: 1px solid #e5e7eb;
        }

        .search-box.event-search-bar .search-icon {
        font-size: 13px;
        color: #94a3b8;
        margin-right: 6px;
        }

        .search-box.event-search-bar input {
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        width: 100%;
        color: #0f172a;
        }

        /* -------- Location chip in middle -------- */

        .header-location-chip {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-radius: 999px;
        border: 1px solid #e5e7eb;
        padding: 6px 12px;
        background: #ffffff;
        font-size: 13px;
        color: #0f172a;
        cursor: pointer;
        }

        .header-location-chip i {
        font-size: 13px;
        }

        .header-location-chip .chevron {
        color: #94a3b8;
        }

        /* -------- Top actions (Create / Likes / Tickets) -------- */

        .top-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-right: 8px;
        }

        .top-action-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: #0f172a;
        text-decoration: none;
        padding: 6px 10px;
        border-radius: 999px;
        transition: background 0.15s ease, color 0.15s ease;
        }

        .top-action-link:hover {
        background: #f3f4ff;
        color: #4f46e5;
        }

        .top-action-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        }

        .top-action-label {
        white-space: nowrap;
        }

        /* Hide on small screens where needed */
        .hide-sm {
        display: inline-flex;
        }

        /* -------- Auth / Profile (desktop) -------- */

        .header-profile {
        position: relative;
        }

        .profile-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        border: 1px solid #e5e7eb;
        background: #f8fafc;
        padding: 4px 10px 4px 4px;
        cursor: pointer;
        font-size: 13px;
        color: #0f172a;
        }

        .profile-btn img {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        object-fit: cover;
        }

        .profile-initials {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        background: #e5e7eb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 600;
        color: #0f172a;
        }

        .profile-email {
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        }

        .profile-chevron {
        font-size: 11px;
        color: #94a3b8;
        }

        /* Profile dropdown: directly under email/avatar */

        .profile-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 220px;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
        border: 1px solid #e5e7eb;
        padding: 8px 0;
        display: none;
        }

        .profile-menu.is-open {
        display: block;
        }

        .profile-menu a {
        display: block;
        padding: 8px 14px;
        font-size: 13px;
        color: #0f172a;
        text-decoration: none;
        }

        .profile-menu a:hover {
        background: #f8fafc;
        color: #4f46e5;
        }

        .profile-menu hr {
        border: none;
        border-top: 1px solid #e5e7eb;
        margin: 6px 0;
        }

        /* Logged out state on desktop */

        .header-auth {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        }

        .header-auth-link {
        text-decoration: none;
        color: #0f172a;
        }

        .header-auth-link:hover {
        color: #4f46e5;
        }

        .header-auth-link.strong {
        font-weight: 600;
        }

        /* -------- Mobile menu toggle icon -------- */

        .mobile-menu-btn {
        display: none; /* shown only on small screens */
        border: none;
        background: transparent;
        padding: 4px;
        font-size: 18px;
        color: #0f172a;
        cursor: pointer;
        }

        /* ================================
        MOBILE NAV
        ================================ */

        .mobile-menu {
        display: none;
        background: #f8fafc;
        border-top: 1px solid #e5e7eb;
        padding: 14px 16px 20px;
        }

        .mobile-menu.open {
        display: block;
        }

        /* Mobile search */

        .mobile-search {
        position: relative;
        display: flex;
        align-items: center;
        background: #ffffff;
        border-radius: 999px;
        padding: 6px 12px;
        border: 1px solid #e5e7eb;
        margin-bottom: 12px;
        }

        .mobile-search .search-icon {
        font-size: 13px;
        color: #94a3b8;
        margin-right: 6px;
        }

        .mobile-search input {
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        width: 100%;
        }

        /* Mobile location button */

        .mobile-location-btn {
        width: 100%;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border-radius: 999px;
        border: 1px solid #e5e7eb;
        background: #ffffff;
        padding: 8px 12px;
        font-size: 13px;
        color: #0f172a;
        margin-bottom: 16px;
        }

        /* Mobile user block */

        .mobile-auth {
        border-radius: 16px;
        background: #ffffff;
        padding: 12px 12px 14px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
        }

        .mobile-user-block {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 8px;
        }

        .mobile-user-avatar {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        background: #e5e7eb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: #0f172a;
        overflow: hidden;
        }

        .mobile-user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: inherit;
        }

        .mobile-user-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        }

        .mobile-user-name {
        font-size: 14px;
        font-weight: 600;
        color: #0f172a;
        }

        .mobile-user-info a {
        font-size: 12px;
        color: #4f46e5;
        text-decoration: none;
        }

        /* Mobile menu links – centred with bottom borders */

        .mobile-auth-link {
        display: block;
        padding: 10px 0;
        text-align: center;
        font-size: 13px;
        color: #0f172a;
        text-decoration: none;
        border-bottom: 1px solid #e5e7eb;
        }

        .mobile-auth-link:last-of-type {
        border-bottom: none;
        }

        .mobile-auth-link:hover {
        background: #f8fafc;
        color: #4f46e5;
        }

        /* Mobile buttons (login / signup / create) */

        .mobile-auth-btn {
        display: block;
        width: 100%;
        margin-top: 10px;
        padding: 9px 0;
        border-radius: 999px;
        font-size: 13px;
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        }

        .mobile-auth-btn.outline {
        border-color: #4f46e5;
        color: #4f46e5;
        background: #ffffff;
        }

        .mobile-auth-btn.primary {
        background: #4f46e5;
        color: #ffffff;
        }

        .mobile-auth-btn.create {
        margin-top: 14px;
        background: #020617;
        color: #ffffff;
        }

        .mobile-auth-btn.add {
        margin-top: 14px;
        background: #4f46e5;
        color: #ffffff;
        }

        /* ================================
        RESPONSIVE BREAKPOINTS
        ================================ */

        @media (max-width: 960px) {
        .event-header-middle, .hide-text {
            display: none; /* search & location move into mobile drawer */
        }

        .top-actions .hide-sm {
            display: none;
        }

        .profile-email,
        .profile-chevron {
            display: none;
        }

        .mobile-menu-btn {
            display: inline-flex;
        }
        }

        @media (max-width: 640px) {
        .event-header-inner {
            padding: 8px 0;
        }

        .logo-text {
            font-size: 18px;
        }
        }

        /* Helper to hide on medium screens if you use .hide-md in markup */
        @media (max-width: 768px) {
        .hide-md {
            display: none !important;
        }
        }
