:root {
  --main-site-color: #ffcc00;
  /* Rich, warm gold */
  --alt-site-color: #ff9900;
  /* Deep amber/orange */
  --main-bg-dark: #111;
  /* Primary dark background */
  --main-text-light: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--main-bg-dark);
  color: var(--main-text-light);
}

h1,
h2 {
  font-family: 'Monoton', cursive;
}

h3,
.tagline {
  font-family: 'Orbitron', sans-serif;
}

.artist-logo {
  font-family: 'Rubik Glitch', cursive;
  letter-spacing: 6px;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--main-text-light);
}

.artist-logo img {
  height: 50px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.artist-logo img:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.site-link {
  position: relative;
  font-family: 'Orbitron', sans-serif;
  color: var(--main-site-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: var(--alt-site-color);
  transition: width 0.4s ease;
}

.site-link:hover,
.site-link:focus {
  color: var(--alt-site-color);
}

.site-link:hover::after,
.site-link:focus::after {
  width: 100%;
}

/* Social Icons */
header .fa-brands,
.small-icon {
  font-size: 18px;
  color: var(--main-site-color);
  margin: 0 8px;
  transition: color 0.3s ease;
}

header .fa-brands:hover,
.small-icon:hover {
  color: var(--alt-site-color);
}

/* Button Colors using Bootstrap structure */
.btn-main-gold {
  background-color: var(--main-site-color);
  border-color: var(--main-site-color);
  color: #000;
}

.btn-main-gold:hover,
.btn-main-gold:focus {
  background-color: transparent;
  color: var(--main-site-color);
  border-color: var(--main-site-color);
}

.btn-alt-gold {
  background-color: var(--alt-site-color);
  border-color: var(--alt-site-color);
  color: #000;
}

.btn-alt-gold:hover,
.btn-alt-gold:focus {
  background-color: transparent;
  color: var(--alt-site-color);
  border-color: var(--alt-site-color);
}

.btn-outline-main {
  background-color: transparent;
  border-color: var(--main-site-color);
  color: var(--main-site-color);
}

.btn-outline-main:hover,
.btn-outline-main:focus {
  background-color: var(--main-site-color);
  color: #000;
}

.btn-outline-alt {
  background-color: transparent;
  border-color: var(--alt-site-color);
  color: var(--alt-site-color);
}

.btn-outline-alt:hover,
.btn-outline-alt:focus {
  background-color: var(--alt-site-color);
  color: #000;
}

/* Utility Classes */
.text-main-gold {
  color: var(--main-site-color) !important;
}

.text-alt-gold {
  color: var(--alt-site-color) !important;
}

.bg-main-gold {
  background-color: var(--main-site-color) !important;
  color: #000;
}

.bg-alt-gold {
  background-color: var(--alt-site-color) !important;
  color: #000;
}

.border-main-gold {
  border-color: var(--main-site-color) !important;
}

.border-alt-gold {
  border-color: var(--alt-site-color) !important;
}

/* Credits */
.credits {
  font-weight: 500;
}

.credits a {
  color: var(--alt-site-color);
  text-decoration: none;
}

.credits a:hover {
  color: var(--main-site-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar-nav {
    padding-top: 1rem;
  }

  .site-link {
    padding: 10px 0;
    display: block;
    text-align: center;
  }

  .artist-logo img {
    height: 40px;
  }

  .navbar-dark .container-fluid {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

/* Offcanvas Menu */
.offcanvas {
  background-color: #000;
  color: #fff;
}

.offcanvas .nav-link {
  font-size: 1.1rem;
  padding: 10px 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #222;
  color: var(--main-site-color);
  position: relative;
  transition: all 0.3s ease;
}

.offcanvas .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 0%;
  background-color: var(--alt-site-color);
  transition: width 0.4s ease;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus {
  color: var(--alt-site-color);
  background-color: #000;
}

.offcanvas .nav-link:hover::after,
.offcanvas .nav-link:focus::after {
  width: 100%;
}

.offcanvas .offcanvas-title {
  font-family: 'Orbitron', sans-serif;
  color: var(--main-site-color);
}

/* Footer Links */
footer a {
  color: var(--alt-site-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--main-site-color);
  text-shadow: 0 0 5px var(--main-site-color);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Hero */
.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-content {
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
}

.afro-tagline {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  color: var(--main-site-color);
  text-shadow: 2px 2px 4px #000;
}

/* Spinner */
.spinner-border.text-main-gold {
  border-color: var(--main-site-color);
  border-right-color: transparent;
}

/* Modal */
.modal-content {
  border-radius: 0 !important;
}

/* Events Table - True Black */
/* Custom Events Table - Black with only horizontal white lines */
.custom-events-table {
  width: 100%;
  background-color: #000;
  color: #fff;
  border-collapse: collapse;
}

.custom-events-table th,
.custom-events-table td {
  padding: 1rem;
  background-color: #000;
  color: #fff;
  border: none;
  vertical-align: middle;
}

/* Header */
.custom-events-table thead {
  background-color: var(--alt-site-color);
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}

/* Horizontal white borders only */
.custom-events-table tbody tr {
  border-bottom: 1px solid #fff;
}

/* Optional: remove border from last row */
.custom-events-table tbody tr:last-child {
  border-bottom: none;
}

#newsletter-form input {
  border: none !important;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input {
  appearance: textfield;
}

/* === Form Elements with Black Background === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
  background-color: #000;
  color: #fff;
  border: 1px solid var(--main-site-color);
  border-radius: 4px;
  padding: 8px 12px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

input:focus,
textarea:focus,
select:focus {
  background-color: #000;
  color: #fff;
  border-color: var(--alt-site-color);
  outline: none;
  box-shadow: 0 0 5px var(--main-site-color);
}

/* Checkbox + Radio Labels */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--main-site-color);
  /* modern browsers */
}

/* Form labels */
.form-label {
  color: var(--main-text-light);
}

.object-fit-cover 
{
    object-fit: cover;
}

.img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-square-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.img-square {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
