/* ============================
   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;
}


/* ============================================
   ROBALLEN CONTACT FORM
   Modern, light-mode, Electric-Blue identity
=============================================== */

.ui-contact-form {
    background: linear-gradient(
        to bottom,
        rgba(0, 80, 255, 0.06),
        rgba(0, 80, 255, 0.10)
    );
    border: 1px solid rgba(0, 80, 255, 0.25);
    border-radius: 12px;
    padding: 26px 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    backdrop-filter: blur(2px);
    font-family: "Inter", sans-serif;
}

/* Labels */
.ui-contact-form .form-label {
    color: var(--ra-text);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
}

/* Inputs + textarea */
.ui-contact-form .form-control {
    border: 1px solid var(--ra-border);
    border-radius: 8px;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    color: var(--ra-text);
    padding: 0.65rem 0.85rem;
    transition: all 0.25s ease;
}

.ui-contact-form .form-control:focus {
    border-color: var(--ra-accent);
    box-shadow: 0 0 6px rgba(0, 80, 255, 0.35);
    background: #ffffff;
}

/* Buttons — fully custom, no Bootstrap look */
.ui-contact-form .btn {
    border-radius: 8px !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.65rem 1.35rem !important;
    font-size: 1rem;
    transition: all 0.22s ease;
}

/* Primary (Submit) */
.ui-contact-form .btn-primary {
    background: linear-gradient(
        to bottom,
        rgba(0, 80, 255, 0.90),
        rgba(0, 60, 200, 1)
    );
    border: 1px solid rgba(0, 60, 200, 0.85);
    color: #ffffff !important;
}

.ui-contact-form .btn-primary:hover {
    background: linear-gradient(
        to bottom,
        rgba(0, 90, 255, 1),
        rgba(0, 70, 220, 1)
    );
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 80, 255, 0.30);
}

/* Secondary (Cancel) */
.ui-contact-form .btn-outline-secondary {
    background: rgba(0, 80, 255, 0.06);
    border: 1px solid rgba(0, 80, 255, 0.25);
    color: var(--ra-text-muted) !important;
}

.ui-contact-form .btn-outline-secondary:hover {
    background: rgba(0, 80, 255, 0.12);
    border-color: rgba(0, 80, 255, 0.45);
    color: var(--ra-accent) !important;
    transform: translateY(-1px);
}

/* Modal matches Rob Allen style */
#contactModal .modal-content {
    border-radius: 12px;
    border: 1px solid rgba(0, 80, 255, 0.25);
    background: #ffffff;
    font-family: "Georgia", serif; /* matches your existing ui-modal-light */
}

#contactModal .modal-footer .btn-outline-secondary {
    background: rgba(0, 80, 255, 0.06);
    border: 1px solid rgba(0, 80, 255, 0.25);
    color: var(--ra-text-muted);
}

#contactModal .modal-footer .btn-outline-secondary:hover {
    background: rgba(0, 80, 255, 0.12);
    border-color: rgba(0, 80, 255, 0.45);
    color: var(--ra-accent);
}