* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #0b2545;
    --secondary: rgb(237, 245, 251);
    --accent-orange: #f26522;
    --text-dark: #1d2939;
    --text-subtle: #475467;
    --badge-bg: #f2f4f7;
    --muted-foreground: #88a2b9;
    --font-family: 'Inter', sans-serif;
    --border-mute: rgba(110, 110, 110, 0.737);
}

body {
    font-family: var(--font-family);
}

/* HERO SECTION */
.event-hero-section {
    padding: 122px 80px;
    background: var(--secondary);
}

.hero-event-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* CARDS SECTION */
.events-card-section {
    background: #fff;
    padding: 122px 80px;
}

/* FEATURED CARD */
.featured-event-card {
    padding: 30px;
    background: var(--primary-navy);
    border-radius: 20px;
    margin-bottom: 80px;
}

.featured-date {
    color: var(--accent-orange);
    font-weight: 700;
}

.featured-event-card h3 {
    color: white;
    font-weight: 800;
}

.trade-type {
    color: white;
    margin: 0;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.event-meta {
    color: var(--muted-foreground);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.event-btn {
    display: flex;
    justify-content: end;
}

.event-btn a {
    cursor: pointer;
    padding: 12px 25px;
    text-decoration: none;
    color: white;
    background-color: var(--accent-orange);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-btn a:hover {
    transform: translateY(-5px);
    background: #d95518;
}

/* NORMAL EVENT CARD */
.event-card {
    padding: 34px 40px;
    border: 1px solid rgba(0, 0, 0, 0.17);
    background: white;
    border-radius: 20px;
    cursor: pointer;
    height: 100%;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.event-date {
    color: var(--accent-orange);
    font-weight: 700;
}

.event-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.event-content h3 {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 12px;
}

.event-card .event-meta {
    color: #03264c;
}

.event-button {
    display: flex;
    justify-content: flex-end;
}

.event-button a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background: var(--primary-navy);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-button a:hover {
    background: #123a66;
    color: white;
    transform: translateY(-4px);
}

/* CTA SECTION */
.buyer-delegation-cta {
    background: var(--secondary);
    padding: 45px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    text-align: center;
}

.buyer-delegation-cta a {
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 25px;
    background: var(--primary-navy);
    transition: all 0.3s ease;
}

.buyer-delegation-cta a:hover {
    transform: translateY(-5px);
    background: #0b2545b3;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .event-hero-section,
    .events-card-section {
        padding: 90px 40px;
    }

    .event-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .event-hero-section,
    .events-card-section {
        padding: 70px 20px;
    }

    .hero-event-img img {
        height: 380px;
        margin-top: 30px;
    }

    .featured-event-card {
        margin-bottom: 50px;
    }

    .event-btn {
        justify-content: flex-start;
    }

    .event-card {
        padding: 28px;
    }

    .event-button {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .event-hero-section,
    .events-card-section {
        padding: 55px 15px;
    }

    .hero-event-img img {
        height: 280px;
    }

    .featured-event-card {
        padding: 28px 22px;
        margin-bottom: 35px;
    }

    .featured-event-card h3 {
        font-size: 26px;
    }

    .event-card {
        padding: 26px 22px;
        text-align: left;
    }

    .event-date,
    .featured-date {
        margin-bottom: 10px;
    }

    .event-meta {
        flex-direction: column;
        gap: 6px;
    }

    .event-button,
    .event-btn {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .event-button a,
    .event-btn a,
    .buyer-delegation-cta a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .buyer-delegation-cta {
        padding: 35px 20px;
    }

    .buyer-delegation-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .event-hero-section,
    .events-card-section {
        padding: 45px 12px;
    }

    .hero-event-img img {
        height: 230px;
        border-radius: 14px;
    }

    .featured-event-card,
    .event-card {
        border-radius: 16px;
    }

    .featured-event-card h3,
    .event-content h3 {
        font-size: 22px;
    }

    .event-meta span {
        display: block;
        margin-bottom: 6px;
    }
}

/* PAGE LOAD + SCROLL ANIMATIONS */
html {
    scroll-behavior: smooth;
}

.animate-load,
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.fade-up {
    transform: translateY(35px);
}

.fade-down {
    transform: translateY(-25px);
}

.fade-left {
    transform: translateX(45px);
}

.zoom-in {
    transform: scale(0.94);
}

.animate-load {
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.animate-load.fade-up {
    animation-name: loadFadeUp;
}

.animate-load.fade-down {
    animation-name: loadFadeDown;
}

.animate-load.fade-left {
    animation-name: loadFadeLeft;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

.reveal {
    transform: translateY(45px);
}

.reveal.zoom-in {
    transform: translateY(35px) scale(0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes loadFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadFadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadFadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .animate-load,
    .reveal {
        opacity: 1;
        transform: none !important;
    }
}
/* EXTRA ANIMATIONS ONLY - existing CSS/content unchanged */
@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
}

@keyframes buttonArrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(6px);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(242, 101, 34, 0);
    }
    50% {
        box-shadow: 0 14px 35px rgba(242, 101, 34, 0.18);
    }
}

@keyframes imageZoomFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.03) translateY(-8px);
    }
}

@keyframes tagShine {
    0% {
        background-position: -120% 0;
    }
    100% {
        background-position: 120% 0;
    }
}

@keyframes logoTinyBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.navbar-brand {
    animation: logoTinyBounce 3s ease-in-out infinite;
}

.hero-event-img img {
    animation: imageZoomFloat 5s ease-in-out infinite;
}

.featured-event-card.active,
.event-card.active,
.footer-section.active,
.buyer-delegation-cta.active {
    animation: cardGlow 3s ease-in-out infinite;
}


.event-btn a i,
.event-button a i,
.buyer-delegation-cta a::after {
    animation: buttonArrowMove 1.3s ease-in-out infinite;
}

.event-btn a,
.event-button a,
.buyer-delegation-cta a {
    position: relative;
    overflow: hidden;
}

.event-btn a::before,
.event-button a::before,
.buyer-delegation-cta a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    animation: tagShine 2.6s ease-in-out infinite;
}



.featured-event-card,
.event-card,
.buyer-delegation-cta {
    animation-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
    .navbar-brand,
    .hero-event-img img,
    .featured-event-card.active,
    .event-card.active,
    .footer-section.active,
    .buyer-delegation-cta.active,
    .event-icon,
    .event-btn a i,
    .event-button a i,
    .buyer-delegation-cta a::after,
    .event-btn a::before,
    .event-button a::before,
    .buyer-delegation-cta a::before,
    .event-content .tag,
    .trade-type,
    .event-hero-section .tag {
        animation: none !important;
    }
}
