/* VIP Champagne Balloon Experiences - Responsive CSS */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.625rem; }
    h4 { font-size: 1.375rem; }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

/* Tablets */
@media (max-width: 991px) {
    /* Navigation */
    .navbar-nav {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid var(--accent-light);
    }
    
    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .hero-section img {
        margin-bottom: 2rem;
    }
    
    /* Service Cards */
    .service-card {
        margin-bottom: 2rem;
    }
    
    /* Team Members */
    .team-member {
        margin-bottom: 2rem;
    }
    
    /* Process Steps */
    .process-step {
        margin-bottom: 2rem;
    }
    
    /* Footer */
    .footer .row > div {
        margin-bottom: 2rem;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 767px) {
    /* Typography */
    body {
  overflow-x: hidden;
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    
    p {
        font-size: 0.875rem;
    }
    
    /* Navbar */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    /* Hero Section */
    .hero-section h1 {
        font-size: 1.875rem;
    }
    
    .hero-section h3 {
        font-size: 1.25rem;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    /* Feature Boxes */
    .feature-box {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-box i {
        font-size: 2.5rem !important;
    }
    
    /* Service Cards */
    .service-card img {
        height: 200px;
    }
    
    .service-card .card-body {
  overflow-x: hidden;
        padding: 1.5rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    /* Price Cards */
    .price-card {
        margin-bottom: 1.5rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    /* Team Members */
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    /* Reviews Slider */
    .review-card {
        padding: 1.5rem;
    }
    
    /* Process Steps */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        padding: 1.5rem;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 2rem;
    }
    
    /* Blog Cards */
    .blog-card img {
        height: 180px;
    }
    
    /* Gallery */
    .gallery-section img {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer {
        text-align: center;
    }
    
    .footer .list-unstyled {
        margin-bottom: 1.5rem;
    }
    
    /* Icon Box */
    .icon-box {
        width: 50px;
        height: 50px;
    }
    
    .icon-box i {
        font-size: 1.5rem !important;
    }
    
    /* Disable Swiper autoplay and effects on mobile */
    .swiper {
        --swiper-autoplay: 0 !important;
    }
}

/* Mobile Phones */
@media (max-width: 575px) {
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Typography */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    
    /* Section spacing */
    section {
        padding: 2rem 0;
    }
    
    .mb-5 {
        margin-bottom: 2rem;
    }
    
    /* Hero Section */
    .hero-section h1 {
        font-size: 1.625rem;
    }
    
    .hero-section p {
        font-size: 0.875rem;
    }
    
    /* Service Cards */
    .service-card ul li {
        font-size: 0.813rem;
    }
    
    /* Info Cards */
    .info-card {
        padding: 1.5rem;
    }
    
    /* Career Cards */
    .career-card {
        padding: 1.5rem;
    }
    
    /* Contact Info */
    .contact-info p {
        font-size: 0.875rem;
    }
    
    /* FAQ */
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .accordion-body {
  overflow-x: hidden;
        padding: 1rem;
        font-size: 0.813rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer h5 {
        font-size: 1.125rem;
    }
    
    .footer p,
    .footer a,
    .footer small {
        font-size: 0.813rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    /* Base font size */
    body {
  overflow-x: hidden;
        font-size: 13px;
    }
    
    /* Navbar */
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    /* Buttons */
    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.813rem;
    }
    
    /* Cards */
    .feature-box,
    .service-card .card-body,
    .price-card,
    .review-card,
    .career-card,
    .info-card {
        padding: 1rem;
    }
    
    /* Form */
    .form-control {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    /* Sharper borders and shadows */
    .service-card,
    .price-card,
    .feature-box,
    .info-card {
        box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    }
}

/* Print Styles */
@media print {
    /* Hide non-essential elements */
    .navbar,
    .btn,
    .gallery-section,
    .footer {
        display: none !important;
    }
    
    /* Adjust colors for print */
    body {
  overflow-x: hidden;
        color: #000;
        background: #fff;
    }
    
    /* Page breaks */
    section {
        page-break-inside: avoid;
    }
} 