:root {
    --vt-blue: #000000;
    --vt-blue-dark: #2b0fd1;
    --vt-text: #0e0e12;
    --vt-muted: #6b7280;
    --vt-line: #e9ebf0;
    --vt-bg: #f7f8fc;
    --vt-white: #ffffff;
    --vt-footer: #09090f;
    --vt-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
    --vt-shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.06);
    --vt-radius: 22px;
}

.fa-calendar {
    color: #2b0fd1 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--vt-text);
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.vt-navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-v {
    color: var(--vt-blue);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.brand-text {
    color: #0b0b14;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-link {
    color: #4b5563 !important;
    font-weight: 600;
    position: relative;
    transition: all 0.25s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--vt-blue) !important;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.45rem;
        height: 2px;
        border-radius: 999px;
        background: var(--vt-blue);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

.btn-vt-primary {
    background: linear-gradient(135deg, var(--vt-blue) 0%, #6b4eff 100%);
    border: none;
    color: #fff;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(77, 39, 255, 0.18);
    transition: all 0.25s ease;
}

    .btn-vt-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 18px 35px rgba(77, 39, 255, 0.24);
    }

.btn-vt-outline {
    border: 1px solid #d7dbeb;
    color: var(--vt-text);
    background: #fff;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

    .btn-vt-outline:hover {
        border-color: var(--vt-blue);
        color: var(--vt-blue);
        background: #f8f7ff;
    }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 80px;
    background-color: #0e0e12;
    background-image:
        linear-gradient(180deg, rgba(14, 14, 18, 0.62) 0%, rgba(14, 14, 18, 0.85) 100%),
        radial-gradient(circle at 20% 20%, rgba(77, 39, 255, 0.12), transparent 45%),
        url("../img/chill-party.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .hero-section > .container {
        position: relative;
        z-index: 1;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(77, 39, 255, 0.08);
    color: var(--vt-blue);
    border: 1px solid rgba(77, 39, 255, 0.12);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
}

.hero-title {
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.05em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-subtext {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-search-card {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.search-input-wrap {
    position: relative;
    background: #fff;
    border: 1px solid #e7eaf2;
    border-radius: 20px;
    padding: 10px;
    box-shadow: var(--vt-shadow);
}

    .search-input-wrap i {
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        color: #8b93a7;
        font-size: 1rem;
    }

.hero-search-input {
    border: none;
    box-shadow: none !important;
    padding-left: 52px;
    padding-right: 150px;
    min-height: 58px;
    border-radius: 16px;
    font-size: 1rem;
}

.hero-search-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    min-width: 130px;
    border-radius: 14px;
}

.section-kicker {
    display: inline-block;
    color: var(--vt-blue);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-subtitle {
    color: var(--vt-muted);
    font-size: 1rem;
}

.section-link {
    color: var(--vt-text);
    font-weight: 700;
    transition: all 0.25s ease;
}

    .section-link:hover {
        color: var(--vt-blue);
    }

.events-section {
    background: #fff;
}

.event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--vt-shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    color: inherit;
}

    .event-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(17, 24, 39, 0.12);
        border-color: rgba(77, 39, 255, 0.2);
        color: inherit;
    }

.event-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #eef1f7;
}

    .event-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s ease;
    }

.event-card:hover .event-card-image img {
    transform: scale(1.06);
}

.event-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--vt-text);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.event-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: #7a8195;
    font-size: 0.88rem;
    margin-bottom: 12px;
}

    .event-meta i {
        color: var(--vt-blue);
        margin-right: 6px;
    }

