/**
 * assets/css/responsive.css - Responsive Breakpoints
 */

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
    .package-info-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-search-box {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
    
    .auth-image {
        display: none;
    }
    
    .package-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 400px;
    }
    
    .package-gallery .main-image {
        grid-row: span 2;
    }
    
    .hero-slider {
        height: 70vh;
    }
}

/* Mobile - up to 767px */
@media (max-width: 767px) {
    .hero-slider {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .destination-search-box {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .package-gallery .main-image,
    .package-gallery .sub-image {
        grid-row: span 1;
        aspect-ratio: 16/10;
    }
    
    .includes-excludes {
        grid-template-columns: 1fr;
    }
    
    .booking-steps {
        padding: 0;
    }
    
    .booking-step {
        font-size: 0.75rem;
    }
    
    .booking-step .step-label {
        display: none;
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-summary .rating-large {
        border-right: none;
        padding-right: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .section-heading .title {
        font-size: 1.75rem;
    }
    
    .booking-summary {
        position: static;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .tabs {
        gap: 0;
    }
    
    .tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-btn,
    #back-to-top {
        width: 3.5rem;
        height: 3.5rem;
        bottom: 1rem;
    }
    
    .whatsapp-btn {
        right: 1rem;
    }
    
    #back-to-top {
        left: 1rem;
    }
    
    .package-meta-bar {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .filter-sidebar {
        position: static;
        max-height: none;
    }
}

/* Small Mobile - up to 480px */
@media (max-width: 479px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .package-details-main {
        padding: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .auth-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .package-details-main h1 {
        font-size: 1.5rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .btn-header {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    #back-to-top,
    .whatsapp-btn,
    .newsletter-section,
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .package-details-main,
    .booking-card {
        box-shadow: none;
        border: 1px solid #000;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here if needed */
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }
    
    .auth-container {
        min-height: auto;
    }
}