/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .about-content,
    .plaza-content,
    .falls-content,
    .farm-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-stats {
        flex-wrap: wrap;
    }
    
    .plaza-title,
    .falls-title,
    .farm-title {
        font-size: 36px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        border-radius: 10px;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: var(--light-color);
    }
    
    .social-icons {
        order: 3;
        margin-left: auto;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* About Section */
    .info-stats {
        flex-direction: column;
    }
    
    .about-description {
        font-size: 15px;
        text-align: left;
    }
    
    /* Map */
    .map-wrapper {
        margin-top: 50px;
    }
    
    .map-title {
        font-size: 24px;
        flex-direction: column;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    /* Destinations */
    .plaza-title,
    .falls-title,
    .farm-title {
        font-size: 28px;
    }
    
    .plaza-main-image img,
    .falls-main-image img,
    .farm-main-image img {
        height: 300px;
    }
    
    .destination-badge {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .image-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .image-label i {
        font-size: 20px;
    }
    
    .plaza-gallery,
    .falls-gallery,
    .farm-gallery {
        gap: 10px;
    }
    
    .gallery-item img {
        height: 100px;
    }
    
    .destination-meta {
        gap: 15px;
    }
    
    .meta-item {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .plaza-description,
    .falls-description,
    .farm-description {
        font-size: 15px;
        text-align: left;
    }
    
    .highlights {
        padding: 20px;
    }
    
    .highlights h4 {
        font-size: 16px;
    }
    
    .highlights li {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-item i {
        font-size: 28px;
    }
    
    .stat-content h3 {
        font-size: 24px;
    }
    
    .plaza-title,
    .falls-title,
    .farm-title {
        font-size: 24px;
    }
    
    .plaza-main-image img,
    .falls-main-image img,
    .farm-main-image img {
        height: 250px;
    }
    
    .gallery-item img {
        height: 80px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-title {
        font-size: 20px;
    }
    
    .destination-badge {
        top: 10px;
        left: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .image-label {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px 15px;
    }
    
    .read-more-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .nav-links {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}
