/**
 * Custom Theme Styles
 * @package Activation_Consulting
 */

/* ========================================
   MOBILE MENU ENHANCEMENTS
   ======================================== */

.mobile-menu-toggle .material-symbols-outlined {
    font-size: 1.5rem;
}

/* ========================================
   BUTTON SIZES
   ======================================== */

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    height: 2.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    height: 3.5rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ========================================
   SCROLL BEHAVIOR
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* ========================================
   SELECTION COLOR
   ======================================== */

::selection {
    background-color: rgba(0, 240, 156, 0.3);
    color: #0f172a;
}

/* ========================================
   FOCUS STYLES
   ======================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #00f09c;
    outline-offset: 2px;
}

/* ========================================
   LOADING STATE
   ======================================== */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f1f5f9;
    border-top-color: #00f09c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-balance {
    text-wrap: balance;
}

.bg-gradient-radial {
    background: radial-gradient(circle at center, var(--tw-gradient-from), var(--tw-gradient-to));
}

/* ========================================
   RESPONSIVE TYPOGRAPHY
   ======================================== */

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .site-header,
    .cta-section,
    .hero-social-proof,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        padding-top: 2rem !important;
    }
    
    .hero-title {
        color: black !important;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
