/* assets/css/responsive.css - Mobile-first responsive styles */
/* ============================================
   RESPONSIVE BREAKPOINTS:
   - Mobile: up to 768px
   - Tablet: 768px to 1024px
   - Desktop: 1024px and above
   ============================================ */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    /* Navigation */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-container {
        padding: 0.75rem 1.5rem;
    }
    
    /* Grid Layouts */
    .destinations-grid,
    .tours-slider,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Story Section */
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-stats {
        justify-content: center;
    }
    
    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }

	highlight {
		font-size: 3.5rem;
	}

    #hero-title {
        font-size: 2.6rem;
    }

	.logo-text {
		font-size: 
	}

	.logo-icon {
		font-size: 1.2rem;
	}
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    /* Tours Page */
    .tour-item {
        grid-template-columns: 1fr;
    }
    
    .tour-item-image {
        aspect-ratio: 16/9;
    }
    
    /* Filter Bar */
    .filter-bar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Quote Section */
    .quote-container blockquote {
        font-size: 1.5rem;
    }
    
    /* Section Spacing */
    .section-container {
        padding: 0 1.5rem;
    }
    
    .story-section,
    .instagram-gallery,
    .cta-section {
        padding: 3rem 0;
    }
    
    /* Footer */
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-full-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }

	.highlight {
		font-size: 3rem;
	}

    #hero-title {
        font-size: 2.2rem;
    }

	.logo-icon {
		font-size: 1rem;
	}
	
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .tour-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Tablet Landscape (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .destinations-grid,
    .tours-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .story-container {
        gap: 2rem;
    }
    
    .section-container {
        padding: 0 2rem;
    }
}

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
    .section-container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .destinations-grid {
        gap: 2.5rem;
    }
}

/* Touch Device Adjustments */
@media (hover: none) {
    .destination-card:hover .card-image img,
    .tour-card:hover .tour-image img,
    .gallery-item:hover img {
        transform: none;
    }
    
    .tour-card:hover {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .scroll-indicator,
    .scroll-progress,
    .theme-toggle-wrapper,
    .mobile-menu-btn,
    .cta-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section {
        height: auto;
        min-height: 300px;
    }
    
    .hero-content {
        color: black;
    }
}