/* Large Tablets */
@media screen and (max-width: 1024px) {
    .app-container {
        grid-template-columns: 250px 1fr;
    }

    .temperature-display {
        font-size: 4rem;
    }

    .weather-description-large {
        font-size: 2rem;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .app-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        padding: 1rem;
    }

    .weather-main {
        padding: 1.5rem;
    }

    .info-cards-container {
        grid-template-columns: 1fr;
    }

    .temperature-display {
        font-size: 3.5rem;
    }

    .weather-description-large {
        font-size: 1.8rem;
    }

    .forecast-cards {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 640px) {
    .main-content {
        padding: 0.8rem;
    }

    .weather-main {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .temperature-display {
        font-size: 3rem;
    }

    .weather-description-large {
        font-size: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }

    .player-controls button {
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 480px) {
    .temperature-display {
        font-size: 2.5rem;
    }

    .high-low {
        font-size: 1rem;
    }

    .weather-description-large {
        font-size: 1.2rem;
    }

    .recipe-preview {
        flex-direction: column;
        text-align: center;
    }

    .recipe-image {
        margin: 0 auto;
    }

    .detail-item {
        padding: 0.6rem 0;
    }
}

/* Small Mobile */
@media screen and (max-width: 320px) {
    .main-content {
        padding: 0.5rem;
    }

    .weather-main {
        padding: 1rem;
    }

    .temperature-display {
        font-size: 2rem;
    }

    .player-controls {
        gap: 0.8rem;
    }

    h3 {
        font-size: 1rem;
    }
} 