/* ============================
   GLOBAL / UTILITIES
============================ */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* Table hover (used site-wide) */
table.table-hover tbody tr:hover {
    background-color: #f0f8ff;
}

/* ============================
   SHARED COMPONENTS
============================ */

/* Navbar stays above hero overlays */
.navbar {
    position: relative;
    z-index: 20;
}


/* KNR Winery-Style Navbar */
.ui-navbar {
  background-color: #4B2E1E; /* deep warm brown */
  border-bottom: 1px solid #3E2518;
}

.ui-navbar .navbar-brand,
.ui-navbar .nav-link {
  color: #F3E3D3 !important; /* warm beige text */
  font-family: "Georgia", serif;
}

.ui-navbar .nav-link:hover,
.ui-navbar .nav-link.active {
  color: #FFFFFF !important;
  text-decoration: underline;
}

.ui-navbar .navbar-toggler {
  border-color: #F3E3D3;
}

.ui-navbar .navbar-toggler-icon {
  filter: invert(90%);
}

.ui-navbar .navbar-brand {
  letter-spacing: 0.08em;
}

.ui-navbar .nav-link {
  color: #C9D6DF;
}


/* Hero: textured, cool, winery-evening vibe */
.ui-hero-shared {
  position: relative;
  z-index: 1;
/*  min-height: 45vh; */
  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;
}

