/* Stylings for content presentation */
.app-list {
    display: flex; 
    flex-wrap: wrap;
    background-color: #342e26;
    padding: 10px; 
    margin-top: 25px; 
    margin-bottom: 5px;
    box-shadow: 2px 2px 10px 0px #1a1712;
}
.app-list h3 {
    margin-top: 0; 
    margin-bottom: 0; 
    font-size: 1.5em;
    font-style: italic;
    color: #675D49;
}
.app-list p {
    width: 100%; 
    margin-top: 10px;
}
.app-info {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%; 
    background-image: linear-gradient(to bottom, #675d49, 50%, #342e26);
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.app-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0; 
    margin-right: 10px; 
}
.platform-icon {
    height: auto;
    width: 64px; 
    flex-shrink: 0;
 }
.app-info-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: right;
}
.app-info-btn a:hover img {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}
.platform-images {
    text-align: center;
}
.content-wrapper {
    background-color: #342e26;
    color:#f3eee4;
    --fallback-gradient-color: #342e26;
}
.title-bar {
    background-image: url('../images/banners/circuit_b.webp');
}
.main-nav {
    background-image: linear-gradient(to bottom, #ede5d6, 80%, #1a1712);
}
.menu a {
    color: #002010;
}
.menu a:hover {
    background-image: linear-gradient(to bottom, #ede5d6, 50%, #1a1712);
    color: #ede5d6;
}
.content-area {
    background-image: linear-gradient(to top, #ceb992, #1a1712);
}
.site-footer {
    background-color: #ceb992;
    color: #002b40;
}

@media (min-width: 769px) { /*Desktop only */
    .content-wrapper {
        background-image: url('../images/banners/appmenu_desk.webp'), var(--fallback-gradient);
    }
    .app-list {
        width: 80%;
        margin-left: auto;
        margin-right: auto; 
    }
}

@media (max-width: 768px) { /*Mobile only */
    .content-wrapper {
        background-image: url('../images/banners/appmenu_mobi.webp'), var(--fallback-gradient);
        font-size: 14px;
    }
    .app-icon {
        width: 48px;
        height: 48px;
    }
}
