/* ================================================
   Teacher Ignarro - Landing Page
   Main Stylesheet - Imports all modules
   ================================================ */

/* === Module Imports === */
@import 'base.css';
@import 'animations.css';
@import 'components/navbar.css';
@import 'components/hero.css';

/* ================================================
   Additional Utility Styles
   ================================================ */

/* === Buttons === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-red, #D80027) 0%, #ff1744 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all var(--transition-normal, 0.3s ease);
    box-shadow: 0 4px 20px rgba(216, 0, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(216, 0, 39, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all var(--transition-normal, 0.3s ease);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* === Card Styles === */
.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all var(--transition-normal, 0.3s ease);
}

.card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* === Section Divider === */
.section-divider {
    width: 6rem;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red, #D80027), transparent);
    border-radius: 2px;
    margin: 0 auto;
}

/* === Text Gradient === */
.text-gradient {
    background: linear-gradient(135deg, var(--color-red, #D80027) 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Glass Effect === */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === Loading State === */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
