/* ===================================
   APP SCREENSHOTS SECTION STYLES
   =================================== */

.screenshots {
    padding: var(--space-6) 0 var(--space-8);
    background-color: var(--color-bg-primary);
    text-align: center;
}

.screenshots .section__title {
    margin-bottom: -60px;
}

.screenshots__main {
    width: 100%;
    margin: 0 auto var(--space-12);
    position: relative;
}

.screenshots__img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* App Store Badges */
.screenshots__badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    /* Increased gap for larger badges */
    flex-wrap: wrap;
    margin-top: -90px;
    /* Raised even higher to overlap with the app image */
}

.badge-link {
    transition: transform var(--transition-base);
    display: block;
}

.badge-link:hover {
    transform: translateY(-5px);
}

.badge-img {
    height: 150px;
    /* Increased from 100px to make them much larger */
    width: auto;
    border-radius: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .screenshots__main {
        max-width: 100%;
        margin-bottom: var(--space-8);
    }

    .screenshots .section__title {
        margin-bottom: 0px;
    }

    .badge-img {
        height: 110px;
        /* Much larger for mobile as requested */
    }

    .screenshots__badges {
        margin-top: -40px;
        gap: 20px;
    }
}