﻿
@font-face {
    font-family: 'Astro7';
    src: url('/fonts/astro.7.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VeriqisFont';
    src: url('/fonts/Goca-logotype-beta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    /* Brand Colors */
    --primary: #8B5CF6;
    --secondary: #00FFB2;
    --background: #0B0B0B;
    --surface: #1F2937;
    --border: #2D3748;
    --text-light: #F4F4F6;
    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
}

/* Base */
body {
    background: var(--background);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
}

/* Headings */
h1, .h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    letter-spacing: -1.2px;
    line-height: 1.1;
}

h2, .h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    letter-spacing: -0.8px;
    line-height: 1.15;
}

h3, .h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

h4, .h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: -0.3px;
}

h5, .h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

h6, .h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.2px;
}

/* UI Labels */
.ui-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Muted text inside cards */
.event-card p.text-muted {
    color: rgba(255,255,255,0.75) !important;
}

/* NAVBAR */
.navbar {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
}

/* Logo */
.navbar-brand-OLD {
    font-family: 'Aicon', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--text-light) !important;
}

.navbar-brand-OLD2 {
    font-family: 'UrbanTribe', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-light) !important;
}

.navbar-brand {
    font-family: Astro7, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-light) !important;
}

    .navbar-brand:hover {
        color: var(--secondary) !important;
        text-shadow: 0 0 12px rgba(0,255,178,0.6);
    }

.navbar-brand-footer {
    font-family: Astro7, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text-light) !important;
}

/* Nav links */
.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: rgba(255,255,255,0.75) !important;
    margin-left: 1.25rem;
    letter-spacing: 0.3px;
    transition: color .25s ease;
}

    .nav-link:hover {
        color: var(--secondary) !important;
    }

    /* Active link */
    .nav-link.active {
        color: var(--secondary) !important;
        font-weight: 600;
    }

.nav-link {
    position: relative;
}

    .nav-link.active::after,
    .nav-link:hover::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 2px;
        background: var(--secondary);
        border-radius: 2px;
    }



/* Mobile toggler */
.navbar-toggler {
    border-color: rgba(255,255,255,0.25);
}



.navbar.scrolled {
    background: rgba(0,0,0,0.75);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.navbar-toggler-icon {
    filter: invert(69%) sepia(96%) saturate(747%) hue-rotate(110deg) brightness(105%) contrast(105%);
}

.navbar-toggler {
    border-color: var(--secondary);
}


/* Hero */
.hero {
    background: linear-gradient(135deg, #8B5CF6, #00FFB2, #0B0B0B);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero-gradient {
    background: linear-gradient(135deg, #8B5CF6, #00FFB2, #0B0B0B);
    padding: 120px 0;
    color: white;
}


/* Hero Gradient */
.hero-events {
    background: linear-gradient(135deg, #8B5CF6, #00FFB2, #0B0B0B);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

    /* Dark overlay for text contrast */
    .hero-events::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35); /* adjust between 0.25–0.45 */
        z-index: 1;
    }

    /* Mint glow stays on top of gradient but under text */
    .hero-events::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 120%, rgba(0,255,178,0.25), transparent 70%);
        z-index: 1;
    }

    /* Ensure text sits above overlays */
    .hero-events .container {
        position: relative;
        z-index: 2;
    }

    /* Text color can now safely be white */
    .hero-events h1,
    .hero-events p {
        color: #F4F4F6;
        text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    }




/* Title underline animation */
.hero-title {
    position: relative;
    display: inline-block;
}

.hero-underline {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 60%;
    height: 3px;
    background: #00FFB2;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0,255,178,0.45);
}


@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60%;
        opacity: 1;
    }
}

/* Search bar styling */
.hero-search {
    max-width: 600px;
}

    .hero-search .form-control {
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.25);
        color: #fff;
    }

        .hero-search .form-control::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .hero-search .form-control:focus {
            background: rgba(255,255,255,0.2);
            border-color: #00FFB2;
            box-shadow: 0 0 0 0.25rem rgba(0,255,178,0.25);
        }

