html {
    height: 100%;
}

body {
    color: #555;
    font-family: 'Lato';
}

.hero-section {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(38, 70, 83, 0.7), rgba(38, 70, 83, 0.4));
    z-index: 1;
}

.hero-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


/* from Bulma */
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

.logo-font {
    text-transform: uppercase;
    font-weight: 800;
}

.main-logo-link {
    width: fit-content;
}

h2 strong {
    color: #cc5e39;
    letter-spacing: 2px;
    word-spacing: 2px;
}

.shop-now-button {
    background: #cc5e39;
    color: white;
    min-width: 260px;
}

.btn-black {
    background: black;
    color: white;
}

.btn-outline-black {
    background: white;
    color: black !important; /* use important to override link colors for <a> elements */
    border: 1px solid black;
}

.shop-now-button:hover,
.shop-now-button:active,
.shop-now-button:focus,
.btn-black:hover,
.btn-black:active,
.btn-black:focus {
    background: #222;
    color: white;
}

.text-black{
    color: #000 !important;
}

.border-black {
    border: 1px solid black !important;
}

.bg-black {
    background: #000 !important;
}

.bg-maroon, .btn-maroon {
    background: #cc5e39 !important;
}

/* ------------------------------- bootstrap toasts */

.message-container {
    position: fixed;
    top: 72px;
    right: 15px;
    z-index: 99999999999;
}

.custom-toast {
    overflow: visible;
}

.toast-capper {
    height: 2px;
}

/* from CSS-tricks.com: https://css-tricks.com/snippets/css/css-triangle/ */

.arrow-up {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent; 
    border-bottom: 10px solid black;
    position: absolute;
    top: -10px;
    right: 36px;
}

/* Convenience classes - colors copied from Bootstrap */
.arrow-primary {
    border-bottom-color: #007bff !important;
}

.arrow-secondary {
    border-bottom-color: #6c757d !important;
}

.arrow-success {
    border-bottom-color: #28a745 !important;
}

.arrow-danger {
    border-bottom-color: #dc3545 !important;
}

.arrow-warning {
    border-bottom-color: #ffc107 !important;
}

.arrow-info {
    border-bottom-color: #17a2b8 !important;
}

.arrow-light {
    border-bottom-color: #f8f9fa !important;
}

.arrow-dark {
    border-bottom-color: #343a40 !important;
}

.bag-notification-wrapper {
    height: 100px;
    overflow-x: hidden;
    overflow-y: auto;
}

.bag-notification-wrapper {
    max-height: 100px;
    overflow-y: auto;
    overflow-x: hidden;

}

input[name='q']::placeholder {
    color: #aab7c4;
}

/* --------------------- Allauth form formatting */

.allauth-form-inner-content p {
    margin-top: 1.5rem; /* mt-4 */
    color: #6c757d; /* text-secondary */
}

.allauth-form-inner-content input {
    border-color: #000;
    border-radius: 0;
}

.allauth-form-inner-content label:not([for='id_remember']) {
    display: none;
}

.allauth-form-inner-content input::placeholder {
    color: #aab7c4;
}

