/* ... (Keep Root and Reset) */
:root {
    --primary-red: #E60000;
    --primary-red-dark: #cc0000;
    --text-white: #FFFFFF;
    --text-black: #000000;
    --text-grey: #a0a0a0;
    --bg-dark: #0a0a0a;
    --bg-light: #f9f9f9;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Globally hide default cursor */
}

@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    cursor: none;
    font-family: 'Inter', sans-serif;
    background-color: var(--text-black);
    color: var(--text-white);
}

/* --- Stylized Cursor --- */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    z-index: 2147483647;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(230, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 2147483646;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cursor-outline.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 0, 0, 0.1);
    border-color: var(--primary-red);
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

a,
button,
.clickable,
.event-card {
    cursor: none;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    transition: background 0.4s ease, padding 0.4s ease;
    padding: 30px 0;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
    width: 120px;
    height: auto;
}

.logo-img {
    width: 100%;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav a {
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    opacity: 0.8;
}

.nav a:hover,
.nav a.active {
    opacity: 1;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.social-link i {
    font-size: 1.2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-red);
    color: var(--text-white);
    z-index: 1001;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.mobile-menu.active {
    right: 0;
    opacity: 1;
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-white);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-nav a {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text-white);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #000;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.fade-left {
    transform: translateX(-30px);
}

.reveal.fade-right {
    transform: translateX(30px);
}

.reveal.zoom-in {
    transform: scale(0.9);
}

.reveal.active.fade-left,
.reveal.active.fade-right {
    transform: translate(0);
}

.reveal.active.zoom-in {
    transform: scale(1);
}

.stagger-delay:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-delay:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-delay:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-delay:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-delay:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-delay:nth-child(6) {
    transition-delay: 0.6s;
}

/* Events */
.events {
    padding: 120px 0;
    background-color: var(--bg-light);
    color: var(--text-black);
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- UPDATED EVENT CARD DESIGN (Text Only) --- */
.event-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid transparent;
}

.event-link-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    pointer-events: auto !important;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.event-info {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    transition: background 0.3s ease;
    min-height: 200px;
    text-align: center;
}

.event-card:hover .event-info {
    background: #fafafa;
}

.event-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--text-black);
}

.event-info p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-link-card.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.visual-header {
    display: none;
}

/* Ensure hidden */

.portfolio-link-container {
    margin-top: 60px;
    text-align: center;
}

.portfolio-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.portfolio-link:hover {
    background-color: transparent;
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.2);
}

/* About */
.about {
    padding: 0;
    background-color: var(--bg-dark);
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
    max-width: 100%;
    padding: 0;
}

.about-card {
    flex: 1;
    min-width: 500px;
    padding: 100px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-card {
    background-color: var(--bg-dark);
    color: var(--text-white);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.address-card {
    background-color: #111;
    color: var(--text-white);
}

.card-content {
    max-width: 500px;
    width: 100%;
}

.ceo-image-placeholder,
.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.ceo-image-placeholder {
    background: var(--primary-red);
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
    overflow: hidden;
}

.ceo-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-wrapper {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-size: 1.5rem;
}

.text-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.role {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 50px;
}

.bio,
address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-grey);
    font-weight: 300;
}

/* Contact */
.contact {
    padding: 150px 0 100px;
    background-color: var(--primary-red);
    color: var(--text-white);
    text-align: center;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact .section-title {
    color: var(--text-white);
    margin-bottom: 60px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    background: transparent;
}

.contact-btn:hover {
    background: var(--text-white);
    transform: scale(1.1);
    border-color: var(--text-white);
}

.contact-btn .icon-box {
    font-size: 3rem;
    color: var(--text-white);
    transition: var(--transition);
}

.contact-btn:hover .icon-box {
    color: var(--primary-red);
}

.contact-btn .label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-white);
    transition: var(--transition);
}

.contact-btn:hover .label {
    color: var(--primary-red);
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    background: #000;
    color: #888;
    font-size: 0.9rem;
    margin-top: -1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-card {
        min-width: 100%;
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-btn {
        width: 160px;
        height: 160px;
    }

    .contact-links {
        gap: 30px;
    }

    .contact {
        clip-path: none;
        margin-top: 0;
        padding: 80px 0;
    }
}