#header_site {
    background-color: #00403D !important;
}

#header_site.scrolled {
    background: white !important;
}

#header_site .menu_site li a::before {
    color: white !important;
}

#header_site.scrolled .menu_site li a::before {
    color: #00403D !important;
}

#footer_site {
    background-color: #00403D !important;
}


.shapes-loading {
    color: #28a745 !important;
}

body::before {
    background: white;
}

.ff-title {
    color: black;
}

.or_about_wrapper {
    overflow: hidden;
    background: white;
}

.or_about_wrapper .or_awards_content {
    position: relative;
    z-index: 1;
    background: white;
    padding: 80px 0px;
    background-color: #00403D !important;
}

.or_about_wrapper .or_awards_content * {
    color: white;
}


.or_about_wrapper .or_awards_content .awards_description {
    font-family: 'Montserrat', sans-serif;
    margin: 20px;
    font-weight: bold;
    color: #57adc9 !important;
}

/*
    ******  SEARCH BAR  ******
*/
.or_about_wrapper .or_awards_content .filter-item {
    margin-bottom: 10px;
}

.or_about_wrapper .or_awards_content .awards_filter {
    margin: 80px auto;
    width: 82%;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 13px 15px 13px 44px;
    background-color: #1C2431;
    border: none;
    border-radius: 10px;
    color: #ecf0f1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
}

.search-input::placeholder {
    color: #bdc3c7;
    opacity: 1;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.category-container {
    display: flex;
    align-items: center;
    background-color: #1C2431;
    border-radius: 10px;
    padding: 10px 20px;
    gap: 20px;
}

.ic-filter::before {
    font-size: 18px;
    color: #ffe62a
}


.filter_option {
    background-color: #1C2431;
    border: 1px solid #a2ab6b;
    border-radius: 4px;
    padding: 5px 8px;
    flex: 1;
    outline: none;
    font-weight: bold;
}

.filter_option:focus {
    border: 1px solid #ffe100;
}

.dropdown-arrow {
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    margin-left: 10px;
    transition: transform 0.2s;
}

/*
    ******  AWARD ITEM  ******
*/
.card {
    background-color: #2c2c2c;
    border: 1px solid #685f5f;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    color: #fff;
    margin: auto;
    margin-bottom: 20px;
}

.card:hover {
    scale: 1.02;
    box-shadow: 0 6px 13px rgba(202, 220, 186, 0.3);
    cursor: pointer;
}

.card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #4a4a4a;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #F4E04D;
}

.card-content {
    padding: 20px;
    height: 280px;
    position: relative;
}

.card-title {
    color: #F4E04D !important;
    margin: 0 0 10px;
    font-size: 1.5em;
}

.card-subtitle {
    color: #57adc9 !important;
    margin: 0 0 15px;
    font-weight: bold;
    min-height: 40px;
}

.card-details {
    color: #dcdcdc;
    margin: 0 0 15px;
}

.card-achievements {
    color: #ffd700;
    margin: 0 0 15px;
}

.card-achievements p {
    margin: 5px 0;
}

.card-link {
    position: absolute;
    bottom: 5%;
    right: 5%;
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.card-link:hover {
    text-decoration: underline;
}


/* ─── RESPONSIVE STYLES ─────────────────────────────────────── */
/*
 * Rules:
 * - Always use max-width (mobile-last).
 * - Order: xxl → xl → lg → md → sm → xs → xxs (high to low).
 */

/* md: 992px */
@media (max-width: 992px) {
    .or_about_wrapper .or_awards_content .awards_filter {
        margin: 60px auto;
        width: 92%;
    }

    .card-content {
        padding: 20px 14px;
        height: 280px;
    }

    .card-title {
        color: #F4E04D !important;
        margin: 0 0 10px;
        font-size: 1.2em;
    }
}

/* sm: 768px */
@media (max-width: 768px) {
    .search-input {
        padding: 15px 15px 15px 44px;
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
    }

    .category-container {
        padding: 8px 18px;
        gap: 16px;
    }

    .ic-filter::before {
        font-size: 15px;
    }

    .card {
        width: 90%;
    }

    .card-content {
        padding: 20px 14px;
        height: 250px;
    }

    .card-title {
        color: #F4E04D !important;
        margin: 0 0 10px;
        font-size: 1.4em;
    }
}

/* xs: 576px */
@media (max-width: 576px) {
    .search-input {
        padding: 14px 15px 14px 44px;
    }

    .filter_option {
        padding: 4px 7px;
    }

    .card {
        width: 85%;
    }

    .card-subtitle {
        min-height: 33px;
    }
}

/* xxs: 450px */
@media (max-width: 450px) {
    .card {
        width: 95%;
    }
}