* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body { 
    font-family: Bahnschrift, sans-serif;
    background: #f5f5f5;
}

.logo{
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 20PX auto;
}

.logo img{
    width: 100px;
    margin: 10px;
    
}
.categories{
    width: 95vw;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: auto;
    justify-content: center;
}

.categories a{
    background-color: #f3c809;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
}

.categories a.active{
    background-color: orange;
}

/* Optional centered wrapper */
.container {
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    width: 30vw;
    min-width: 320px; /* keep it usable on small screens */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    background: #161300;
}

/* Category section */
.category-section {
    margin: 20px auto;
    padding: 20px;
    /* background: #fff; */
    background: #161300;
    border-radius: 12px;
    width: 600px;
    max-width: 90vw; /* keep responsive */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #f3c809;   
    padding-bottom: 5px;
    font-family: 'Trebuchet MS';
}

/* Card */
.card {
    background: #2b2a29;
    width: 70%;
    padding: 15px;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    
    justify-content: space-between;
}

.item{
    width: 100%;
    display: flex;
    justify-content: space-between;
}


.card h3, 
.card p,
.card span {
    color: #F7DBBB;
}
.card span {
    letter-spacing: .5px;
    font-weight: 600;
    font-size: 1.1rem;
}


.disc p{
    font-size: .7rem;
    color: #ffffff;
    margin-top: 2px;
    

}
.disc span{
    
    color: #ff0000;
    

}

/* --- Mobile Screens --- */
@media screen and (max-width: 700px) {
    .category-section {
        width: 90vw;
    }
    .category-title {
        font-size: 1.2rem;
    } 
    .card {
        width: 100%;
        flex-direction: column; /* stack text if needed */
        
    }
    .card h3 {
        font-size: 1rem;
    }
    .card p, .card span {
        font-size: 0.9rem;
    }
    .disc p{
        font-size: .7rem;
        color: #ffffff;
        margin-top: 10px;
    
    }
}
