/* Custom CSS for Jackson Craig Recruitment Site */

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #6c757d;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --accent-color: #ff6b35;
    --text-light: #ffffff;
    --text-dark: #333333;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.headshot {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.headshot:hover {
    transform: scale(1.05);
}

.hero-stats .badge {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: var(--accent-color) !important;
    color: var(--text-light);
}

.hero-social-links .social-icon i {
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-social-links .social-icon:hover i {
    color: var(--accent-color) !important;
    transform: scale(1.2);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Stat Cards */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

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

.stat-card i {
    transition: color 0.3s ease;
}

.stat-card:hover i {
    color: var(--accent-color) !important;
}

/* Video Container */
.video-container {
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

/* Form Select */
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

/* Video Cards */
.video-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

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

.video-placeholder {
    transition: background-color 0.3s ease;
}

.video-card:hover .video-placeholder {
    background-color: var(--accent-color) !important;
}

.video-card video {
    height: 200px;
    object-fit: cover;
    background-color: #000;
}

/* Contact Section */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.contact-card i {
    transition: transform 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.1);
}

.info-card {
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.75rem 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), #e55a2b);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e55a2b, #d14d20);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .headshot {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-stats .badge {
        display: block;
        margin: 0.5rem 0;
    }
    
    .btn-lg {
        display: block;
        margin: 0.5rem 0;
    }
}
