/* Import fonts */
@import url('fonts.css');

/* ========================================
   SITE-WIDE BACKGROUND
   ======================================== */

.site-bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-image: url('/pages/home/images/live-instructor-led-training.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

.site-bg-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.75) 0%, rgba(245, 245, 245, 0.65) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   BASIC STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Oswald', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: transparent;
    color: #333;
    line-height: 1.6;
}

/* Content area */
#content {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
}

p {
    margin: 0 0 1em 0;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* ========================================
   UTILITIES
   ======================================== */

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Accessibility - respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        border: 1px solid #000;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }
}
