/* ====================================
   Amazing Balloon Decoration
   Responsive Stylesheet
   ==================================== */

/* Large Devices (Desktops, 992px and up) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-slider {
        height: 550px;
    }
}

/* Medium Devices (Tablets, 992px and down) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .page-hero {
        padding: 80px 20px;
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
}

/* Small Devices (Landscape Phones, 768px and down) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions a {
        width: 100%;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .cities-search {
        flex-direction: column;
        gap: 10px;
    }
    
    .city-search-input {
        border-radius: 50px;
    }
    
    .city-search-btn {
        border-radius: 50px;
        width: 100%;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* Extra Small Devices (Phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-images {
        height: 180px;
    }
    
    .service-info {
        padding: 20px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .city-item {
        padding: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-map iframe {
        height: 200px;
    }
    
    .fixed-contact-buttons a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .page-hero {
        padding: 60px 15px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumbs ul {
        flex-wrap: wrap;
    }
}

/* Very Small Devices (Small Phones, 360px and down) */
@media (max-width: 360px) {
    .logo span {
        font-size: 0.9rem;
    }
    
    .logo small {
        font-size: 0.7rem;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .city-item {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
}

/* Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 300px;
    }
    
    .mobile-menu {
        padding: 40px 20px;
    }
    
    .mobile-menu li {
        margin-bottom: 10px;
    }
}

/* High Resolution Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-slider {
        height: 700px;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .fixed-contact-buttons,
    .cookie-consent,
    .mobile-menu-btn,
    .hero-slider {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}