/*Google fonts import code*/
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap');

/*global styles*/
body {
    background-color: #000000;
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    color:#F5F5F5;
    height: 100vh;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.container-global {
    margin-top: 9rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.card {
    background-color: #000000 !important;
    border: none;
}
/* Page Title */
.page-heading {
    margin-top: 5rem;
}
.page-heading h1 {
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    padding: 0.4rem 0.4rem;
    color: #11ED73 !important;
    background-color: #000000;
}
/*Header*/
.header {
    position: fixed;
    top: 0;
    margin-top: 1rem;
    z-index: 1000;
    margin-bottom: 10px;
    background-color: #000000;
}
.header img {
    height: 2.5rem;
    width: auto;
    display: block;
}

/*Navbar*/
.nav-wrapper{
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: #000000;
    width: 100%;
    }
.nav-wrapper ul.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.navbar-toggler {
    padding: 0.2rem;
    line-height: 1;
    border-color: #11ED73;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2311ED73' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}
.nav-link {
    color: #11ED73;
    font-size: 0.8rem;
    text-decoration: none;
    border: 2px solid transparent;
    padding: 0.5rem 0.5rem;
    transition: border 0.3s ease;
    display: inline-block;
}
.nav-link:hover {
    color: #F5F5F5;
}
.nav-link.active {
    border: 2px solid #11ED73;
    border-radius: 5px;
    color: #11ED73 !important;
}
/* Highlight parent toggle when any submenu item is active or the menu is open */
.navbar .nav-link.active { 
    border: 2px solid #11ED73; 
    border-radius: 5px;
}
.nav-separator {
    color: #11ED73;
    margin: 0 0.5rem;
}
.navbar .dropdown-item.active {
    color: #11ED73;
    background: transparent;
}
/* Border when dropdown is open */
.navbar .nav-link.dropdown-toggle[aria-expanded="true"] {
    border: 2px solid #11ED73;
    border-radius: 5px;
}
/* Dropdown menu background */
.dropdown-menu {
    background-color: #000000;
    border: 2px solid #11ED73; 
    border-radius: 5px;
    padding: 0;
}
/* Dropdown links */
.navbar .dropdown-item {
    color: #F5F5F5;
    font-size: 0.7rem;
    padding: 0.5rem;
}
.dropdown-menu input[type="text"] {
    width: 100%;      
    min-width: 150px;
    box-sizing: border-box;
    }
.navbar .dropdown-menu input,
.navbar .dropdown-menu label {
    font-size: 0.7rem;
}
/* Hover/focus = neon green text */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: #11ED73;
}
/* Remove Bootstrap blue highlight on open/focus */
.navbar .nav-link.dropdown-toggle:focus,
.navbar .nav-link.dropdown-toggle:active,
.navbar .nav-link.dropdown-toggle[aria-expanded="true"] {
    background-color: #000000;
    color: #F5F5F5 !important;
    box-shadow: none;
    }
/* Offcanvas tweaks */
.offcanvas.offcanvas-end {
    width: 40vw !important;
}
.offcanvas-body {
    padding-top: 1rem;
    margin-left: auto;
}
.offcanvas-body .nav-link {
    text-align: right;
}
.offcanvas-body .nav-link:hover {
    color: #F5F5F5 !important;
}
/* Remove green borders from offcanvas nav links */
.offcanvas-body .nav-link,
.offcanvas-body .nav-link.active,
.offcanvas-body .nav-link[aria-expanded="true"] {
    border: none !important;
    background-color: transparent;
    }
/* Child links under Events in the offcanvas */
.offcanvas-body .collapse .nav-link {
    color: #F5F5F5;          
    font-size: 0.7rem;       
    border: none;            
}
/* Hover effect for child links */
.offcanvas-body .collapse .nav-link:hover {
    color: #11ED73;
    background-color: transparent;
}

/* Default Bootstrap width remains */
.offcanvas.offcanvas-end {
    right: 0 !important;
    left: auto !important;
    width: 320px;
    transition: width 0.3s ease;
}
/* Expanded only when Search opens */
.offcanvas.offcanvas-end.search-expanded {
    width: 270px !important;
}
/* Fix blue 'Search' link inside offcanvas */
.offcanvas a {
    color: #11ED73 !important;
    text-decoration: none;
}
.offcanvas a:hover,
.offcanvas a:focus {
    color: #F5F5F5 !important;
    text-decoration: none;
}

/* Mobile sticky page title */
.mobile-fixed {
    position: fixed;
    height: auto;
    width: 100%;
    top: 7rem;
    z-index: 1000;
    background-color: #000000;
    margin:0;
    padding: 0;
}
.mobile-fixed h1 {
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    color: #11ED73 !important;
}
/* User status */
.user-status {
    color: #11ED73;
    font-size: 0.9rem;
}
/*Sign up / Login pages*/
.page-item {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    max-width: 700px;
}
/* Help text */
.helptext {
    color: #F5F5F5;
}
/* Help text list elements to adjust spacing and remove bullet points */
.page-item ul,
.page-item ul li {
    list-style: none;
    color: #F5F5F5;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}
/* Help text elements*/
.page-item input[type="text"],
.page-item input[type="email"],
.page-item input[type="password"],
.page-item input[type="file"],
.page-item select,
.page-item textarea {
    width: 100%;
    color: #000000 !important;
    background-color: #F5F5F5 !important;
    border: 1px solid #11ED73 !important;
    font-size: 1.1rem;
    border-radius: 4px;
}
.page-item input[type="date"] {
    width: 100%;
    background-color: #000000 !important;
    border: 1px solid #11ED73 !important;
    font-size: 1.1rem;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
}
.page-item input[type="file"]::file-selector-button {
    background-color: #000000;
    border: 2px solid #11ED73;
}
.page-item input:focus,
.page-item select:focus,
.page-item textarea:focus {
    outline: none;
    border-color: #11ED73 !important;
    box-shadow: none;
    background-color: #F5F5F5 !important;
    color: #000000 !important;
}
.page-item input.form-control,
.page-item select.form-control,
.page-item textarea.form-control {
    color: #000000 !important;
    background-color: #F5F5F5 !important;
}
.page-item input::placeholder,
.page-item textarea::placeholder {
    color: #888;
}

/*Carousel*/
.carousel {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.carousel-item img {
    max-height: 400px;
    width: auto;
    object-fit: cover;
    padding: 0.6rem;
    background-color: #11ED73;
}
.c-caption {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    text-align: center;
}
.c-caption p {
    font-size: 0.8rem;
}

/*About page*/
.about-text {
    font-size: 0.8rem;  
}
.a-item {
    height: 100%;
    padding: 0.8rem;
    background-color: #11ED73;
    color: #000000;
}
.a-img {
    border-radius: 50%;
    padding: 0.6rem;
    background-color:#11ED73;
    max-height: 400px;
    width: auto;
    object-fit: cover;
}

/*Events page*/
.standard-card {
    background-color: #000000;
    color: #F5F5F5;
    max-width: 100%;
    height: 100%;
    border: 2px solid #11ED73;
    border-radius: 10px;
    padding-top: 0.5rem;
    margin-bottom: 0;
    padding-bottom: 0;
}
.card-body {
    padding-top: 0;
    padding-bottom: 0;
    flex: 1 1 auto;
}
.event-details {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 0.5rem;
}
.card-img-top {
    width: 90%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    align-self: center;
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #11ED73;
}
.card-title a {
    font-size: 1.5rem;
    color: #11ED73;
    text-decoration: none;
}
.card-title a:hover {
    color: #F5F5F5;
    text-decoration: none;
}
.sub-title {
    font-size: 1rem;
    color: #F5F5F5;
}
.sub-title a {
    font-size: 1rem;
    color: #11ED73;
    text-decoration: none;
}
.sub-title a:hover {
    color: #F5F5F5;
    text-decoration: none;
}
.artist {
    font-size: 1.5rem;
    color: #11ED73;
    text-decoration: none;
}
.description {
    font-size: 0.8rem;
    color: #F5F5F5;
}
.event-title {
    font-size: 1.5rem;
    color: #11ED73;    
}
.venue {
    font-size: 0.8rem;
}
.venue a {
    color: #11ED73;
    font-size: 1rem;
    text-decoration: none;
}
.venue a:hover {
    color: #F5F5F5;
    text-decoration: none;
}
.card-footer {
    margin-top: auto;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Roxoff page */
.roxoff-img {
    width: auto;
    max-height: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    object-position: center center;
}
.roxoff-description {
    font-size: 0.8rem;
    margin-top: 1rem;
}
.roxoff-img-top {
    width: 60%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*Search results page*/
.search-card {
    background-color: #000000;
    color: #F5F5F5;
    border: 2px solid #11ED73;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}
.search-item-img {
    background-color: #000000;
    width: 500px;
    height: auto;
    max-height: 200px;
    object-fit: contain; 
    object-position: center;
    display: block;
    margin: 0 auto;         
}
.bio {
    font-size: 0.8rem;
    color: #F5F5F5;
    margin-top: 1rem; 
}
.website {
    font-size: 0.9rem;
    color: #F5F5F5;
    margin-top: 0.5rem;
    overflow-wrap: anywhere;    
    white-space: normal; 
}
.website-link {
    font-size: 0.9rem;
    color: #11ED73;
    text-decoration: none;
}
.website-link:hover {
    color: #F5F5F5;
    text-decoration: none;
}

/* Merch page */
.merch-card {
    background-color: #000000;
    color: #F5F5F5;
    border: 2px solid #11ED73;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}
.merch-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    padding-right: 0.5rem;         
    background-color: #000000;
}
.merch-title {
    padding-top: 0.9rem;
    font-size: 1rem;
    color: #11ED73;    
}
.merch-description {
    font-size: 0.8rem;
    color: #F5F5F5;
}
.merch-price {
    font-size: 1.2rem;
    color: #11ED73;
    font-weight: bold;
}
.page-link {
    color: #11ED73 !important; 
    background-color: #000000 !important;
    border: 2px solid #11ED73 !important; 
    font-size: 0.8rem;
}
.page-link:hover {
    background-color: #11ED73 !important;
    color: #000000 !important;
}
.page-item.disabled .page-link {
    color: #11ED73 !important;  
    background-color: #000000 !important;
    border: 2px solid #11ED73 !important;
    opacity: 0.6;
}
/* Quantity dropdown */
#qtyDropdown {
    font-size: 0.8rem;
    padding: 0.5rem 0.5rem;
    border: 2px solid #11ED73 !important;
    border-radius: 5px;
    background-color: #000000;
    color: #11ED73;
}
/* When dropdown is open, keep it green */
#qtyDropdown[aria-expanded="true"] {
    border: 2px solid #11ED73;
    border-radius: 5px;
    background-color: #000000;
    color: #11ED73;
}
/* Dropdown menu */
#qtyDropdown + .dropdown-menu {
    min-width: 100% !important;   
    width: 100%;
    background-color: #000000;
    border: 2px solid #11ED73;
    border-radius: 5px;
}
/* Dropdown items default */
#qtyDropdown + .dropdown-menu .dropdown-item {
    color: #F5F5F5;
    font-size: 0.8rem;
}
/* On hover: flip to green text on white background */
#qtyDropdown + .dropdown-menu .dropdown-item:hover {
    background-color: #F5F5F5;
    color: #11ED73;
}
/* Size dropdown */
#sizeDropdown {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 2px solid #11ED73 !important;
    border-radius: 5px;
    background-color: #000000;
    color: #11ED73;
}
/* When dropdown is open, keep it green */
#sizeDropdown[aria-expanded="true"] {
    border: 2px solid #11ED73;
    border-radius: 5px;
    background-color: #000000;
    color: #11ED73;
}
/* Dropdown menu */
#sizeDropdown + .dropdown-menu {
    min-width: 100% !important;   
    width: 100%;
    background-color: #000000;
    border: 2px solid #11ED73;
    border-radius: 5px;
}
/* Dropdown items default */
#sizeDropdown + .dropdown-menu .dropdown-item {
    color: #F5F5F5;
    font-size: 0.8rem;
}
/* On hover: flip to neon green text on white background */
#sizeDropdown + .dropdown-menu .dropdown-item:hover {
    background-color: #F5F5F5;
    color: #11ED73;
}

