/* Ichhedana Expeditions - Responsive Styles */

/* ========== TABLET (768px - 1024px) ========== */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tours-grid,
    .destinations-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* ========== MOBILE (max-width: 768px) ========== */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info a {
        margin: 0 10px;
    }
    
    .social-links a {
        margin: 0 10px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero */
    .hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Grids */
    .tours-grid,
    .destinations-grid,
    .blog-grid,
    .reviews-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Tour Details */
    .tour-details-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar {
        order: -1;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Page Header */
    .page-header {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 25px;
        margin: 10% auto;
    }
    
    /* Scroll to Top */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========== SMALL MOBILE (max-width: 480px) ========== */
@media screen and (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }
    
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .tour-image,
    .destination-card,
    .gallery-item {
        height: 200px;
    }
    
    .tour-title,
    .blog-title {
        font-size: 18px;
    }
    
    .tour-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .site-header,
    .site-footer,
    .scroll-to-top,
    .modal,
    .flash-message,
    .btn,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ========== LANDSCAPE ORIENTATION ========== */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
}
