/* ============================================================
   ALPINE NOIR - Custom Design System for Bootstrap 5
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --an-bg-deep: #0d0d14;
  --an-bg-card: rgba(26, 26, 46, 0.7);
  --an-bg-card-solid: #1a1a2e;
  --an-bg-darker: #0a0a12;
  --an-gold: #d4a574;
  --an-gold-bright: #e8c49a;
  --an-gold-dark: #c49464;
  --an-text-primary: #f5f0e8;
  --an-text-muted: #9a9aae;
  --an-border-gold: rgba(212, 165, 116, 0.12);
  --an-border-gold-hover: rgba(212, 165, 116, 0.22);
  --an-font-serif: 'DM Serif Display', Georgia, serif;
  --an-font-sans: 'Source Sans 3', system-ui, sans-serif;
  --an-font-handwriting: 'Dancing Script', cursive;
  --an-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Global Styles ---- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--an-bg-deep);
  color: var(--an-text-primary);
  font-family: var(--an-font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
div.an-modal {
  background-color: var(--an-bg-card);
  color: var(--an-text-primary);
  font-family: var(--an-font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--an-font-serif);
}




a {
  text-decoration: none;
  transition: color 0.3s var(--an-transition);
}

::selection {
  background: rgba(212, 165, 116, 0.3);
  color: var(--an-text-primary);
}

:focus-visible {
  outline: 2px solid rgba(212, 165, 116, 0.5);
  outline-offset: 2px;
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--an-bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(212, 165, 116, 0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212, 165, 116, 0.45); }

/* ---- Grain Texture Overlay ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVBAR
   ============================================================ */
.an-navbar {
  background: rgba(13, 13, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--an-transition);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.an-navbar.scrolled {
  background: rgba(13, 13, 20, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(212, 165, 116, 0.08);
}

.an-brand {
  font-family: var(--an-font-handwriting) !important;
  font-size: 1.5rem !important;
  font-weight: 600;
  background: linear-gradient(135deg, var(--an-gold), var(--an-gold-bright), var(--an-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  transition: opacity 0.3s !important;
}

.an-brand:hover {
  opacity: 0.8;
}

.an-nav-link {
  color: rgba(245, 240, 232, 0.7) !important;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s var(--an-transition) !important;
}

.an-nav-link:hover,
.an-nav-link:focus {
  color: var(--an-gold) !important;
}

.an-login-link {
  color: var(--an-gold) !important;
}

.an-login-link:hover {
  color: var(--an-gold-bright) !important;
}

/* Dropdown */
.an-dropdown {
  background: rgba(26, 26, 46, 0.95) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--an-border-gold) !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
  padding: 0.5rem 0 !important;
  min-width: 240px !important;
  margin-top: 0.75rem !important;
  animation: anDropdownIn 0.3s var(--an-transition);
}

@keyframes anDropdownIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.an-dropdown-item {
  color: rgba(245, 240, 232, 0.6) !important;
  font-size: 0.875rem;
  padding: 0.625rem 1rem !important;
  transition: all 0.2s var(--an-transition) !important;
}

.an-dropdown-item:hover,
.an-dropdown-item:focus {
  color: var(--an-gold) !important;
  background: rgba(212, 165, 116, 0.05) !important;
}

.an-icon-gold {
  color: rgba(212, 165, 116, 0.4);
}

/* Login Dropdown */
.an-login-dropdown {
  min-width: 300px !important;
  padding: 0 !important;
}

.an-login-title {
  font-family: var(--an-font-serif);
  color: var(--an-gold);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.an-login-subtitle {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.an-form-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.an-form-input {
  background: rgba(18, 18, 26, 0.8) !important;
  border: 1px solid var(--an-border-gold) !important;
  border-radius: 0.5rem !important;
  color: var(--an-text-primary) !important;
  font-size: 0.875rem !important;
  padding: 0.625rem 0.875rem !important;
  transition: border-color 0.2s !important;
}

.an-form-input::placeholder {
  color: rgba(245, 240, 232, 0.2) !important;
}

.an-form-input:focus {
  border-color: rgba(212, 165, 116, 0.35) !important;
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.1) !important;
}

.an-forgot-link {
  font-size: 0.75rem;
  color: rgba(212, 165, 116, 0.5);
  transition: color 0.2s;
}

.an-forgot-link:hover {
  color: var(--an-gold);
}

/* Search */
.an-search-form {
  position: relative;
}

.an-search-input {
  width: 13rem;
  background: rgba(245, 240, 232, 0.05) !important;
  border: 1px solid rgba(212, 165, 116, 0.08) !important;
  border-radius: 9999px !important;
  padding: 0.375rem 2.5rem 0.375rem 1rem !important;
  font-size: 0.875rem !important;
  color: var(--an-text-primary) !important;
  transition: all 0.4s var(--an-transition) !important;
}

.an-search-input::placeholder {
  color: rgba(245, 240, 232, 0.25) !important;
}

.an-search-input:focus {
  width: 16rem;
  border-color: rgba(212, 165, 116, 0.25) !important;
  background: rgba(245, 240, 232, 0.08) !important;
  box-shadow: none !important;
}

.an-search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(212, 165, 116, 0.4);
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.an-search-btn:hover {
  color: var(--an-gold);
}

/* Icon Buttons */
.an-icon-btn {
  color: rgba(245, 240, 232, 0.5);
  padding: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.an-icon-btn:hover {
  color: var(--an-gold);
}

/* Toggler */
.an-toggler {
  border: none !important;
  padding: 0.5rem !important;
  color: rgba(245, 240, 232, 0.5) !important;
  font-size: 1.25rem;
}

.an-toggler:focus {
  box-shadow: none !important;
}

/* Gold Button */
.an-btn-gold {
  background: linear-gradient(135deg, var(--an-gold), var(--an-gold-dark));
  color: #12121a !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s var(--an-transition);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.1);
}

.an-btn-gold:hover {
  background: linear-gradient(135deg, var(--an-gold-bright), var(--an-gold));
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
  color: #12121a !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.an-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
}

@media (min-width: 768px) { .an-hero { height: 320px; } }
@media (min-width: 992px) { .an-hero { height: 360px; } }

.an-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s linear forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.05); }
}

.an-hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--an-bg-deep), rgba(13, 13, 20, 0.5), rgba(13, 13, 20, 0.3));
}