/* Basket page */
.basket-item {
    border-bottom: 1px solid #11ED73;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}
/* Basket thumbnails */
.basket-thumb {
    width: 100%;
    max-width: 150px;  
    height: auto;
    max-height: 150px; 
    object-fit: cover;  
    padding: 0;    
}
/* Basket dropdown items */
.dropdown-menu {
    min-width: auto;
    width: auto;       
    padding: 0.25rem;
}
.dropdown-menu .dropdown-item {
    color: #F5F5F5;         
    background-color: #000000;
    min-width: 100% !important;   
    width: 100%;
    font-size: 0.8rem;
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #F5F5F5; 
    color: #11ED73;
}
.basket-details {
    padding: 0;
}
.basket-subtotal {
    font-size: 0.9rem;
}
/* Password reset */
.password-reset {
    font-size: 0.9rem;
}
.password-reset a {
    color: #11ED73;
    text-decoration: none;
    cursor: pointer;
}
.password-reset a:hover {
    color: #F5F5F5;
    text-decoration: none;
}

/*Checkout page*/
.list-group-item {
    background-color: #F5F5F5;
    color: #000000;
    font-size: 0.8rem;
}

/*Contact page*/
.cp-text {
    font-size: 0.9rem;
    margin-left: 1rem;
    margin-right: 1rem;
}
.cp-item {
    color: #11ED73;
    font-size: 0.8rem;
}

/*Buttons*/
.cta-btn {
    color: #11ED73;
    border-color: #11ED73;
    background-color: #000000;
    border-block-width: 5px;
    border-radius: 5px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}
.cta-btn2 {
    font-size: 0.8rem;
    border-color: #11ED73;
    background-color: #000000;
    border-block-width: 0.2rem;
    color: #11ED73;
}
.offcanvas .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%2311ED73' viewBox='0 0 16 16'%3e%3cpath d='M2.146 2.146a.5.5 0 0 1 .708 0L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    opacity: 1;
    background-size: 1em;
    width: 1em;
    height: 1em;
}
.basket-qty-btn  {
    align-items: start;
    padding: 0;
}
.btn-xs {
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 4px;
    }

