@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section Animation */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.logo-container {
    transition: all 0.5s ease-in-out;
}

.logo-container:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.logo-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(234, 88, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

/* Info Reveal Transition */
.info-reveal {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.info-reveal.active {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
}

/* Main Content Toggle (Hidden by default) */
#main-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

#main-content.active {
    opacity: 1;
    max-height: 2000px;
    /* Large enough to fit content */
    transform: translateY(0);
    padding-top: 4rem;
    /* Restore padding when active */
    padding-bottom: 4rem;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Data Tables */
.custom-table th {
    background-color: #f3f4f6;
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.custom-table tr:nth-child(even) {
    background-color: #f9fafb;
}

.custom-table tr:hover {
    background-color: #f3f4f6;
}

/* Card Interactability */
.data-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-card:active {
    transform: scale(0.98);
}