/* Mobile-first responsive design */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    padding-top: 250px;
}
    
    .hero-section h2 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
    }
    
    .decorative-blob {
        display: none;
    }
    
    /* No animations on mobile as per requirements */
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 250px;
}
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .team-member img {
        width: 130px;
        height: 130px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.25rem;
    padding-top: 250px;
}
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .team-member img {
        width: 140px;
        height: 140px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section {
        padding: 0 2rem;
    }
    
    .container-fluid {
        max-width: 1400px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-section {
        padding: 0 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-cream: #ffffff;
        --primary-sage: #006600;
        --primary-terracotta: #cc6600;
        --primary-charcoal: #000000;
        --primary-blush: #ffeeee;
    }
    
    .card {
        border: 2px solid var(--primary-charcoal);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .card:hover {
        transform: none;
    }
    
    .btn-primary:hover {
        transform: none;
    }
    
    .gallery-item img:hover {
        transform: none;
    }
}