/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .stream-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .stream-info {
        padding-right: 0;
    }
    
    .gallery-image {
        width: 300px;
        height: 400px;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container, .nav-container {
        padding: 0 30px;
    }
    
    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1002;
        padding: 80px 0;
    }
    
    .nav-main.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        justify-content: center;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 10px 0 0;
        background: transparent;
    }
    
    .dropdown.active {
        display: block;
    }
    
    .dropdown-item {
        padding: 8px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero {
        padding: 140px 30px 80px;
    }
    
    .gallery-image {
        width: 280px;
        height: 380px;
    }
    
    .gallery-container {
        height: 450px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title, .stream-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle, .stream-description {
        font-size: 1.1rem;
    }
    
    .gallery-image {
        width: 250px;
        height: 350px;
    }
    
    .gallery-container {
        height: 400px;
    }
    
    .years {
        font-size: 1.2rem;
    }
    
    .wisdom-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 1.5rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container, .nav-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero {
        padding: 120px 20px 60px;
    }
    
    .section-title, .stream-title {
        font-size: 2rem;
    }
    
    .gallery-image {
        width: 220px;
        height: 320px;
    }
    
    .gallery-container {
        height: 350px;
    }
    
    .contact-link {
        width: 100%;
        margin-right: 0;
    }
}