/*Design Stuff*/
/*Gold #CB894D
Red #651009*/

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* -------- global stuff -------- */
body {

    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 15px !important;
    font-weight: 400;
    color: #2d2d2d;
    line-height: 28.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}

.pointer {
    cursor: pointer;
}

.no-gutters {
    margin-right: -15px;
    margin-left: -15px;
}

iframe {
    width: 100%;
    height: auto;
    min-height: 300px;
}

img {
    max-width: 100%;
}

a {
    color: #e7c44d;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #e7c44d;
}
.text-black {
    color: #000 !important;
}
.bg-black {
    background-color: #000 !important;
}
.bg-black2 {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.navbar {
    background-color: #fff;
    padding: 0.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 100px;
    max-width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-family: "PT Serif", serif;
    color: #fff;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    letter-spacing: 0.2rem;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #e7c44d;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #e7c44d;
}

.navbar.bg-dark {
    background-color: #1a1a1a !important;
    background-size: 10px 10px;
}

.carousel-item img {
    object-fit: contain;
    width: 100%;
    max-height: 60vh;
}

/* Carousel Control Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark semi-transparent background */
    border-radius: 50%;
    /* Make icons circular */
    padding: 10px;
    /* Add padding for larger clickable area */
    width: 40px;
    height: 40px;
    background-size: 75%;
    /* Slightly smaller icon */
}

/* Make the left and right controls full height for easy clicking */
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    /* Width of the clickable left/right bands */
    height: 100%;
    /* Full height */
    top: 0;
    bottom: 0;
    opacity: 1;
    /* Ensure they're always visible */
    color: transparent;
    /* Hide default arrow color */
}

/* Center the icon within the full-height control area */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center icon */
}

/* Shadow effect for icons to improve visibility */
.carousel-control-prev,
.carousel-control-next {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* Hover effect to darken background */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 576px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        padding: 5px;
    }
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}


    .carousel-caption {
        position: static;
        transform: none;
        color: #2d2d2d;
        background-color: rgba(0, 0, 0, 1);
        padding: 1rem;
        text-align: center;
        border-radius: 0
    }

    .carousel-caption {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

/*@media (max-width: 768px) {
    .carousel-caption {
        position: static;
        transform: none;
        color: #2d2d2d;
        background-color: rgba(0, 0, 0, 1);
        padding: 1rem;
        text-align: center;
        border-radius: 0
    }
}

/*.carousel-caption {
    opacity: 0;
}

.carousel-caption.animate__animated.animate__fadeInUp {
    opacity: 1;
}*/

/*@media (max-width: 768px) {
    .carousel-caption {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}*/


.category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover .category-img {
    transform: translateY(-10px);
}

.category-img {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background-color: #1a1a1a !important;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 5px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 5px);
    background-size: 10px 10px;
    /* Dark grey */
    color: #e7c44d;
    /* Gold text */
}

.accordion-button:not(.collapsed)::after {
    filter: invert(60%) sepia(100%) saturate(300%) hue-rotate(10deg);
    /* custom icon color */
}

.accordion-button:focus {
    box-shadow: none;
}
.an-title a {
    color: #000 !important;
}
.an-wrap img {
    border-radius: 5px;
}
div.auction-nudge-items ul.an-page-wrap, .an-search-submit, .an-search-box {
    border-radius: 5px;
}
@media (max-width: 1200px) {
    footer ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
}