.allauth-form-inner-content button,
.allauth-form-inner-content input[type='submit'] {
	/* btn */
	display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #cc5e39;
    border: 1px solid #cc5e39;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;

    /* standard bootstrap btn transitions */
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.allauth-form-inner-content button:hover,
.allauth-form-inner-content input[type='submit']:hover {	
	color: #fff;
    background-color: #5bc0be;
    border-color: #5bc0be;
}

.allauth-form-inner-content a {
	color: #17a2b8; /* text-info */
}

/* ---------------------------------- Products Templates */

.game-img-size {
    height: 300px;
    object-fit: cover;
}

.badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.badge-players {
    background-color: #4CAF50;
    color: white;
}

.badge-time {
    background-color: #2196F3;
    color: white;
}

.badge-age {
    background-color: #9C27B0;
    color: white;
}

.badge-complexity {
    background-color: #FF9800;
    color: white;
}

.badge-white {
    background-color: white;
    border: 1px solid #ddd;
}

.category-badge:hover {
    text-decoration: none;
}

.btt-button {
    height: 42px;
    width: 42px;
    position: fixed;
    bottom: 10px;
    right: 10px;
}
.btt-link,
.update-link,
.remove-item {
    cursor: pointer;
}

/* Product cards */
.card {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card-footer {
    background-color: transparent;
}

.image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-details-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.game-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
}

.spec-item i {
    font-size: 1.1rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.description-container {
    background-color: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.description-text {
    line-height: 1.6;
    color: #4a4a4a;
}

footer {
    background-color: #cc5e39;
    color: #fff

}

/* Footer Styles */
.footer {
    margin-top: 3rem;
    padding: 3rem 0;
}

.footer .social-links {
    margin-bottom: 2rem;
}

.footer .social-links a {
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #17a2b8 !important;
}

/* ---------------------------------- Newsletter Form */
#mc_embed_signup {
    background: transparent !important;
    font: inherit !important;
    width: 100%;
    padding: 0;
}

#mc_embed_signup .mc-field-group {
    width: 100%;
    padding-bottom: 1rem;
}

#mc_embed_signup .mc-field-group input {
    border: 1px solid #495057;
    border-radius: 4px;
    width: 100%;
}

#mc_embed_signup .button {
    background-color: #cc5e39 !important;
    border-color: #cc5e39;
    color: white !important;
    transition: all 0.3s ease;
    font-size: 1rem !important;
    height: auto !important;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
}

#mc_embed_signup .button:hover {
    background-color: #b54d2b !important;
    border-color: #b54d2b;
}

#mc_embed_signup div.response {
    margin: 1rem 0;
    padding: 0.5rem;
    font-weight: normal;
    float: none;
    width: 100%;
}

#mc_embed_signup div#mce-responses {
    margin: 0;
    padding: 0;
}

#mc_embed_signup .asterisk {
    color: #dc3545 !important;
}

/* ---------------------------------- About Us Section */
.about-section {
    padding: 4rem 0;
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.about-section .logo-font {
    letter-spacing: 0.1rem;
}

.about-section .lead {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section .list-unstyled {
    margin-bottom: 2rem;
}

.about-section .list-unstyled li {
    margin-bottom: 1rem;
}

/* ---------------------------------- Media Queries */

/* Slightly larger container on xl screens */
@media (min-width: 1200px) {
  .container {
    max-width: 80%;
  }
}

/* fixed top navbar only on medium and up */
@media (min-width: 992px) {
    .fixed-top-desktop-only {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030;
    }

    .header-container {
        padding-top: 164px;
    }
}

/* ---------------------------------- FAQ Accordion Styles */
.accordion .card {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion .card-header button {
    color: #cc5e39;
    font-weight: 600;
}

.accordion .card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion .card-header button:hover {
    color: #b54d2b !important;
}

.accordion .card-header button:focus {
    box-shadow: none;
}

.accordion .card-header button .fa-chevron-down {
    transition: transform 0.3s ease;
}

.accordion .card-header button[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion .card-body {
    color: #555;
    line-height: 1.6;
}

/* pad the top a bit when navbar is collapsed on mobile */
@media (max-width: 991px) {
    .header-container {
        padding-top: 156px;
        margin-top: 16px;
    }

    body {
        height: calc(100vh - 116px);
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .nav-link {
        padding: 0.15rem;
    }

    .nav-link i.fa-lg {
        font-size: 1rem;
    }

    .navbar-toggler {
        padding: .6rem .6rem;
        font-size: 1rem;
    }

    #delivery-banner h4 {
        font-size: .9rem;
    }

    .btn.btn-outline-black.rounded-0,
    .btn.btn-maroon.rounded-0 {
        padding: .375rem .375rem;
    }

    .btn.btn-outline-black.rounded-0.btn-lg,
    .btn.btn-maroon.rounded-0.btn-lg {
        padding: .375rem .375rem;
        font-size: .75rem;
    }
}