.an-hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 13, 20, 0.5), transparent, rgba(13, 13, 20, 0.3));
}

.an-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(13, 13, 20, 0.4) 100%);
}

/* Breadcrumb */
.an-breadcrumb-link {
  color: rgba(212, 165, 116, 0.6);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.an-breadcrumb-link:hover {
  color: var(--an-gold);
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(212, 165, 116, 0.3);
}

/* Gold Line */
.an-gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--an-gold), transparent);
}

.an-gold-line-full {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.4), transparent);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.an-main-content {
  margin-top: -1rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}

/* ============================================================
   CARDS (Glass Morphism)
   ============================================================ */
.an-card {
  position: relative;
  background: var(--an-bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--an-border-gold);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.4s var(--an-transition);
}

.an-card:hover {
  border-color: var(--an-border-gold-hover);
  box-shadow: 0 8px 32px rgba(212, 165, 116, 0.06), 0 0 0 1px rgba(212, 165, 116, 0.05);
  transform: translateY(-2px);
}

.an-card-accent {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.3), transparent);
}

.an-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0.75rem;
}

.an-card-title, div.an-card > div.an-card-header > h2.an-card-title {
  font-family: var(--an-font-serif);
  font-size: 1.25rem;
  color: var(--an-text-primary);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.3;
}

.an-card-subtitle {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.4);
  margin: 0.25rem 0 0;
}

.an-card-separator {
  margin: 0 1.25rem;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.08), transparent);
}

.an-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.an-collapse-btn {
  background: none;
  border: none;
  color: rgba(212, 165, 116, 0.3);
  padding: 0.375rem;
  margin-top: 0.125rem;
  margin-left: 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.an-collapse-btn:hover {
  color: var(--an-gold);
  background: rgba(212, 165, 116, 0.05);
}

.an-collapse-btn[aria-expanded="false"] i {
  transform: rotate(-90deg);
}

.an-collapse-btn i {
  transition: transform 0.3s var(--an-transition);
}

/* ============================================================
   ABO ITEMS
   ============================================================ */
.an-abo-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
  color: inherit;
  transition: all 0.2s;
}

