/* ============================
   GLOBAL / UTILITIES
============================ */

.responsive-image {
    width: 100%;
    height: auto;
}

/* Table hover (used site-wide) */
table.table-hover tbody tr:hover {
    background-color: #f0f8ff;
}

/* --------------------------------------------------
   ROBALLEN GLOBAL DESIGN SYSTEM
   Modern, light-mode, Electric-Blue artist identity
-------------------------------------------------- */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Color System */
:root {
  --ra-bg: #ffffff;
  --ra-text: #979797;
  --ra-text-muted: #6c757d;
  --ra-accent: #0050ff;        /* Electric Blue */
  --ra-accent-light: #e6eeff;
  --ra-border: #e2e6ea;
  --ra-shadow: rgba(0,0,0,0.08);
}

/* Typography */
body {
  background: var(--ra-bg);
  color: var(--ra-text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--ra-text);
}

/* ============================
   SHARED COMPONENTS
============================ */

/* Navbar stays above hero overlays */
.navbar {
    position: relative;
    z-index: 20;
}

/* Footer */
.ui-footer {
    background: #000;
}

.ui-footer p {
    color: #ffffff;
}

/* Rob Allen Navbar */
.ui-navbar {
  background: #b3a6f083;
  border-bottom: 1px solid var(--ra-border);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.ui-navbar .navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ra-text) !important;
}

.ui-navbar .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--ra-text-muted);
  margin-left: 1rem;
  position: relative;
  padding-bottom: 4px;
}

.ui-navbar .nav-link:hover,
.ui-navbar .nav-link.active {
  color: var(--ra-text) !important;
}

.ui-navbar .nav-link.active::after,
.ui-navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--ra-accent);
  border-radius: 2px;
}


/* Hero */
.ui-hero-shared {
  position: relative;
  z-index: 1;
  background-color: #4A6370; /* slate blue base */
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.35)),
    url('/images/ui-texture.jpg'); /* placeholder texture */
  background-size: cover;
  background-position: center;
  color: #F7F9FA;
}

.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 540px;
  margin: 0 auto;
}


.ui-vertical-tabs .nav-link {
  background: #F3E3D3;
  border: 1px solid #D6C4B5;
  margin-bottom: 6px;
  color: #2E3A40;
  font-family: "Georgia", serif;
  border-radius: 6px;
}

.ui-vertical-tabs .nav-link.active {
  background: #EBD3BD;
  font-weight: bold;
  border-left: 4px solid #4A6370;
}


.ui-modal-light {
  background: #ffffff;
  color: #2E3A40;
  border-radius: 12px;
  border: 1px solid #DDE5EA;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-family: "Georgia", serif;
}

.ui-modal-light .modal-header {
  border-bottom: 1px solid #E6ECF0;
  background: linear-gradient(to bottom, #F7F9FA, #EEF3F6);
}

.ui-modal-light .modal-body {
  line-height: 1.6;
  font-size: 1.05rem;
}

.ui-modal-light a {
  color: #4A6370;
  text-decoration: underline;
}

