/* Responsive Styles */

/* Large Devices (Desktops) */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-grid,
    .destinations-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Devices (Mobile Landscape) */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .features-grid,
    .destinations-grid,
    .packages-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-cta h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-cta p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Extra Small Devices (Mobile Portrait) */
@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .destination-card,
    .package-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .destination-img,
    .package-img,
    .gallery-item {
        height: 200px;
    }
    
    .whatsapp-numbers {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-number {
        width: 100%;
        justify-content: center;
    }
}