.an-abo-item:hover {
  color: inherit;
}

.an-abo-item:hover .an-abo-title {
  color: var(--an-gold-bright);
}

.an-abo-info {
  flex: 1;
  min-width: 0;
}

.an-abo-title {
  color: var(--an-gold);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
  margin: 0;
  font-family: var(--an-font-sans);
}

.an-abo-desc {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.35);
  margin: 0.25rem 0 0;
}

.an-abo-price {
  text-align: right;
  flex-shrink: 0;
}

.an-price-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--an-text-primary);
  font-variant-numeric: tabular-nums;
}

.an-price-info {
  display: block;
  font-size: 0.625rem;
  color: rgba(245, 240, 232, 0.25);
  line-height: 1.3;
  margin-top: 0.125rem;
}

.an-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(212, 165, 116, 0.1), transparent);
}

/* ============================================================
   OUTLINE BUTTON
   ============================================================ */
.an-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--an-gold);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s var(--an-transition);
}

.an-btn-outline:hover {
  color: var(--an-gold-bright);
  border-color: rgba(212, 165, 116, 0.4);
  background: rgba(212, 165, 116, 0.05);
}

.an-btn-outline i {
  transition: transform 0.3s;
}

.an-btn-outline:hover i {
  transform: translateX(3px);
}

.an-btn-close{
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  color: var(--an-gold);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 9px;
  padding: 0 1rem;
  transition: all 0.3s var(--an-transition);
  box-sizing: content-box;
  background: rgba(212, 165, 116, 0.05);
}
.an-btn-close:hover{
 border-color: rgba(212, 165, 116, 0.6);
 color: var(--an-gold-bright);
}

h2.modal-title{
	color: var(--an-gold);
}



div#globalModalBody.modal-body > div.list-group > div.an-list > div.an-list-item > h2{
	color: var(--an-gold);
}
/* ============================================================
   ALBUM COVER
   ============================================================ */
.an-album-cover-link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.an-album-cover {
  max-width: 250px;
  width: 100%;
  display: block;
  transition: transform 0.5s var(--an-transition);
}

.an-album-cover-link:hover .an-album-cover {
  transform: scale(1.05);
}

.an-album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent, transparent);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}

.an-album-cover-link:hover .an-album-overlay {
  opacity: 1;
}

.an-album-overlay-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  transform: translateY(8px);
  transition: transform 0.4s var(--an-transition);
}

.an-album-cover-link:hover .an-album-overlay-text {
  transform: translateY(0);
}

/* ============================================================
   LIST ITEMS (Lieder, Interpreten)
   ============================================================ */
.an-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.an-list-item {
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.an-list-item:last-child {
  border-bottom: none;
}

.an-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  color: inherit;
  transition: all 0.2s;
}

.an-list-link:hover {
  color: inherit;
}

.an-list-link:hover .an-list-text {
  color: var(--an-gold);
}

.an-list-link:hover .an-list-dot {
  background: var(--an-gold);
}

.an-list-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.3);
  flex-shrink: 0;
  margin-right: 0.625rem;
  transition: background 0.2s;
}

.an-list-text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.2s;
}

.an-list-date {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.25);
  flex-shrink: 0;
  margin-left: 0.75rem;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   ALBUM ROW (Neue Alben)
   ============================================================ */
.an-album-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem;
  margin: 0 -0.625rem;
  border-radius: 0.75rem;
  color: inherit;
  transition: all 0.3s var(--an-transition);
}

.an-album-row:hover {
  background: rgba(212, 165, 116, 0.05);
  color: inherit;
}

.an-album-row + .an-album-row {
  margin-top: 0.5rem;
}

.an-album-thumb {
  width: 68px;
  height: 68px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(212, 165, 116, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s;
}

.an-album-row:hover .an-album-thumb {
  border-color: rgba(212, 165, 116, 0.25);
}

.an-album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--an-transition);
}