.event-card h5 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.event-card p {
    color: var(--vt-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.event-price {
    font-weight: 800;
    color: var(--vt-blue);
    font-size: 1rem;
}

.event-cta {
    font-weight: 700;
    color: var(--vt-text);
    font-size: 0.95rem;
}

.inner-hero {
    padding: 80px 0 50px;
    background: radial-gradient(circle at top right, rgba(77, 39, 255, 0.08), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.inner-hero-image {
    position: relative;
    overflow: hidden;
}

.inner-hero.inner-hero-image {
    background-color: #0e0e12;
    background-image:
        linear-gradient(180deg, rgba(14, 14, 18, 0.62) 0%, rgba(14, 14, 18, 0.85) 100%),
        url("../img/chill-party.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .inner-hero-image > .container {
        position: relative;
        z-index: 1;
    }

    .inner-hero-image .section-kicker {
        color: #c2b7ff;
    }

    .inner-hero-image .inner-title {
        color: #fff;
        text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
    }

    .inner-hero-image .inner-subtitle {
        color: rgba(255, 255, 255, 0.9);
    }

.inner-title {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.inner-subtitle {
    max-width: 700px;
    color: var(--vt-muted);
    line-height: 1.8;
}

.legal-page .legal-body {
    max-width: 720px;
}

.legal-page h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--vt-text);
}

    .legal-page h2:first-of-type {
        margin-top: 0;
    }

.legal-page h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--vt-text);
}

.legal-page p,
.legal-page li {
    color: var(--vt-muted);
    line-height: 1.75;
}

.legal-page .legal-lead {
    color: var(--vt-text);
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.legal-page li + li {
    margin-top: 0.35rem;
}

.legal-page a {
    color: var(--vt-blue);
    font-weight: 600;
}

    .legal-page a:hover {
        color: var(--vt-blue-dark);
    }

.content-card {
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--vt-shadow-soft);
}

.create-event-form-card {
    padding: 16px;
    overflow: hidden;
}

.create-event-form-card iframe {
    width: 100% !important;
    max-width: 100%;
    border: 0;
}

.shadow-soft {
    box-shadow: var(--vt-shadow-soft);
}

.icon-list {
    display: grid;
    gap: 16px;
}

    .icon-list div {
        display: flex;
        align-items: start;
        gap: 12px;
        color: var(--vt-text);
        font-weight: 500;
    }

    .icon-list i,
    .contact-list i {
        color: var(--vt-blue);
        margin-top: 4px;
    }

.faq-shell {
    max-width: 900px;
}

.vt-accordion .accordion-item {
    border: 1px solid #eceff5;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--vt-shadow-soft);
}

.vt-accordion .accordion-button {
    font-weight: 700;
    padding: 22px 24px;
    box-shadow: none !important;
    background: #fff;
}

    .vt-accordion .accordion-button:not(.collapsed) {
        color: var(--vt-blue);
        background: rgba(77, 39, 255, 0.04);
    }

.vt-accordion .accordion-body {
    color: var(--vt-muted);
    line-height: 1.8;
    padding: 0 24px 22px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

    .contact-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--vt-text);
        font-weight: 500;
    }

.vt-input {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #dfe4ee;
    padding: 0.85rem 1rem;
    box-shadow: none !important;
}

textarea.vt-input {
    min-height: unset;
}

.vt-input:focus {
    border-color: rgba(77, 39, 255, 0.45);
}

.vt-footer {
    background: var(--vt-footer);
    color: #d3d8e6;
    padding: 70px 0 24px;
}

.footer-brand .brand-v {
    color: #6f55ff;
}

.footer-brand .brand-text {
    color: #fff;
}

.footer-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-text {
    color: rgba(255, 255, 255, 0.72);
    max-width: 480px;
    line-height: 1.8;
}

.footer-links-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-lg-end;
    gap: 14px 24px;
}

    .footer-links-wrap a {
        color: rgba(255, 255, 255, 0.86);
        font-weight: 500;
        transition: color 0.25s ease;
    }

        .footer-links-wrap a:hover {
            color: #8d79ff;
        }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 28px 0 20px;
}

@media (max-width: 991.98px) {
    .nav-link::after {
        display: none;
    }

    .hero-section {
        padding: 72px 0 64px;
    }

    .hero-title {
        font-size: clamp(2rem, 7.2vw, 3.1rem);
    }
}

.hero-logo {
    height: 52px;
    width: auto;
    margin: 0 auto;
}

.organiser-main {
    background: var(--vt-bg);
}

.returning-organiser-card {
    border-color: rgba(77, 39, 255, 0.12);
}

.success-card {
    padding: 48px 32px;
}

.success-icon {
    font-size: 3.5rem;
    color: #22c55e;
    line-height: 1;
}

.footer-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

    .footer-contact-links a {
        color: rgba(255, 255, 255, 0.86);
        font-weight: 500;
        transition: color 0.25s ease;
    }

        .footer-contact-links a:hover {
            color: #8d79ff;
        }

@media (max-width: 767.98px) {
    .search-input-wrap {
        padding: 8px;
    }

    .hero-search-input {
        padding-right: 18px;
        padding-left: 46px;
    }

    .hero-search-btn {
        position: static;
        width: 100%;
        margin-top: 10px;
        min-height: 48px;
    }

    .event-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-card {
        padding: 24px;
    }

    .vt-footer {
        padding-top: 50px;
    }

    .footer-links-wrap {
        justify-content: flex-start;
    }
}
