/* =======================================
   Root Variables
======================================= */
:root {
  --bg-dark: #1e1e1e;
  --bg-slate: #2a2a2a;
  --bg-header: #38444d;
  --accent-blue: #9ab3c9;
  --btn-blue: #4a90e2;
  --btn-blue-hover: #357ab7;
  --text-light: #eee;
  --text-mid: #ccc;
  --text-white: #fff;
}

/* =======================================
   Base Styles
======================================= */
body {
  margin: 0;
  font-family: "diazo-mvb-cond", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/MainLOGO.png"); /* Adjust if path differs */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80% auto; /* or cover for full background */
  opacity: 0.3; /* Adjust transparency */
  z-index: 0;
  pointer-events: none;
}

header, footer {
  text-align: center;
  padding: 1em 0;
  background-color: var(--bg-slate);
  color: var(--text-mid);
  font-size: 1em;
  position: relative;
}

header h1 {
  font-size: 60px; /* or try 4rem, 48px, etc */
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #fff; /* adjust if needed */
  margin: 0.5em 0;
}

footer .footer-logo {
  height: 1em;
  vertical-align: middle;
  margin-left: 0.5em;
}
h1,
h2,
h3 {
  font-family: "diazo-mvb-cond", sans-serif;
  font-weight: 300;
  font-size: 2.5em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
}

/* =======================================
   Header and Nav
======================================= */


#content-container {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#content-container.fade-in {
  opacity: 0.5;
}

/* =====================
   HEADER STYLES
===================== */