.btn-danger{
    background-color: #E63946;
    border-color: #E63946;
    color: #F5F5F5;
}
/* Radio button styling */
.form-check-input:checked {
    background-color: #000000 !important;
    border-color: #11ED73 !important;
    box-shadow: 0 0 6px #11ED73 !important;
}
.form-check-input {
    border: 2px solid #11ED73 !important;
}
/* Alert buttons */
.btn-close-green {
    background: none;
    opacity: 1;
}
.btn-close-green::before {
    content: "X";
    font-size: 1.2rem;
    color: #11ED73;
    font-weight: bold;
}
/*404 & 500 error message*/
.error-item {
    color: #11ED73;
}
/* Error Messages */
.custom-error {
    color: #E63946 !important;
    list-style: none;
    padding-left: 0;
    margin-top: 0.25rem;
}
.message-text
.errorlist,
.errorlist li {
    color: #E63946 !important;
    font-size: 0.9rem;     
    margin: 0;
    padding-right: 0.5rem;
}
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: #E63946 !important;
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.25);
}
.invalid-feedback {
    color: #E63946 !important;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/*footer*/
footer {
    Font-size: 0.8rem;
    text-align: center;
    color: #11ED73;
}

/* Media Queries */
@media (max-width: 360px) {
    .c-caption {
        top: 10%
    }
    .offcanvas.offcanvas-end.search-expanded {
    width: 200px !important;
    font-size: 0.7rem !important;
    }
    .delivery-charges {
    font-size: 0.7rem;
    }
}
@media (max-width: 425px) {
    .offcanvas.offcanvas-end.search-expanded {
    width: 240px !important;
    font-size: 0.8rem !important;
    }
}
@media (max-width: 480px) {
    .mobile {
        margin-top: 10.5rem;
    }
}
@media (max-width: 768px) {
    .font-size {
        font-size: 0.5rem;
    }
    .delivery-charges {
    font-size: 0.75rem;
    }
}
@media (min-width: 768px) {
    .c-caption p{
        font-size: 1rem;
    }
    .delivery-charges {
    font-size: 0.8rem;
    }
}
@media (min-width: 1024px) {
    .c-caption-p {
        font-size: 1.5rem; 
    }
    .delivery-charges {
    font-size: 0.9rem;
    }
}
