:root {
    --bs-primary: #E10600;
    --bs-secondary: #1A1A1A;
    --bs-light: #F4F4F4;
    --bs-dark: #000000;
}

/* Optional: Light hover for cards */
.card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
}
.category-badge {
    position: absolute;
    height: 36px;
    width: 36px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 10;
}

.category-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.card-body h6 {
    margin-top: 0.5rem;
}


* {
    box-sizing: border-box;
}

body {
    font-family: Copperplate, Helvetica, fantasy;
    background-color: black;
}

/* Style the header */
.header {
    font-family: "Copperplate Gothic Bold", fantasy;
    margin: 95px;
    height: 150px;
    border: 1px solid whitesmoke;
    color: whitesmoke;
    padding: 30px;
    text-align: center;
    font-size: 70px;
}
.header a:link, .header a:visited, .header a:hover, .header a:active{
    color: whitesmoke;
    text-decoration-line: none;
}
.logo {
    margin: 20px;
    height: 200px;
    width: 170px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: black;
}
.gallery {
    margin: 10px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
    height: auto;
}

.gallery:hover {
    border: 1px solid #777;
}

.gallery img {
    width: 100%;
    height: auto;
}

.desc {
    padding: 15px;
    text-align: center;
    color: whitesmoke;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Style the footer */
.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}