.site-header {
  background-color: #111;
  color: #eee;
  padding: 2em 1em;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-title {
  font-size: 2.5em;
  margin: 0.5em 0;
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300; /* Use a lighter weight */
  text-transform: uppercase;
  letter-spacing: 0.05em; /* Optional: adds breathing room */
    border: 2px solid var(--accent-color); /* Or use a specific color like #6ec1e4 */
  border-radius: 12px; /* Rounded corners */
  padding: 0.5em 1em; /* Space inside the border */
    background-color: #333; /* Charcoal grey */
  color: #fff; /* Ensure the text stands out */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Soft shadow */
}


.logo {
  width: 80px;
  height: auto;
}

.site-nav {
  margin-top: 1em;
  position: relative;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1em;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-links li a {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover {
  background-color: #a72833;
}

.menu-toggle {
  display: none;
  background: #e63946;
  color: white;
  border: none;
  padding: 0.5em 1em;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

/* ======= MOBILE STYLES ======= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #222;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    border-radius: 10px;
    padding: 1em;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }

  .nav-links li a {
    width: 100%;
    display: block;
    padding: 0.75em;
  }
}

.desktop-nav a.btn {
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 0.4em 1.2em;
  border-radius: 30px;
  font-size: 0.95em;
}

.dropdown-menu a {
  font-weight: 300;
}

/* Base styles */
.site-nav {
  text-align: center;
  margin: 1em auto;
}

.site-nav a,
.dropdown-toggle {
  font-family: 'diazo-mvb-cond', sans-serif;
  width: 90%;
  max-width: 500px; /* optional */
  font-weight: 300;
  text-transform: uppercase;
  color: #ddd;
  background: #333;
  padding: 0.4em 1.2em;
  border: none;
  margin: 0.2em;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
}

.site-nav a:hover,
.dropdown-toggle:hover {
  background: #555;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}

/* Mobile dropdown */
.mobile-nav {
  display: none;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0;
  background: #222;
  border-radius: 2px;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75em;
  color: #ccc;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.dropdown-menu li a:hover {
  background: #444;
  color: #fff;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

/* Default styling */
.nav-buttons, .nav-dropdown {
  text-align: center;
  margin: 1em auto;
}

/* Navigation button style */
.nav-btn {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #ddd;
  background: #333;
  padding: 0.4em 1.2em;
  border: none;
  border-radius: 5px;
  margin: 0.2em;
  text-decoration: none !important; /* <- Force it */
  font-size: 0.9em;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
  display: inline-block;
}

.nav-buttons.desktop-only {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5em;
  margin-bottom: 1em;
  width: 70%;
}

.nav-btn:hover {
  background: #444;
}

/* Shared cart button style */
.view-cart-btn,
.cart-link {
  font-weight: bold;
  background-color: red;
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* Hover effect */
.view-cart-btn:hover,
.cart-link:hover {
  background-color: darkred;
  color: white !important;
  text-decoration: none;
}

/* Desktop-only cart button sizing */
.desktop-only .view-cart-btn {
  margin-left: 12px;
  min-width: 120px;
  text-align: center;
}

/* Dropdown styles */
.dropdown-toggle {
  width: 90%;
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  color: #ddd;
  background: #333;
  padding: 0.4em 1.2em;
  border: none;
  border-radius: 5px;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
}

.dropdown-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0.5em auto;
  width: 90%;
}

.dropdown-list li a {
  display: block;
  background: #222;
  color: #ddd;
  text-decoration: none;
  padding: 0.5em;
  border-bottom: 1px solid #444;
}

.dropdown-list li a:hover {
  background: #444;
}

/* Applies to the mobile menu container */
nav ul {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Applies to each menu item inside the dropdown */
nav ul li {
  width: 100%;
  display: block;
}

/* If using buttons or anchors */
nav ul li a,
nav ul li button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 1em;
  background-color: #333; /* or whatever you're using */
  border: none;
  color: white;
  text-align: center;
}

/* Mobile dropdown container */
.dropdown-menu {
  width: 100%;
}

/* Each item */
.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 1em;
  text-align: center;
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #555;
}



/* Responsive layout: show/hide elements */
.mobile-only { display: none; }
.desktop-only { display: flex; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}

/* =====================
   RESPONSIVE NAV
===================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    padding: 1em;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 10;
    border-top: 1px solid #444;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .nav-buttons.desktop-only {
    display: none;
  }
}

/* =======================================
   Laser Text Animation
======================================= */
.laser-header {
  text-align: center;
  padding: 2em 1em;
}

.laser-svg {
  width: 100%;
  height: 120px;
}

.laser-text {
  font-family: "diazo-mvb-cond", sans-serif;
  font-size: 40px;
  fill: none;
  stroke: var(--accent-blue);
  stroke-width: 1.5;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: laserReveal 3s ease-out forwards;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Animation keyframes */
@keyframes laserReveal {
  to {
    stroke-dashoffset: 0;
  }
}

/* =======================================
   Product Grid
======================================= */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  padding: 2em;
  position: relative;
  z-index: 1;
}

.product {
  background-color: #333;
  padding: 1em;
  border-radius: 12px;
  border: 4px solid var(--accent-blue);
  width: 250px;
  text-align: center;
  position: relative; /* Required for positioning SVG jack elements */
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.product .price {
  font-size: 1.1em;
  color: var(--text-light);
  margin: 0.5em 0;
  font-weight: 600;
}

.product .summary {
  font-size: 0.95em;
  color: var(--text-mid);
  margin-bottom: 1em;
}

.product .button {
  display: block;
  width: 100%;
  margin: 0 auto 1rem auto;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.product-swiper {
  padding: 20px 0;
}

.swiper-slide.product {
  text-align: center;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 90%;
  margin: auto;
}

@media (min-width: 768px) {
  .swiper-slide.product {
    max-width: 300px;
  }
}

/* Center single Glider item */
.glider-contain .glider:only-child,
.glider-contain .glider > :only-child {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* =======================================
   Buttons
======================================= */
.button,
.add-to-cart {
  background-color: var(--btn-blue);
  color: var(--text-white);
  padding: 0.5em 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button:hover,
.add-to-cart:hover {
  background-color: var(--btn-blue-hover);
}

/* =======================================
   Modal Layout
======================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: opacity 0.4s ease;
}

.modal.active {
  display: block;
    opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background-color: var(--bg-slate);
  margin: 5vh auto;
  padding: 0;
  border-radius: 10px;
  max-width: 1000px;
  width: 95%;
  color: var(--text-light);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal-header {
  background-color: var(--bg-header);
  padding: 0.75em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "diazo-mvb-cond", sans-serif;
  font-weight: 300;
  font-size: 1.8em;
  color: var(--text-white);
  border-bottom: 1px solid #444;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 300;
  color: var(--text-white);
}

.modal-close {
  font-size: 1.5em;
  color: var(--text-mid);
  cursor: pointer;
  transition: color 0.2s ease;
  border-radius: 0.3em;
  padding: 0.25em 0.5em;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--text-mid);
}

.modal-close:hover {
  color: var(--text-white);
}

.artist-links {
  margin-top: 1em;
}

.artist-links a {
  margin-right: 0.75em;
  font-size: 1.5em;
  color: var(--text-light); /* Adjust based on your theme */
  transition: color 0.3s ease;
  text-decoration: none; /* 👈 add this */
}

.artist-links a:hover {
  color: var(--accent-color); /* Or white, or brand color */
}

/* =======================================
   Modal Body
======================================= */
.modal-body {
  display: flex;
  gap: 1.5em;
  padding: 1.5em;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.modal-left {
  flex-shrink: 0;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.purchase-row {
  margin-top: 1em;
  display: flex;
  align-items: center;
  gap: 0.75em;
}

.purchase-row label {
  color: var(--text-mid);
  font-size: 1em;
}

.purchase-row .price {
  font-size: 1.4em;
  color: var(--text-light);
  font-weight: 400;
  margin-right: 1em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .purchase-row {
    flex-direction: column;
    align-items: center;
  }

  .purchase-row .price {
    margin-bottom: 0.5em;
  }
}

.purchase-row input[type="number"] {
  width: 60px;
  padding: 0.3em;
  border-radius: 4px;
  border: none;
  text-align: center;
  font-size: 1em;
}

.modal-info {
  flex-grow: 1;
  width: 55%;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.modal-info p:first-of-type {
  margin-top: 0; /* kill default top margin */
}

.modal-info p {
  margin-bottom: 1em;
  font-size: 1.1em;
  line-height: 1.5;
}

.modal-info ul {
  list-style: disc;
  padding-left: 1.2em;
  margin-bottom: 1.5em;
}

/* ================================
   Modal Header & Audio Styles
   ================================ */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  background-color: var(--bg-header);
  padding: 0.75em 1em;
  border-bottom: 1px solid #444;
  border-radius: 8px 8px 0 0;
}

.modal-header-left {
  flex: 1 1 auto;
}

.modal-header-left h2 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 300;
  color: var(--text-white);
}

.modal-header-right {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-shrink: 0;
}

.pedal-audio {
  border-radius: 4px;
  padding: 0.3em;
  filter: brightness(1.1);
  height: 40px;
  width: 280px;
  max-width: 100%;
}

.modal-close {
  font-size: 1.5em;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0.05em 0.25em;
  border: 4px solid var(--text-mid);
  border-radius: px;
  background-color: rgba(255, 255, 255, 0.07); 
}

.modal-close:hover {
    color: var(--text-white);
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    align-items: center;
  }

  .modal-left {
    width: 100%;
  }

  .purchase-row {
    flex-direction: row !important; /* override column layout */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    margin-top: 1em;
  }

  .purchase-row .price {
    margin: 0;
    font-size: 1.25em;
    font-weight: bold;
  }

  .purchase-row input[type="number"] {
    width: 50px;
  }

  .add-to-cart {
    flex-shrink: 0;
    padding: 0.5em 1em;
    font-size: 1em;
  }
}

/* Default: Show top close, hide bottom */
.modal-close-top {
  display: block;
}

.modal-close-bottom {
  display: none;
}

/* Mobile: Hide top close, show bottom */
@media (max-width: 768px) {
  .modal-close-top {
    display: none;
  }

  .modal-close-bottom {
    display: block;
    margin-top: 2em;
    align-self: flex-end;
    font-size: 1.5em;
    color: var(--text-mid);
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--text-mid);
    border-radius: 0.3em;
    padding: 0.4em 0.75em;
    transition: all 0.2s ease;
  }

  .modal-close-bottom:hover {
    color: var(--text-white);
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.12);
  }
}

.modal-close-bottom {
  /* Inherit everything from modal-close */
  composes: modal-close; /* <-- Not supported in plain CSS, only in CSS Modules */

  /* For regular CSS, just add the shared styles manually or use both classes: */
}

.modal-close-bottom,
.modal-close-top {
  font-size: 1.5em;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0.05em 0.25em;
  border: 4px solid var(--text-mid);
  border-radius: 0.4em;
  background-color: rgba(255, 255, 255, 0.07); 
}

.modal-close-bottom:hover,
.modal-close-top:hover {
  color: var(--text-white);
  border-color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.12);
}




/* ================================
   Button Colors
   ================================ */

.btn-blue {
  background-color: #a8d2f2;
  color: #000;
}

.btn-aqua {
  background-color: #b2f0ea;
  color: #000;
}

.btn-lavender {
  background-color: #e1b9f4;
  color: #000;
}

.btn-rosewood {
  background-color: #d3a075;
  color: #000;
}

.btn-mint {
  background-color: #cbf3b8;
  color: #000;
}

.btn-vanilla {
  background-color: #f0e9aa;
  color: #000;
}

/* ================================
   Mobile Breakpoint Adjustments
   ================================ */
@media (max-width: 768px) {
  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .modal-header-left,
  .modal-header-right {
    width: 100%;
  }

  .modal-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }

  .pedal-audio {
    width: 100%;
  }

  .modal-close {
    align-self: center;
  }
}

/* ================================
   Media Queries: Mobile Styles
   ================================ */
@media (max-width: 768px) {
  .modal-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .modal-header-right {
    flex-direction: column;
    align-items: center;
    gap: 0.75em;
  }

  .pedal-audio {
    width: 100%;
  }
}

/* =======================================
   Responsive Modal Layout
======================================= */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    align-items: center;
  }

  .modal-left,
  .modal-info,
  .modal-image {
    width: 100%;
    text-align: center;
  }

  .modal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-header-left {
    width: 100%;
  }

  .pedal-audio {
    max-width: 100%;
    width: 100%;
  }

  .modal-header h2 {
    font-size: 1.2em;
  }

  .purchase-row {
    justify-content: center;
  }
}

/* =======================================
   FOOTER
======================================= */

.site-footer {
  background: #111;
  color: #eee;
  padding: 2em 1em;
  font-size: 0.9em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.footer-signup {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.footer-signup h4 {
  font-weight: 400;
  margin: 0;
}

.signup-form {
  display: flex;
  gap: 0.5em;
  align-items: center;
  max-width: 300px;
}

.signup-form input[type="email"] {
  width: 200px;
  padding: 0.5em;
  border: none;
  border-radius: 4px;
  font-size: 0.9em;
}

.signup-form button {
  padding: 0.5em 1em;
  background: #e63946;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.9em;
}

.footer-social {
  display: flex;
  gap: 1em;
  font-size: 1.4em;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
  transform: translateY(30px);
}

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

.footer-social a:hover {
  color: #e63946;
}

.footer-bottom {
  margin-top: 2em;
  text-align: center;
  font-size: 0.85em;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .signup-form {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }

  .signup-form input[type="email"],
  .signup-form button {
    width: 100%;
  }

  .footer-social {
    justify-content: center;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  text-align: center;
}

.footer-signup {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}

.signup-form input[type="email"] {
  width: 240px;
  padding: 0.5em;
  border: none;
  border-radius: 4px;
  font-size: 0.9em;
}

.signup-form button {
  padding: 0.5em 1em;
  background: #e63946; /* brand red */
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.9em;
  cursor: pointer;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  font-size: 1.6em;
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
  transform: translateY(30px);
}

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

.footer-social a:hover {
  color: #e63946;
}

.footer-bottom {
  margin-top: 2em;
  text-align: center;
  font-size: 0.85em;
  color: #aaa;
}


/* =======================================
   Location
======================================= */

.location-section {
  background: #1a1a1a;
  color: #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2em;
  padding: 4em 1em;
  margin: 3em auto;
  max-width: 1200px;
}

/* =========================
   Video Container & Layout
========================= */
.video-wrapper iframe,
.location-video-wrapper {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  align-items: flex-start; /* align video to top */
  justify-content: center;
}

.location-video-wrapper {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Responsive iframe */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =========================
   Modal Background
========================= */
.location-modal {
  background: #222;
  border-radius: 12px;
  padding: 2em;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

/* =========================
   Text Content
========================= */
.location-content,
.location-text {
  flex: 1 1 300px;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ccc;
}

.location-content h2,
.location-text h2 {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 2.2em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #f5f5f5;
}

.location-content p,
.location-text p {
  font-size: 0.9em;
  line-height: 1.6;
  margin: 1em 0;
}

/* =========================
   Address + Hours Styling
========================= */
.location-row,
.hours-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 0.8em;
  margin-top: 1em;
}

.location-row i {
  color: #e63946;
}

.location-row a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-row a:hover {
  color: #fff;
}

/* =========================
   Mobile Tuning
========================= */
@media (max-width: 768px) {
  .location-row {
    flex-direction: column;
    text-align: center;
    font-size: 0.95em;
  }

  .location-row a {
    font-size: 0.95em;
  }
}

.location-section {
  display: flex;
  justify-content: center;
  padding: 4em 1em;
  background: #1a1a1a;
  color: #eee;
}

.location-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 1000px;
  background: #222;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.location-video-wrapper {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.responsive-video {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding-bottom: 56.25%; /* 16:9 aspect */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.location-video-wrapper {
  transform: translateY(50px); /* or 0.75em */
}

.location-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ccc;
}

.location-content h2 {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 2.2em;
  margin-bottom: 0.5em;
  color: #f5f5f5;
}

.location-content p {
  font-size: 0.9em;
  line-height: 1.6;
  margin: 1em 0;
}

.location-row, .hours-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.8em;
  gap: 0.5em;
  margin-top: 1em;
}

.location-row i {
  color: #e63946;
}

.location-row a {
  color: #ccc;
  text-decoration: none;
}

.location-row a:hover {
  color: #fff;
}

/* =========================
   HOME
========================= */
.home-hero {
  background: #111;
  color: #eee;
  padding: 4em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* Optional but helps reinforce alignment */
  flex-direction: column; /* Makes sure it's stacking vertically */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 2em;
  margin-bottom: 1em;
  line-height: 1.4;
}

.hero-content h2 {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  font-size: 1.6em;
  margin-top: 2em;
  margin-bottom: 0.75em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-content p {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}

.tagline {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 1.5em;
  font-size: 1.1em;
  color: #f5f5f5;
}

.slogan {
  font-style: italic;
  color: #999;
  margin-top: 0.5em;
}


.artists-section {
  padding: 4em 1em;
  background: #1a1a1a;
  color: #eee;
  text-align: center;
}

.section-title {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  font-size: 2.5em;
  text-transform: uppercase;
  margin-bottom: 2em;
}

/* =========================
   ARTISTS
========================= */

.artist-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artist-image {
  width: 100%;
  max-width: 300px;
  height: 300px; /* or whatever looks best */
  overflow: hidden;
  margin-bottom: 1em;
  flex-shrink: 0;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures it fills the space nicely */
}

.artist-details {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.artist-carousel-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.artist-swiper {
  padding: 1rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  height: auto;
}

/* Artist Card */
.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  min-height: 550px; /* Optional: keeps heights consistent */
}

/* Artist Image */
.artist-image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Artist Info */
.artist-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Artist Name */
.artist-info h3 {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-size: 1.4em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

/* Artist Bio */
.artist-info p {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 1em;
}

/* Artist Quote */
.artist-info p.quote {
  font-style: italic;
  color: #ccc;
  margin: 1rem 0;
}

/* Links */
.artist-info a {
  color: #6ec1e4;
  text-decoration: none;
}

.artist-info a:hover {
  text-decoration: underline;
  color: #9bd7f4;
}

.artist-info a.social-link img {
  transition: transform 0.2s ease;
}

.artist-info a.social-link:hover img {
  transform: scale(1.1);
}

.insta-link i {
  font-size: 28px;
  color: #6ec1e4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-link:hover i {
  transform: scale(1.2);
}

/* Mobile Swipe Tweaks */
@media (min-width: 768px) {
  .swiper-slide {
    scroll-snap-align: unset;
  }
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-control {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  background-color: #1e1e1e;
  color: #fff;
  border: 1px solid #444;
  width: 100%;
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  outline: none;
  border-color: #66ccff;
  background-color: #2a2a2a;
}

.submit-btn {
  padding: 0.75rem 2rem;
  background-color: #66ccff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #aaddff;
}


/* =========================
   ANIMATIONS
========================= */

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000; /* Black background as requested */
  padding: 1rem;
}

.site-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Desktop/tablet constraint: match width of nav buttons */
@media (min-width: 769px) {
  .site-logo {
    max-width: 800px; /* Adjust this value to match your nav button width */
  }
}



/* =========================
   Cart Section with Overlay
========================= */

.cart-section {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em 2em; /* Top/Bottom: 3em, Left/Right: 2em */
  margin: 0;
  box-sizing: border-box;
}

/* =========================
   Cart Modal (Light Panel)
========================= */

.cart-modal {
  background: rgba(255, 255, 255, 0.12); /* Slightly translucent white */
  backdrop-filter: blur(10px);          /* Optional: glassmorphism */
  -webkit-backdrop-filter: blur(10px);  /* Safari support */
  color: #fff;
  padding: 2em;
  margin: 2em auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cart-info {
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .cart-info h3,
  .cart-info p {
    text-align: center;
    width: 100%;
  }

  .cart-total,
  .checkout-btn-wrapper {
    text-align: center;
  }

.cart-content h2 {
  text-align: center;
  font-size: 2.4em;
  color: #bbf3ff; /* Jedi Blue text */
  text-shadow:
    0 0 5px #bbf3ff,
    0 0 10px #68d0ff,
    0 0 20px #4ecbff,
    0 0 40px #33bfff,
    0 0 80px #33bfff;
  animation: neonFlickerJedi 2.8s infinite alternate;
}

@keyframes neonFlickerJedi {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #bbf3ff,
      0 0 10px #68d0ff,
      0 0 20px #4ecbff,
      0 0 40px #33bfff,
      0 0 80px #33bfff;
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}
  
}


/* =========================
   Typography
========================= */

.cart-modal h2 {
  font-family: 'diazo-mvb-cond', sans-serif;
  font-weight: 300;
  font-size: 2.4em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.5em 0;
}

.cart-modal p {
  font-size: 1em;
  line-height: 1.6;
  margin: 1em 0;
}

/* =========================
   Responsive
========================= */

@media (min-width: 1024px) {
  .cart-modal {
    max-width: 1000px;
  }
}
.cart-items {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}

.cart-thumb {
  max-width: 175px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

.cart-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-info h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.cart-info p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
}

.cart-info .remove-btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.remove-form {
  margin-top: 0.5rem;
}

.remove-btn {
  background-color: #e74c3c;
  color: white;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cart-total {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.checkout-btn-wrapper {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Yellow Checkout Button */
.checkout-btn {
  background-color: #f1c40f; /* yellow */
  color: #222;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover {
  background-color: #d4ac0d;
}

/* Green Keep Shopping Button */
.keep-shopping-btn {
  background-color: #27ae60; /* green */
  color: white;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.keep-shopping-btn:hover {
  background-color: #1e8449;
}

.checkout-section {
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.checkout-modal {
  background: rgba(25, 25, 25, 0.96);
  color: #f5f5f5;
  padding: 3em;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  width: 100%;
}

.checkout-form input {
  display: block;
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border-radius: 6px;
  border: none;
  background: #eee;
  color: #111;
  font-size: 1em;
  font-family: inherit;  /* 👈 This makes the font match */
  line-height: 1.2;
  box-sizing: border-box;
}

.checkout-summary {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}

.checkout-summary li {
  display: flex;
  justify-content: space-between;
  padding: 0.5em 0;
  border-bottom: 1px solid #444;
}

.checkout-total {
  font-size: 1.3em;
  margin-top: 1em;
}

.checkout-submit-btn {
  background: #f1c40f;
  color: #111;
  padding: 0.8em 2em;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1em;
}

.keep-shopping-link {
  display: inline-block;
  margin-top: 2em;
  color: #ccc;
  text-decoration: none;
}

.checkout-tax {
  font-weight: 500;
  margin-top: 8px;
}
.checkout-tax strong {
  font-weight: bold;
}

.checkout-form select {
  display: block;
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border-radius: 6px;
  border: none;
  background: #eee;
  color: #111;
  font-size: 1em;
  font-family: inherit;
  line-height: 1.2;
  box-sizing: border-box;
  height: auto;

  /* Removes native arrow styling */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom dropdown arrow (optional) */
  background-image: url("data:image/svg+xml,%3Csvg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  background-size: 1em;
  padding-right: 2em;
}

/* Fix placeholder (first option) color */
.checkout-form select:invalid {
  color: #888; /* gray placeholder style */
}

.address-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Apply horizontal layout on wider screens */
@media (min-width: 768px) {
  .address-row {
    flex-direction: row;
    margin-top: 15px; /* adjust as needed for your layout */
  }

  .address-row input,
  .address-row select {
    flex: 1;
    margin-bottom: 0; /* prevent double spacing */
  }

  .address-row select {
    max-width: 150px;

  }

  .address-row input#zip {
    max-width: 120px;
  }
}

.checkout-billing-btn {
  background-color: #28a745; /* Green */
  color: white;
  font-weight: bold;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.checkout-billing-btn:hover {
  background-color: #218838; /* Darker green on hover */
}

#street {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#street.visible {
  opacity: 1;
}

.submit-order-btn {
  background-color: var(--accent-color, #d33); /* fallback red if accent not defined */
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  display: block;
}

.submit-order-btn:hover {
  background-color: #b22;
  transform: translateY(-2px);
}

.submit-order-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.name-row {
  display: flex;
  gap: 1em;
}

.name-row .form-group {
  flex: 1;
}

