/* Responsive Styles for Inverted PM Theme */

/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-cards {
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-card {
        width: 280px;
        position: relative;
        transform: none !important;
    }

    .hero-card-back {
        position: absolute;
        left: 10%;
        top: 10%;
        transform: rotate(-3deg);
    }

    .hero-card-front {
        position: absolute;
        right: 10%;
        bottom: 10%;
        transform: rotate(3deg);
    }

    .posts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .main-navigation {
        width: 100%;
        margin-top: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(26, 95, 122, 0.1);
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-menu .consult-button a {
        width: 100%;
        text-align: center;
    }

    .homepage-hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cards {
        height: 350px;
    }

    .hero-card {
        width: 240px;
        padding: 2rem;
    }

    .hero-card-back {
        left: 5%;
        top: 5%;
    }

    .hero-card-front {
        right: 5%;
        bottom: 5%;
    }

    .site-main {
        padding: 2rem 1rem;
    }

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

    .archive-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .site-title {
        font-size: 0.9375rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-card {
        width: 200px;
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.875rem;
    }

    .single-post-title {
        font-size: 1.75rem;
    }

    .archive-title {
        font-size: 1.75rem;
    }

    .post-navigation {
        flex-direction: column;
    }

    .post-navigation a {
        max-width: 100%;
    }
}

