/* Tablet (768px ve altı) */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 20px;
    }

    .menu-button {
        display: block;
        order: 1;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        box-shadow: var(--box-shadow);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .search-box {
        flex-direction: column;
    }

    .search-wrapper {
        width: 100%;
    }

    .search-btn,
    .location-btn {
        width: 100%;
        justify-content: center;
    }

    .details {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        justify-content: center;
    }

    /* Policy Pages Responsive */
    .policy-section {
        padding: 6rem 1rem 3rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .policy-section h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }
}

/* Mobil (480px ve altı) */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .city {
        font-size: 2rem;
    }

    .temperature {
        font-size: 3rem;
    }

    .weather-description {
        font-size: 1.25rem;
    }

    .details {
        grid-template-columns: 1fr;
    }

    .forecast-container {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Policy Pages Mobile */
    .policy-section h1 {
        font-size: 1.75rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-content h2 {
        font-size: 1.2rem;
    }
}

/* Büyük Ekranlar (1200px ve üstü) */
@media screen and (min-width: 1200px) {
    .container {
        padding: 0;
    }

    .details {
        grid-template-columns: repeat(6, 1fr);
    }

    .forecast-container {
        grid-template-columns: repeat(5, 1fr);
    }
} 