/* RESPONSIVE STYLES
   Balloon Flight School & Tours
-------------------------------------------------- */

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .price-plan.featured {
        transform: scale(1);
    }
    
    .price-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .team-member img {
        height: 250px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    :root {
        --section-padding: 50px 0;
        --section-padding-mobile: 30px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
    }
    
    .hero-image {
        margin-top: 30px;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .about-feature, .service-item, .feature-item, 
    .price-plan, .team-member, .core-info-item {
        margin-bottom: 30px;
    }
    
    .price-plan.featured {
        transform: scale(1);
    }
    
    .price-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .breadcrumb-container {
        height: 120px;
    }
    
    .breadcrumb-image {
        height: 80px;
    }
    
    .footer {
        padding: 50px 0 30px;
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    :root {
        --section-padding: 40px 0;
        --section-padding-mobile: 25px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 30px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .about-feature, .service-item, .feature-item, 
    .price-plan, .team-member, .core-info-item {
        margin-bottom: 30px;
    }
    
    .price-plan.featured {
        transform: scale(1);
        margin: 30px 0;
    }
    
    .price-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonial p:before {
        left: 0;
        top: -5px;
        font-size: 18px;
    }
    
    .breadcrumb-container {
        height: 100px;
    }
    
    .breadcrumb-image {
        height: 60px;
    }
    
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-links, .footer h5 {
        margin-bottom: 20px;
    }
    
    /* Additional responsive adjustments for mobile */
    .accordion-button {
        padding: 15px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .location-card, .event-card, .occasion-card {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
} 