.an-album-row:hover .an-album-thumb img {
  transform: scale(1.1);
}

.an-album-info {
  flex: 1;
  min-width: 0;
}

.an-album-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(212, 165, 116, 0.5);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.25rem;
}

.an-album-name {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.4;
  transition: color 0.2s;
}

.an-album-row:hover .an-album-name {
  color: var(--an-gold);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.an-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.an-section-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.15), transparent);
}

.an-section-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.an-footer {
  margin-top: 3rem;
  background: var(--an-bg-darker);
}

.an-footer-link {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.an-footer-link:hover {
  color: var(--an-gold);
}

.an-footer-sep {
  color: rgba(212, 165, 116, 0.15);
}

.an-footer-copy {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.3);
}

.an-footer-link-gold {
  color: rgba(212, 165, 116, 0.5);
  transition: color 0.3s;
}

.an-footer-link-gold:hover {
  color: var(--an-gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.an-fade-in {
  animation: fadeIn 0.6s var(--an-transition) both;
}

.an-fade-in-up {
  animation: fadeInUp 0.6s var(--an-transition) both;
}

/* ============================================================
   PAGE LAYOUT (for subpages - page.html)
   ============================================================ */
.an-page-hero {
  position: relative;
  height: 180px;
  overflow: hidden;
}

@media (min-width: 768px) { .an-page-hero { height: 220px; } }

.an-page-title {
  font-family: var(--an-font-serif);
  font-size: 1.5rem;
  color: var(--an-text-primary);
  letter-spacing: 0.02em;
  margin: 0;
}

@media (min-width: 768px) { .an-page-title { font-size: 1.875rem; } }

.an-page-content {
  min-height: 400px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Loading Spinner */
.an-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem 0;
}

.an-spinner-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-top-color: var(--an-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.an-spinner-text {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.3);
}

/* ============================================================
   VMA CONTENT STYLES (for proxied content)
   ============================================================ */
.vma-content {
  color: rgba(245, 240, 232, 0.8);
  font-family: var(--an-font-sans);
  line-height: 1.7;
}

.vma-content h1,
.vma-content h2,
.vma-content h3,
.vma-content h4 {
  font-family: var(--an-font-serif);
  color: var(--an-gold);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.vma-content h1 { font-size: 1.75rem; }
.vma-content h2 { font-size: 1.4rem; }
.vma-content h3 { font-size: 1.15rem; }

.vma-content a {
  color: var(--an-gold);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.vma-content a:hover {
  color: var(--an-gold-bright);
}

/* Tables */
.vma-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1rem 0;
  font-size: 0.875rem;
}

.vma-content table thead th {
  background: rgba(212, 165, 116, 0.08);
  color: var(--an-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
  white-space: nowrap;
}

.vma-content table tbody tr {
  transition: background 0.2s;
}

.vma-content table tbody tr:hover {
  background: rgba(212, 165, 116, 0.04);
}

.vma-content table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.06);
  color: rgba(245, 240, 232, 0.7);
  vertical-align: middle;
}

.vma-content table tbody td a {
  color: rgba(245, 240, 232, 0.8);
  transition: color 0.2s;
}

.vma-content table tbody td a:hover {
  color: var(--an-gold);
}

/* Images */
.vma-content img {
  border-radius: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 100%;
  height: auto;
}

.vma-content a:hover img {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
}

/* Panels / Boxes */
.vma-content .panel,
.vma-content .box {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 165, 116, 0.1);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.vma-content .panel-heading,
.vma-content .box-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.08);
}

.vma-content .panel-body,
.vma-content .box-body {
  padding: 1.25rem;
}

.vma-content .box-title {
  font-family: var(--an-font-serif);
  color: var(--an-gold);
  font-size: 1.15rem;
  margin: 0;
}

/* Grid */
.vma-content .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.vma-content [class*="col-"] {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-bottom: 1.5rem;
}