.btn-accent {
    background: #00FFB2;
    color: #000;
    border: none;
}

    .btn-accent:hover {
        background: #33FFC4;
        color: #000;
    }



.search-box {
    max-width: 600px;
    margin: 30px auto 0;
}

/* Category Cards */
.category-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 20px rgba(0, 255, 178, 0.25);
    }

.category-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Event Cards */
.event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
}

    .event-card .p-3 {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .event-card .event-title {
        min-height: 48px; /* optional: stabilises title height */
    }

    .event-card p.text-muted {
        flex-grow: 1; /* description fills remaining space */
    }

    .event-card p.text-muted {
        color: rgba(255, 255, 255, 0.65) !important;
    }


    .event-card a.btn {
        margin-top: auto; /* pins button to bottom */
    }


    .event-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 20px rgba(0, 255, 178, 0.25);
    }

    .event-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .event-card p.text-muted {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


.event-venue {
    color: rgba(0,255,178,0.85);
}


.empty-state {
    opacity: 0;
    animation: fadeIn .4s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.sticky-search-bar {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(6px);
    padding: 10px 0;
    z-index: 999;
    transition: top .35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .sticky-search-bar.show {
        top: 0;
    }

    .sticky-search-bar .form-control {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
    }

        .sticky-search-bar .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }


#event-reset-btn {
    border-color: rgba(255,255,255,0.4);
    color: #F4F4F6;
}

    #event-reset-btn:hover {
        background: rgba(255,255,255,0.15);
        color: #fff;
    }


/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

    .btn-primary:hover {
        background: #A78BFA;
        border-color: #A78BFA;
        color: #000;
    }

.btn-accent {
    background: var(--secondary);
    border: none;
    color: #000;
}

    .btn-accent:hover {
        background: #33FFC4;
        color: #000;
    }

/* Promo Banner */
.promo {
    background: linear-gradient(135deg, #8B5CF6, #00FFB2);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

/* Premium Badge */
.badge-premium {
    background: var(--secondary);
    color: #000;
    font-weight: 600;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

/* FORM INPUTS */
.form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-light) !important; /* <-- This ensures white text */
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .25s ease, background .25s ease;
}


    .form-control::placeholder {
        color: rgba(255,255,255,0.45);
    }

    .form-control:focus {
        background: rgba(255,255,255,0.08);
        border-color: var(--secondary);
        outline: none;
        box-shadow: 0 0 0 2px rgba(0,255,178,0.25);
    }

    /* Disabled */
    .form-control:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.form-control {
    caret-color: var(--secondary); /* Neon mint caret = beautiful */
}
    /* Placeholder text */
    .form-control::placeholder {
        color: rgba(255,255,255,0.55);
    }



.btn-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: background .25s ease, transform .15s ease;
}

    .btn-primary:hover {
        background: #7a4ce6;
        transform: translateY(-2px);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.btn-secondary {
    background: var(--secondary);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: background .25s ease, transform .15s ease;
}

    .btn-secondary:hover {
        background: #00e6a0;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--text-light);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    transition: border-color .25s ease, background .25s ease;
}

    .btn-outline:hover {
        border-color: var(--secondary);
        background: rgba(255,255,255,0.05);
    }

.btn-ghost {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    transition: color .25s ease;
}

    .btn-ghost:hover {
        color: var(--secondary);
    }

.btn-danger {
    background: #ff4d4d;
    border: none;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    transition: background .25s ease;
}

    .btn-danger:hover {
        background: #e63d3d;
    }


/* Hero section used by the home page */
.hero-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.hero-card-image {
    height: 420px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75);
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: white;
}

