:root{
  --vesmiru-bg: #0a0b0e;
  --vesmiru-surface: #121318;
  --vesmiru-elevated: #171922;
  --vesmiru-text: #e5e7eb;
  --vesmiru-text-muted: #9aa0ab;
  --vesmiru-primary: #ff2a4e;
  --vesmiru-primary-600: #e11d48;
  --vesmiru-accent: #8b5cf6;
  --vesmiru-border: #23252e;
  --vesmiru-ring: rgba(255,42,78,0.35);
  --vesmiru-link: #e5e7eb;
  --vesmiru-link-hover: #ff4d6a;
  --vesmiru-success: #22c55e;
  --vesmiru-warning: #f59e0b;
  --vesmiru-danger: #ef4444;
}

/* Global dark theme overrides */
html, body, .site-header, .site-footer {
  background-color: var(--vesmiru-bg) !important;
  color: var(--vesmiru-text) !important;
}

a {
  color: var(--vesmiru-link) !important;
  text-decoration-color: rgba(255,42,78,0.5);
}
a:hover { color: var(--vesmiru-link-hover) !important; }

/* Cards / surfaces */
.card, .panel, .box, .surface, .widget, .modal, .dropdown-menu {
  background-color: var(--vesmiru-surface) !important;
  color: var(--vesmiru-text) !important;
  border-color: var(--vesmiru-border) !important;
}

/* Buttons */
.btn, button, [type='button'], [type='submit'] {
  border-radius: 12px;
}
.btn-primary, button.primary, .btn.btn-primary {
  background: var(--vesmiru-primary) !important;
  border-color: var(--vesmiru-primary) !important;
  color: #ffffff !important;
}
.btn-outline, .btn-secondary, .btn-default {
  background: transparent !important;
  color: var(--vesmiru-text) !important;
  border-color: var(--vesmiru-border) !important;
}
.btn:hover, button:hover {
  filter: brightness(1.1);
}

/* Inputs */
input, select, textarea {
  background: var(--vesmiru-elevated) !important;
  color: var(--vesmiru-text) !important;
  border: 1px solid var(--vesmiru-border) !important;
  outline: none !important;
}
input:focus, select:focus, textarea:focus, .btn:focus, button:focus {
  box-shadow: 0 0 0 3px var(--vesmiru-ring) !important;
  border-color: var(--vesmiru-primary) !important;
}

/* Tables */
table { border-color: var(--vesmiru-border) !important; }
thead { background: #0f1014 !important; }
tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02) !important; }
tbody tr:hover { background: rgba(255,42,78,0.06) !important; }

/* Badges / pills */
.badge, .tag, .label {
  background: rgba(255,42,78,0.14) !important;
  color: var(--vesmiru-primary) !important;
  border: 1px solid var(--vesmiru-border) !important;
}

/* Subtle text */
.muted, .text-muted, .help, small, .help-block {
  color: var(--vesmiru-text-muted) !important;
}

/* Dividers */
hr { border-color: var(--vesmiru-border) !important; }

/* Code blocks */
pre, code, .code-block {
  background: #0e0f13 !important;
  color: #f3f4f6 !important;
  border: 1px solid var(--vesmiru-border) !important;
}

/* Vesmiru: force hamburger icon color (FA6) */
#masthead .menu-toggle::before,
#masthead #menu-toggle::before,
#masthead #social-search-toggle::before {
  font-family: "Font Awesome 6 Free"; /* your site is loading FA 6.7.2 */
  font-weight: 900;                    /* solid */
  color: var(--vesmiru-text) !important;
}

/* On hover/focus/active/expanded, use Vesmiru primary instead of theme blue */
#masthead .menu-toggle:hover::before,
#masthead .menu-toggle:focus::before,
#masthead .menu-toggle:active::before,
#masthead .menu-toggle:focus-visible::before,
#masthead .menu-toggle[aria-expanded="true"]::before,
#masthead #menu-toggle:hover::before,
#masthead #menu-toggle:focus::before,
#masthead #menu-toggle:active::before,
#masthead #menu-toggle:focus-visible::before,
#masthead #menu-toggle[aria-expanded="true"]::before,
#masthead #social-search-toggle:hover::before,
#masthead #social-search-toggle:focus::before,
#masthead #social-search-toggle:active::before,
#masthead #social-search-toggle:focus-visible::before,
#masthead #social-search-toggle[aria-expanded="true"]::before {
  color: var(--vesmiru-primary) !important;
  border: 0px solid var(--vesmiru-border) !important;
}

#menu-toggle,
#menu-toggle:focus,
#menu-toggle:active,
#menu-toggle:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.menu-toggle-wrapper,
.menu-toggle-wrapper:focus,
.menu-toggle-wrapper:active,
.menu-toggle-wrapper:focus-visible,
.menu-toggle.selected,
.menu-toggle.selected:focus,
.menu-toggle.selected:active,
.menu-toggle.selected:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: #0a0b0e !important;
}

.menu-label {
  color: var(--vesmiru-text) !important;
}

