/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-shapes {
        display: block;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 767.98px) {
    /* Mobile Navigation */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Hero Section Mobile */
    #hero {
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    #hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    #hero .lead {
        font-size: 1.1rem;
        text-align: center;
    }
    
    #hero p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    /* Disable animations on mobile */
    .hero-shapes {
        display: none;
    }
    
    .shape-blob-1, .shape-blob-2 {
        animation: none;
    }
    
    .card:hover {
        transform: none;
    }
    
    .feature-item:hover,
    .mission-item:hover,
    .initiative-card:hover,
    .award-item:hover,
    .workspace-option:hover,
    .amenity-item:hover,
    .tech-feature:hover,
    .benefit-item:hover {
        transform: none;
    }
    
    /* Section Spacing */
    section {
        padding: 2.5rem 0;
    }
    
    section h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    section .lead {
        font-size: 1rem;
        text-align: center;
    }
    
    section p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Team Section Mobile */
    .team-member {
        margin-bottom: 2rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    /* Services Mobile */
    #services .card-img-top {
        height: 150px;
    }
    
    #services .price {
        font-size: 1.25rem;
    }
    
    /* Process Steps Mobile */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Stats Mobile */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Gallery Mobile */
    #gallery .col-lg-4 {
        margin-bottom: 1rem;
    }
    
    /* Contact Form Mobile */
    .contact-info {
        padding: 1rem 0;
        text-align: center;
        margin-top: 2rem;
    }
    
    /* Footer Mobile */
    #footer .col-lg-4 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Breadcrumb Mobile */
    .breadcrumb-section {
        padding-top: 5rem;
        padding-bottom: 1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #hero h1 {
        font-size: 3rem;
    }
    
    #hero .lead {
        font-size: 1.5rem;
    }
    
    section h2 {
        font-size: 2.5rem;
    }
    
    section .lead {
        font-size: 1.25rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    #hero {
        padding: 0;
    }
    
    .hero-shapes .shape-blob-1 {
        width: 250px;
        height: 250px;
    }
    
    .hero-shapes .shape-blob-2 {
        width: 180px;
        height: 180px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-shapes,
    .btn,
    #footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    overflow-x: hidden;
}
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand {
        font-weight: 700;
    }
    
    .card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
}

/* Dark Mode Support */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .card,
    .feature-item,
    .mission-item,
    .initiative-card,
    .award-item,
    .workspace-option,
    .amenity-item,
    .tech-feature,
    .benefit-item {
        transition: none;
    }
    
    .card:hover,
    .feature-item:hover,
    .mission-item:hover,
    .initiative-card:hover,
    .award-item:hover,
    .workspace-option:hover,
    .amenity-item:hover,
    .tech-feature:hover,
    .benefit-item:hover {
        transform: none;
    }
}

/* Focus Visible */
@supports selector(:focus-visible) {
    .btn:focus:not(:focus-visible),
    .form-control:focus:not(:focus-visible),
    .nav-link:focus:not(:focus-visible) {
        box-shadow: none;
    }
}

/* Container Queries Support */
@container (max-width: 500px) {
    .card-body {
        padding: 1rem;
    }
    
    .feature-item,
    .mission-item,
    .initiative-card {
        padding: 1rem 0.5rem;
    }
} 