.vma-content .col-md-4 { width: 33.333%; }
.vma-content .col-md-6 { width: 50%; }
.vma-content .col-md-12,
.vma-content .col-lg-12 { width: 100%; }
.vma-content .col-lg-6 { width: 50%; }

@media (max-width: 768px) {
  .vma-content .col-md-4,
  .vma-content .col-md-6,
  .vma-content .col-lg-6 {
    width: 100%;
  }
}

/* Description blocks */
.vma-content .description-block {
  padding: 1rem;
  text-align: center;
  border-right: none !important;
  transition: transform 0.3s, background 0.3s;
  border-radius: 0.5rem;
}

.vma-content .description-block:hover {
  background: rgba(212, 165, 116, 0.05);
  transform: translateY(-2px);
}

.vma-content .description-block img {
  display: block;
  margin: 0 auto 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vma-content .description-block a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.875rem;
  line-height: 1.4;
}

.vma-content .description-block a:hover {
  color: var(--an-gold);
}

/* Buttons */
.vma-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: 1px solid rgba(212, 165, 116, 0.2);
  color: var(--an-gold);
  background: transparent;
  cursor: pointer;
}

.vma-content .btn:hover {
  background: rgba(212, 165, 116, 0.08);
  border-color: rgba(212, 165, 116, 0.35);
}

.vma-content .btn-link { border: none; padding: 0.25rem 0.5rem; }
.vma-content .btn-box-tool { background: transparent; border: none; color: rgba(245, 240, 232, 0.3); padding: 0.25rem; font-size: 0.75rem; }

