/* =====================================================================
   EQUIPMENT SHOWCASE SECTION - APPLE MINIMAL
   ===================================================================== */

.equipment-showcase {
    position: relative;
    padding: 120px 20px;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image Layer */
.equipment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.equipment-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay for Text Readability */
.equipment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Content Container */
.equipment-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.equipment-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.equipment-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    max-width: 800px;
}

/* Tablet */
@media (min-width: 768px) {
    .equipment-showcase {
        padding: 140px 40px;
        min-height: 700px;
    }

    .equipment-headline {
        font-size: 72px;
    }

    .equipment-content {
        gap: 40px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .equipment-showcase {
        padding: 160px 60px;
        min-height: 750px;
    }

    .equipment-headline {
        font-size: 88px;
    }

    .equipment-content {
        gap: 48px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .equipment-headline {
        font-size: 96px;
    }
}
