/* 
================================================================
  PREMIUM PRINTING COMPANY WEBSITE - RESPONSIVE STYLES
================================================================
*/

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 80px;
        min-height: 60vh;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        margin: 0 auto 2rem;
    }

    .navbar-collapse {
        background: var(--bg-white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        margin-top: 15px;
    }

    .nav-link {
        padding: 10px 0 !important;
    }
    
    .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        border-left: 2px solid var(--border-color);
        border-radius: 0;
        margin-left: 15px;
        background: transparent;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .category-img-wrapper {
        height: 200px;
    }

    .footer-heading {
        margin-top: 30px;
    }
    
    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-info-card .icon {
        margin-bottom: 10px;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .btn-premium {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn-outline-premium {
        width: 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