/* Labels / Badges */
.vma-content .label,
.vma-content .badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vma-content .label-info, .vma-content .badge-info { background: rgba(212, 165, 116, 0.15); color: var(--an-gold); }
.vma-content .label-success, .vma-content .badge-success { background: rgba(76, 175, 80, 0.15); color: #66bb6a; }
.vma-content .label-warning, .vma-content .badge-warning { background: rgba(255, 152, 0, 0.15); color: #ffa726; }
.vma-content .label-danger, .vma-content .badge-danger { background: rgba(244, 67, 54, 0.15); color: #ef5350; }

/* Forms */
.vma-content input[type="text"],
.vma-content input[type="email"],
.vma-content input[type="password"],
.vma-content input[type="search"],
.vma-content textarea,
.vma-content select {
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--an-border-gold);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--an-text-primary);
  font-size: 0.875rem;
  transition: border-color 0.2s;
  width: 100%;
  max-width: 300px;
}

.vma-content input:focus,
.vma-content textarea:focus,
.vma-content select:focus {
  border-color: rgba(212, 165, 116, 0.35);
  outline: none;
}

/* Pagination */
.vma-content .pagination,
.vma-content .dataTables_paginate {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.vma-content .pagination li,
.vma-content .paginate_button { list-style: none; }

.vma-content .pagination a,
.vma-content .paginate_button a,
.vma-content .paginate_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  border: 1px solid rgba(212, 165, 116, 0.1);
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.vma-content .pagination .active a,
.vma-content .paginate_button.current {
  background: rgba(212, 165, 116, 0.15);
  color: var(--an-gold);
  border-color: rgba(212, 165, 116, 0.3);
}

.vma-content .pagination a:hover,
.vma-content .paginate_button:hover {
  background: rgba(212, 165, 116, 0.08);
  color: var(--an-gold);
}

/* DataTables */
.vma-content .dataTables_info { color: rgba(245, 240, 232, 0.3); font-size: 0.8rem; margin-top: 0.75rem; }
.vma-content .dataTables_length,
.vma-content .dataTables_filter { margin-bottom: 1rem; color: rgba(245, 240, 232, 0.4); font-size: 0.85rem; }
.vma-content .dataTables_length select,
.vma-content .dataTables_filter input { max-width: 150px; display: inline-block; }

/* Utilities */
.vma-content .text-center { text-align: center; }
.vma-content .text-right { text-align: right; }
.vma-content .text-muted { color: rgba(245, 240, 232, 0.35); }
.vma-content .pull-right { float: right; }
.vma-content .border-right { border-right: none !important; }
.vma-content .border-0 { border: none !important; }
.vma-content .center-block { display: block; margin-left: auto; margin-right: auto; }

/* Hide unnecessary elements */
.vma-content .modal,
.vma-content .navbar,
.vma-content .sidebar,
.vma-content .main-header,
.vma-content .main-footer,
.vma-content script,
.vma-content noscript,
.vma-content .breadcrumb { display: none !important; }

/* Font Awesome fallback */
.vma-content .fa { display: inline-block; width: 1em; height: 1em; }
.vma-content .fa-minus::before { content: "\2212"; }
.vma-content .fa-plus::before { content: "+"; }

/* Responsive tables */
@media (max-width: 768px) {
  .vma-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ============================================================
   DATATABLES DARK THEME OVERRIDES
   ============================================================ */
.dataTables_wrapper {
  color: var(--an-text-primary);
}

.dataTables_wrapper .dataTables_filter input {
  background: rgba(26, 26, 46, 0.6) !important;
  border: 1px solid var(--an-border-gold) !important;
  color: var(--an-text-primary) !important;
  border-radius: 8px !important;
  padding: 0.5rem 1rem !important;
  transition: border-color 0.3s;
}

.dataTables_wrapper .dataTables_filter input:focus {
  border-color: var(--an-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.15) !important;
}

.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_info {
  color: var(--an-text-muted) !important;
  font-family: var(--an-font-sans);
  font-size: 0.875rem;
}

.dataTables_wrapper .dataTables_length select {
  background: rgba(26, 26, 46, 0.6) !important;
  border: 1px solid var(--an-border-gold) !important;
  color: var(--an-text-primary) !important;
  border-radius: 6px !important;
  padding: 0.25rem 0.5rem !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: transparent !important;
  border: 1px solid var(--an-border-gold) !important;
  color: var(--an-text-muted) !important;
  border-radius: 6px !important;
  margin: 0 2px !important;
  padding: 0.4rem 0.8rem !important;
  transition: all 0.3s;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: rgba(212, 165, 116, 0.1) !important;
  border-color: var(--an-gold) !important;
  color: var(--an-gold) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--an-gold) !important;
  border-color: var(--an-gold) !important;
  color: var(--an-bg-deep) !important;
  font-weight: 600;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
}

table.dataTable thead th {
  border-bottom: 2px solid var(--an-gold) !important;
  color: var(--an-gold) !important;
  font-family: var(--an-font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem !important;
}

table.dataTable tbody td {
  border-color: rgba(212, 165, 116, 0.06) !important;
  color: var(--an-text-primary);
  font-family: var(--an-font-sans);
  font-size: 0.9rem;
  padding: 0.65rem 1rem !important;
  vertical-align: middle;
}

table.dataTable tbody tr:hover td {
  background: rgba(212, 165, 116, 0.06) !important;
}

table.dataTable tbody td a {
  color: var(--an-gold-bright);
  text-decoration: none;
  transition: color 0.3s;
}

table.dataTable tbody td a:hover {
  color: var(--an-gold);
  text-decoration: underline;
}

table.table-dark {
  --bs-table-bg: transparent !important;
  --bs-table-hover-bg: rgba(212, 165, 116, 0.06) !important;
  --bs-table-border-color: rgba(212, 165, 116, 0.06) !important;
}

/* DataTables sorting icons */
table.dataTable thead .sorting::before,
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::before,
table.dataTable thead .sorting_desc::after {
  opacity: 0.3;
}

table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_desc::after {
  opacity: 0.8;
  color: var(--an-gold);
}


/* ====
 * Autocomplete
 */

ul.ui-widget.ui-widget-content{
	border: 1px solid rgba(212, 165, 116, 0.08) !important;
	border-radius: 5px !important;
	padding: 10px;
	background: rgba(245, 240, 232,0.9) !important;
}
div#searchFront{

}
li.ui-menu-item a{
	width: 100%;
	display: block;
}
.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: var(--an-gold) !important;
    font-weight: bold !important;
    color: rgba(245, 240, 232, 0.8); !important;
    border: 1px solid rgba(212, 165, 116, 0.08) !important;
	border-radius: 5px !important;
} 

