/* --- Section: Outlet --- */
.outlet-grid {
    display: flex;
    flex-wrap: wrap;
}

.outlet-item {
    flex: 1;
    position: relative;
    display: flex;
    min-width: 280px;
    min-height: 60vh;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border: 1px solid #FFFFFF;
    color: #fff;
    overflow: hidden;
}

.outlet-background-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.outlet-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.outlet-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(10vh);
}

.outlet-name {
    width: 65px;
    height: 48px;
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.outlet-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.special-logo {
    max-width: 300px;
    margin-bottom: 1.5rem;
}

/* =================================
    MEDIA QUERIES (RESPONSIVE)
    ================================= */

/* --- Tampilan Tablet (Layar di bawah 1024px) --- */
@media (max-width: 1024px) {
    .outlet-item { flex-basis: 50%; }
}

/* --- Tampilan Ponsel (Layar di bawah 768px) --- */
@media (max-width: 768px) {
    .outlet-item {
        flex-basis: 100%;
        min-height: 50vh;
    }
    .outlet-content { transform: translateY(5vh); }
}