/* =========================================
   NEW HERO & CATEGORY BAR STYLES (User Request)
   ========================================= */

:root {
    --ink: #111111;
    --wrap: 1600px;
}

/* Button Update */
.btnBlack {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btnBlack:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #333;
    color: #fff;
}

.btnBlack.outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #111;
}

.btnBlack.outline:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* Hero Update */
.hero {
    /* Overriding previous .hero settings */
    height: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    /* Was grid */
    padding: 0;
    min-height: auto;
    background: #fff;
    /* Ensure white bg */
}

/* If the user wants specific content on the canvas background */
.heroBg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.heroText {
    position: absolute;
    left: 3%;
    right: auto;
    top: 70%;
    /* Vertically centered */
    bottom: auto;
    transform: translateY(-50%);
    width: min(500px, 90vw);
    text-align: left;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.heroText.reveal {
    opacity: 0;
    transform: translateY(-40%);
    /* Start slightly lower than -50% */
    animation: fadeUp 1s ease forwards 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* Hero Kicker (Awards) - Premium Card Style */
.heroKicker {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    /* Right align cards */
    z-index: 20;
    perspective: 1000px;
}

.kicker-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    width: fit-content;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Staggered Entrance */
.kicker-card:nth-child(1) {
    animation-delay: 0.6s;
}

.kicker-card:nth-child(2) {
    animation-delay: 0.7s;
}

.kicker-card:nth-child(3) {
    animation-delay: 0.8s;
}

/* Hover Effect */
.kicker-card:hover {
    transform: translateX(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Icon Styling */
.icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tier-gold .icon-wrapper {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #fff;
}

.tier-silver .icon-wrapper {
    background: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
    color: #fff;
}

.tier-bronze .icon-wrapper {
    background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%);
    color: #fff;
}

/* Text Styling */
.text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kicker-sub {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.kicker-main {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
}

/* Shine Animation */
.kicker-card .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.kicker-card:hover .shine {
    animation: shine-effect 1s forwards;
}

@keyframes shine-effect {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Floating Animation */
@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.heroKicker .kicker-card {
    animation: fadeInRight 0.8s ease forwards, float-y 4s ease-in-out infinite;
}

/* Individual float delays for organic feel */
.kicker-card:nth-child(1) {
    animation-delay: 0.6s, 0s;
}

.kicker-card:nth-child(2) {
    animation-delay: 0.7s, 1s;
}

.kicker-card:nth-child(3) {
    animation-delay: 0.8s, 2s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.heroTitle {
    margin: 0;
    font-size: 60px;
    /* Reduced from 80px */
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #000;
    text-shadow: none;

}

.hero p.heroSub {
    margin: 0 0 30px;
    font-size: 18px;
    /* Reduced from 24px */
    font-weight: 800;
    color: #000000;
    opacity: 1;
    letter-spacing: -0.01em;
    line-height: 1.5;
    word-break: keep-all;
    max-width: 400px;
    /* Limit width for cleaner look */

    /* Added background for readability */
    background-color: rgba(250, 250, 250, 0.75);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    width: fit-content;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

/* Category Bar */
.catBar {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.catInner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.catTitle {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    white-space: nowrap;
    color: #111;
}

.catIcons {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.catIcon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #ccc;
    /* Default inactive color */
    transition: transform 0.2s, color 0.2s;
    flex: 1;
    cursor: pointer;
    text-decoration: none;
}

.catIcon i {
    font-size: 40px;
    transition: color 0.2s, transform 0.2s;
    color: inherit;
}

/* Hover State */
.catIcon:hover {
    color: #111;
    /* Active color */
    transform: translateY(-5px);
}

.catIcon div {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    opacity: 0.6;
    transition: opacity 0.2s;
    text-align: center;
    line-height: 1.2;
}

.catIcon:hover div {
    opacity: 1;
}

@media (max-width: 1024px) {
    .catInner {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }

    .catTitle {
        text-align: center;
    }

    .heroText {
        right: 5%;
        width: 90%;
        text-align: center;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-btns {
        justify-content: center;
    }

    .heroKicker {
        position: absolute;
        width: 100%;
        left: 0;
        top: 10%;
        /* Adjusted for spacing */
        right: auto;
        transform: none;
        align-items: center;
        gap: 10px;
    }

    .kicker-card {
        min-width: auto;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .kicker-sub {
        font-size: 9px;
    }

    .kicker-main {
        font-size: 13px;
    }

    .heroTitle {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .catIcons {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .catIcon {
        flex-basis: 40%;
    }
}