.featured-badge {
    display: inline-block;
    background: var(--secondary);
    color: #000;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-meta {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* value proposition - home page */
.value-prop-section {
    background: #0b0b0b;
    color: white;
}

    .value-prop-section h2 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 2rem;
    }

.value-card {
    background: #111;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.05);
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    }

.value-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.value-card h5 {
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.value-card p {
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.5;
}



/* veriqis trust */
.veriqis-section {
    background: #0b0b0b;
    color: white;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.veriqis-logo {
    height: 60px;
    opacity: 0.9;
}

.veriqis-heading {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.veriqis-text {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1.6rem;
    line-height: 1.6;
}

.veriqis-heading span {
    font-family: 'VeriqisFont';
    letter-spacing: 0.5px;
}

/* promoter CTA section */
.promoter-cta-section {
    background: linear-gradient(135deg, #111, #0b0b0b);
    color: white;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.promoter-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.promoter-text {
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1.15rem;
    line-height: 1.6;
}

.promoter-btn {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
}

.promoter-btn {
    box-shadow: 0 0 20px rgba(0,255,178,0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .promoter-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(0,255,178,0.45);
    }

.promoter-subtext {
    opacity: 0.6;
    font-size: 0.95rem;
}

/* brand home page hero */
.brand-hero {
    background: radial-gradient(circle at center, rgba(0,255,178,0.08), transparent 60%), linear-gradient(135deg, #0b0b0b, #111);
}

.brand-hero-gradient {
    background: linear-gradient( 135deg, #8B5CF6 0%, #00FFB2 40%, #0B0B0B 100% );
    padding: 140px 0 110px;
    color: white;
    position: relative;
    overflow: hidden;
}

    .brand-hero-gradient::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 900px;
        height: 900px;
        background: radial-gradient(circle, rgba(0,255,178,0.12), transparent 70%);
        transform: translate(-50%, -50%);
        z-index: 0;
    }


.brand-hero-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-hero-subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.brand-hero-gradient {
    background-size: 200% 200%;
    animation: heroShift 12s ease infinite;
}

@keyframes heroShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.veriqis-word {
    font-family: 'VeriqisFont';
    letter-spacing: 0.5px;
}

/* veriqis brand block */

.veriqis-brand-block {
    background: #0b0b0b;
    color: white;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.veriqis-logo {
    height: 70px;
    opacity: 0.95;
}

.veriqis-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.veriqis-word {
    font-family: 'VeriqisFont';
    letter-spacing: 0.5px;
}

.veriqis-lead {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.veriqis-feature-card {
    background: #111;
    padding: 1.8rem;
    border-radius: 14px;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .veriqis-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,255,178,0.15);
    }

    .veriqis-feature-card h5 {
        font-family: var(--font-heading);
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }

    .veriqis-feature-card p {
        opacity: 0.85;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* veriqis badge */
.veriqis-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,255,178,0.08);
    border: 1px solid rgba(0,255,178,0.25);
    padding: 6px 12px;
    border-radius: 8px;
}

.veriqis-badge-logo {
    height: 20px;
    opacity: 0.9;
}

.veriqis-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00FFB2;
    letter-spacing: 0.3px;
}

.form-control:disabled {
    background: rgba(255,255,255,0.08); /* subtle frosted layer */
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.65); /* readable but muted */
    cursor: not-allowed;
    opacity: 1; /* <-- IMPORTANT */
}

/* Validation */
/* Error state for form controls */
.form-control.error {
    border-color: #ff4d6d !important;
    background: rgba(255, 77, 109, 0.08) !important;
    box-shadow: 0 0 0 2px rgba(255, 77, 109, 0.25);
    transition: all 0.25s ease;
}

.error-message {
    color: #ff6b81;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

    .error-message.show {
        opacity: 1;
        transform: translateY(0);
    }

.form-control.success {
    border-color: var(--secondary);
    background: rgba(0,255,178,0.08);
    box-shadow: 0 0 0 2px rgba(0,255,178,0.25);
}
