:root {
    --primary-navy: #0b132b;
    --accent-orange: #d9531e;
    --accent-gold: #c59b27;
    --accent-purple: #d71fa3;
    --accent-red: #a81c1c;
    --bg-light: #f8f6f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--primary-navy);
    color: #ffffff;
}
html {
    scroll-behavior: smooth;
}
/* --- HERO SECTION --- */
.events-hero {
    position: relative;
    background: 
                url('../assets/events-hero.webp') center/cover no-repeat;
    padding: 100px 5% 150px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.events-hero-content {
    max-width: 800px;
}
.hero-content{
    background-color: rgba(0, 0, 0, 0.327);
    padding: 5px;
    border-radius: 10px;
    margin-top: 130px;
    margin-bottom: -80px;
    margin-left: 0px;
}
.hero-content5{
    background-color: rgba(0, 0, 0, 0.327);
    padding: 5px;
    border-radius: 10px;
    margin-top: 130px;
    margin-bottom: -80px;
    padding-left: 10px;
    margin-right: auto;
}
.hero-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #ffffff;
}

.hero-title span {
    color: #e879f9;
}

.hero-subtitle {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-purple-outline {
    border: 1px solid #c084fc;
    color: #fff;
    background: rgba(76, 29, 149, 0.4);
    padding: 10px 22px;
}

.btn-red-filled {
    background-color: var(--accent-red);
    color: #fff;
    padding: 10px 22px;
}

/* --- SIGNATURE EVENTS STRIP BAR --- */
.signature-events-bar {
    background-color: #fdf6ed;
    color: #222;
    padding: 15px 3%;
    border-bottom: 1px solid #e2d9cc;
}

.sig-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.sig-badge {
    border: 1px solid var(--accent-gold);
    color: #854d0e;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.sig-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sig-thumb {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    object-fit: cover;
}

.sig-item h4 {
    font-size: 16px;
    color: #111;
    font-weight: 700;
}

.sig-item p {
    font-size: 13px;
    color: #666;
}

.sig-divider {
    width: 1px;
    height: 30px;
    background-color: #ccc;
}

.coming-soon-tag {
    background-color: #7f1d1d;
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

/* --- FEATURED EVENTS SECTION --- */
.featured-events-wrapper {
    background-color: var(--primary-navy);
    padding: 60px 3%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-featured-card {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Hack The Loom */
.hack-loom-card {
    background: linear-gradient(135deg, #090314, #12092b);
}

.event-graphic-side {
    padding: 25px;
    background: linear-gradient(rgba(0, 0, 0, 0.459), rgba(0, 0, 0, 0.514)),
                url('../assets/events-event-1.webp') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
}

.brand-top img {
    height: 50px;
    width: 50px;
}

.hackathon-title-box {
    margin: 25px 0;
    position: relative;
}

.ai-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.title-main {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.the-text {
    color: #38bdf8;
}

.gradient-loom {
    background: linear-gradient(135deg, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-pill {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin: 8px 0;
}

.tagline {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #aaa;
}

.pillars-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pillar i {
    font-size: 16px;
    color: var(--accent-gold);
}

.pillar span {
    font-size: 9px;
    color: #ccc;
    line-height: 1.2;
}

.event-details-side {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-bullets {
    list-style: none;
    margin-bottom: 25px;
}

.event-bullets li {
    font-size: 12px;
    color: #d1d5db;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.event-bullets li i {
    color: #bd2580;
    margin-top: 2px;
}

.event-info-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 12px;
    color: #ddd;
    margin-bottom: 20px;
}

.event-info-box p {
    margin-bottom: 4px;
}

.event-info-box p:last-child {
    margin-bottom: 0;
}

.event-action-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.purple-gradient-btn {
    background: linear-gradient(135deg, #bd2580, #f6536b);
}

/* GPA Convention */
.convention-card {
    background: linear-gradient(135deg, #0a1128, #180d28);
    grid-template-columns: 1fr 1.2fr;
}

.event-details-left {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.convention-title-box h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
}

.convention-subhead {
    font-size: 11px;
    font-weight: 700;
    color: #f43f5e;
    letter-spacing: 1px;
    margin: 8px 0;
}

.convention-desc {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 20px;
}

.light-pillars .pillar span {
    font-size: 10px;
}

.red-gradient-btn {
    background: linear-gradient(135deg, #b91c1c, #f43f5e);
}

.event-graphic-right {
    padding: 35px;
    background: linear-gradient(rgba(10, 15, 30, 0.751), rgba(10, 15, 30, 0.495)),
                url('../assets/events-convention.webP') center/cover;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coming-soon-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-red);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.graphic-center-badge {
    text-align: center;
    margin-bottom: 20px;
}

.graphic-center-badge img {
    height: 45px;
    width: 45px;
    margin-bottom: 8px;
}

.graphic-center-badge h4 {
    font-size: 12px;
    color: var(--accent-gold);
    line-height: 1.3;
}

/* --- GLOBAL IMPACT METRICS --- */
.global-impact-bar {
    background-color: #fdf6ed;
    color: #111;
    padding: 40px 3%;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.impact-title-badge {
    display: inline-block;
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 30px;
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.impact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-box i {
    font-size: 24px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.metric-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
}

.impact-box p {
    font-size: 11px;
    color: #555;
    line-height: 1.2;
}

/* --- BANNER CTA --- */
.events-cta-banner {
    background: linear-gradient(rgba(44, 15, 15, 0.384), rgba(42, 12, 12, 0.553)),
                url('../assets/services-Join\ the\ movement.webp') center/cover;
    padding: 40px 5%;
}

.cta-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h2 {
    font-size: 22px;
    color: var(--accent-gold);
}

.cta-text p {
    font-size: 12px;
    color: #ddd;
}

.btn-dark-purple {
    background-color: #31104e;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .event-featured-card, .convention-card {
        grid-template-columns: 1fr;
    }

    .pillars-4-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .impact-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .sig-container {
        justify-content: center;
    }

    .sig-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .impact-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .event-action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .impact-metrics-grid {
        grid-template-columns: 1fr;
    }

    .pillars-4-grid {
        grid-template-columns: 1fr;
    }
}