.navigation-default #primary-menu-wrapper .menu-inside-wrapper {
  padding: 15px 0;
  background: #0e0f13 !important;
  border: none !important;
}

.main-wrapper {
  min-height: 50vh !important;
}


.site-branding a.custom-logo-link img.custom-logo {
    width: 175px;
    height: auto;
}



/* Card link */
.hover-effect {
    display: block;
    position: relative; /* ensures absolute-positioned icon stays with image */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hover-effect:hover img {
    transform: scale(1.03);
}

/* Corner badge */
.release-icon {
    position: absolute;
    bottom: 4px;
    left: 8px;
    width: 24px;  /* scale as needed */
    height: 24px;
    opacity: 0.75; /* partial opacity */
    transition: opacity 0.25s ease;
}

.release-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: fill 0.25s ease, stroke 0.25s ease;
}

/* Color states */
.release-icon svg circle:first-of-type {
    fill: #e62121; /* disc */
}
.release-icon svg circle:not(:first-of-type) {
    stroke: #fff; /* rings */
}

.hover-effect:hover .release-icon svg circle:first-of-type {
    fill: #fff; /* disc */
}
.hover-effect:hover .release-icon svg circle:not(:first-of-type) {
    stroke: #e62121; /* rings */
}




.release-icon svg circle {
    transition: fill 0.25s ease, stroke 0.25s ease;
}

/* Default state: red disc, white rings */
.release-icon svg circle:first-of-type {
    fill: #e62121; /* disc */
}
.release-icon svg circle:not(:first-of-type) {
    stroke: #fff; /* rings */
}

/* Hover state: white disc, red rings */
a:hover .release-icon svg circle:first-of-type {
    fill: #fff; /* disc */
}
a:hover .release-icon svg circle:not(:first-of-type) {
    stroke: #e62121; /* rings */
}



li.sr-playlist-item.current .sr-playlist-item-flex a.audio-track .track-number,
li.sr-playlist-item.current .sr-playlist-item-flex a.audio-track .tracklist-item-time {
    color: #ff2a4e !important;
}




.menu-inside-wrapper {
  background: var(--vesmiru-surface) !important;
  border: 0px solid var(--vesmiru-border) !important;
  border-radius: 10px;
  padding: 10px 12px;
}

.social-navigation .menu-social-container {
  margin: 0;
}

.social-links-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links-menu li { display: inline-block; }

.social-links-menu a {
  --btn-size: 36px;
  width: var(--btn-size);
  height: var(--btn-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255,42,78,0.12);
  color: var(--vesmiru-text);
  border: 1px solid var(--vesmiru-border);
  text-decoration: none;
  transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}

.social-links-menu a:hover,
.social-links-menu a:focus {

  color: #fff;
  border-color: var(--vesmiru-primary);
  transform: translateY(-1px);
}













/* ============================
   Vesmiru Social Menu Styles
   ============================ */

/* Outer social nav wrapper */
.social-navigation {
  background: var(--vesmiru-surface) !important;
  border-radius: 10px;
  padding: 10px 12px;
}

/* Inner wrapper (Abletone's wrapper) */
.social-navigation .menu-inside-wrapper {
  background: var(--vesmiru-surface) !important;
  border: 0 solid var(--vesmiru-border) !important;
  border-radius: 10px;
  padding: 10px 12px;
}

/* Container around the social menu list */
.social-navigation .menu-social-container {
  margin: 0;
}

/* The social links list */
.social-links-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Make sure theme's nav styles don't wreck the layout */
.social-navigation .social-links-menu li {
  display: inline-flex;
  flex: 0 0 auto;
  margin: 0;
}

/* Social buttons */
.social-navigation .social-links-menu a {
  --btn-size: 36px;
  width: var(--btn-size);
  height: var(--btn-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 42, 78, 0.12) !important;
  color: var(--vesmiru-text) !important;
  border: 1px solid var(--vesmiru-border) !important;
  text-decoration: none;
  transition:
    background .22s ease,
    color .22s ease,
    transform .22s ease,
    border-color .22s ease;
}

/* Hover / focus state */
.social-navigation .social-links-menu a:hover,
.social-navigation .social-links-menu a:focus {
  color: #fff !important;
  border-color: var(--vesmiru-primary) !important;
  transform: translateY(-1px);
}


div#social-menu-wrapper .menu-inside-wrapper {
  width: 300px;
}

#menu-social-menu.social-links-menu li#menu-item-243 {
  padding-left: 10px;
}


/* ============================
   Mobile fixes
   ============================ */

@media (max-width: 768px) {

  /* Keep the background on mobile too, no white bullshit */
  .social-navigation,
  .social-navigation .menu-inside-wrapper,
  .social-navigation .menu-social-container {
    background: var(--vesmiru-surface) !important;
    border-radius: 0px;
  }

  .social-navigation {
    width: 100%;
  }

  .social-navigation .social-links-menu {
    justify-content: center; /* center icons on small screens */
  }

}










/* Screen-reader text stays visually hidden */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}


#primary-search-wrapper.menu-wrapper {
  display: none;
}



/* responsive youtube embed */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* 2 columns on wider screens */
@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

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