/*
 * AI Agents Live Cohort - Main Stylesheet
 * Custom styles for enhanced user experience
 */

/* Custom utilities and overrides */
:root {
    --brand-dark: #0a0a0a;
    --brand-card: #171717;
    --brand-accent: #a3e635;
    --brand-accent-hover: #84cc16;
    --brand-text: #f5f5f5;
    --brand-muted: #a3a3a3;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
}

/* Custom focus styles */
a:focus,
button:focus {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

/* Responsive video container */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Enhanced button styles */
.btn-primary {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--brand-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(163, 230, 53, 0.2);
}

/* Loading state */
.loading {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 80px; /* Above sticky bar */
    right: 2rem;
    background: var(--brand-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile menu */
@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--brand-dark);
        z-index: 50;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }
}

/* Cohort badge glow effect */
.cohort-badge {
    position: relative;
}

.cohort-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #a3e635 0%, #84cc16 100%);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.5;
}

/* Print styles */
@media print {
    nav,
    footer,
    .sticky-bottom-bar,
    .no-print {
        display: none !important;
    }
}
