/* Responsive Styles */

/* Additional responsive styles for corporate-events-template */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section h2 {
        font-size: 2.57rem;
    }
}

/* Medium screens (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .service-card img {
        height: 180px;
    }
}

/* Small screens (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.58rem;
    }
    
    .hero-section h2 {
        font-size: 1.84rem;
    }
    
    .service-card img {
        height: 160px;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .pricing-card.featured {
        transform: none;
        border-width: 2px;
    }
}

/* Extra small screens (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 0.80rem;
    }
    
    .hero-section h2 {
        font-size: 1.59rem;
        margin-bottom: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.33rem !important;
    }
    
    .service-card img {
        height: 140px;
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .feature-card, .service-card, .pricing-card {
        margin-bottom: 1.69rem;
    }
}

/* Very small screens (below 576px) */
@media (max-width: 575px) {
    .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 1.89rem;
        margin-bottom: 0.58rem;
    }
    
    .hero-section h2 {
        font-size: 1.33rem;
        margin-bottom: 0.87rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.18rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.25rem 0.5rem;
        margin: 0;
    }
    
    .service-card {
        text-align: center;
    }
    
    .service-card img {
        height: 120px;
        width: 100%;
    }
    
    .team-member img {
        width: 70px;
        height: 70px;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }
    
    .feature-card, .service-card, .pricing-card {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.62rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    footer .col-lg-3 {
        margin-bottom: 1.58rem;
    }
}

/* Print styles */
@media print {
    .navbar, .breadcrumb-nav, footer {
        display: none !important;
    }
    
    .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
        background: none !important;
        color: black !important;
        padding: 0 !important;
    }
    
    .hero-section::before {
        display: none !important;
    }
    
    .service-card, .feature-card, .pricing-card {
        box-shadow: none !important;
        border: 1px solid #c4b1b2 !important;
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-card img, .team-member img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section h1 {
    padding-top: 150px;
}

.hero-section {
        padding: 80px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 1.61rem;
    }
    
    .hero-section h2 {
        font-size: 1.19rem;
    }
}

/* Accessibility improvements */
@media (prefers-contrast: high) {
    .feature-card, .service-card, .pricing-card {
        border: 2px solid var(--dark-gray);
    }
    
    .btn-primary {
        border: 2px solid var(--white);
    }
}

