/* VR Art Exhibitions - Responsive CSS */

/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Disable animations on mobile */
    * {
        animation: none !important;
        transition: none !important;
    }
    
    /* Hero Section Mobile */
    .hero-section h1 {
        font-size: 2rem;
    padding-top: 150px;
}
    
    .hero-section h2 {
        font-size: 1.25rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Section Padding Mobile */
    section {
        padding: 3rem 0;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Cards Mobile */
    .card {
        margin-bottom: 1rem;
    }
    
    /* Team Members Mobile */
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    /* Process Steps Mobile */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Timeline Mobile */
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.875rem;
    }
    
    /* Contact Form Mobile */
    .contact-form .form-control {
        padding: 10px 14px;
    }
    
    /* Navbar Mobile */
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.25rem;
    padding-top: 150px;
}
    
    .hero-section h2 {
        font-size: 1.375rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    padding-top: 150px;
}
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    /* Team Grid Tablet */
    .team-member {
        margin-bottom: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    padding-top: 150px;
}
    
    .hero-section h2 {
        font-size: 1.75rem;
    }
    
    /* Enhanced hover effects for desktop */
    .feature-card:hover,
    .service-card:hover,
    .case-study-card:hover,
    .career-card:hover,
    .info-card:hover,
    .blog-card:hover {
        transform: translateY(-5px);
    }
}

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Height-based Media Queries */
@media (max-height: 600px) {
    .hero-section {
        min-height: 100vh;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    padding-top: 150px;
}
    
    .hero-section h2 {
        font-size: 1.125rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-shapes,
    .btn,
    footer {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
    
    .card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .card {
        border: 2px solid var(--neutral-dark);
    }
    
    .btn-outline-primary {
        border-width: 2px;
    }
    
    .form-control {
        border-width: 2px;
    }
}

/* Dark Mode Support */

body {
    overflow-x: hidden;
}