/* ============================
   GLOBAL / UTILITIES
============================ */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
}

/* ============================
   SHARED COMPONENTS
============================ */

/* Navbar stays above hero overlays */
.navbar {
    position: relative;
    z-index: 20;
}

/* Footer */
.ui-footer {
    background: #000;
}

.ui-footer p {
    color: #ffffff;
}


/* ============================================
   KINETIC4MUSIC VERTICAL TABS
   Warm browns, subtle gradients, Georgia serif
=============================================== */

.ui-vertical-tabs .nav-link {
  background: linear-gradient(
      to bottom,
      rgba(120, 80, 50, 0.20),
      rgba(80, 50, 30, 0.30)
  );
  border: 1px solid rgba(120, 80, 50, 0.45);
  margin-bottom: 6px;
  color: #3b2a1f;
  font-family: "Georgia", serif;
  border-radius: 6px;
  padding: 8px 12px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  backdrop-filter: blur(2px);
}

.ui-vertical-tabs .nav-link:hover {
  background: linear-gradient(
      to bottom,
      rgba(140, 95, 60, 0.30),
      rgba(100, 70, 45, 0.40)
  );
  border-color: rgba(140, 95, 60, 0.55);
  color: #2a1d15;
  box-shadow: 0 0 6px rgba(120, 80, 50, 0.25);
}

/* Active tab */
.ui-vertical-tabs .nav-link.active {
  background: linear-gradient(
      to bottom,
      rgba(150, 105, 70, 0.40),
      rgba(110, 75, 50, 0.50)
  );
  border-color: rgba(150, 105, 70, 0.65);
  color: #2a1d15;
  font-weight: bold;
  border-left: 4px solid rgba(70, 45, 30, 0.65);
  box-shadow: 0 0 8px rgba(120, 80, 50, 0.35);
}

/* ============================================
   KINETIC4MUSIC HORIZONTAL TABS
   Warm browns, subtle gradients, Georgia serif
=============================================== */

#biosTabs .nav-link {
  background: linear-gradient(
      to bottom,
      rgba(120, 80, 50, 0.20),
      rgba(80, 50, 30, 0.30)
  );
  border: 1px solid rgba(120, 80, 50, 0.45) !important;
  color: #3b2a1f;
  font-family: "Georgia", serif;
  border-radius: 6px 6px 0 0; /* top-rounded, like a tab */
  margin-right: 6px;
  padding: 8px 14px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  backdrop-filter: blur(2px);
}

/* Hover */
#biosTabs .nav-link:hover {
  background: linear-gradient(
      to bottom,
      rgba(140, 95, 60, 0.30),
      rgba(100, 70, 45, 0.40)
  );
  border-color: rgba(140, 95, 60, 0.55) !important;
  color: #2a1d15;
  box-shadow: 0 0 6px rgba(120, 80, 50, 0.25);
}

/* Active tab */
#biosTabs .nav-link.active {
  background: linear-gradient(
      to bottom,
      rgba(150, 105, 70, 0.40),
      rgba(110, 75, 50, 0.50)
  ) !important;
  border-color: rgba(150, 105, 70, 0.65) !important;
  color: #2a1d15 !important;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(120, 80, 50, 0.35);
  border-bottom-color: transparent !important; /* seamless with content box */
}

/* Remove Bootstrap's default blue underline */
#biosTabs .nav-link.active::after {
  display: none !important;
}

/* Tab content box matches Recordings content aesthetic */
.tab-content {
  background: #ffffff;
  border: 1px solid #DDE5EA;
  border-radius: 0 8px 8px 8px;
  padding: 20px;
  margin-top: -1px; /* pull up to meet active tab */
  font-family: "Georgia", serif;
  line-height: 1.6;
}

/* ============================================
   KINETIC4MUSIC MODAL
=============================================== */

.ui-modal-kinetic {
    background: #ffffff;
    color: #3b2a1f;
    border-radius: 12px;
    border: 1px solid rgba(120, 80, 50, 0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    font-family: "Georgia", serif;
}

.ui-modal-kinetic .modal-header {
    background: linear-gradient(
        to bottom,
        rgba(120, 80, 50, 0.15),
        rgba(80, 50, 30, 0.25)
    );
    border-bottom: 1px solid rgba(120, 80, 50, 0.35);
    color: #2a1d15;
}

.ui-modal-kinetic .modal-body {
    line-height: 1.6;
    font-size: 1.05rem;
}

.ui-modal-kinetic a {
    color: #4A6370;
    text-decoration: underline;
}


/* ============================================
   KINETIC4MUSIC CONTACT FORM
   Warm browns, soft gradients, Georgia serif
=============================================== */

.ui-contact-form {
    background: linear-gradient(
        to bottom,
        rgba(120, 80, 50, 0.10),
        rgba(80, 50, 30, 0.15)
    );
    border: 1px solid rgba(120, 80, 50, 0.35);
    border-radius: 10px;
    padding: 24px 28px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
    backdrop-filter: blur(2px);
    font-family: "Georgia", serif;
}

/* Labels */
.ui-contact-form .form-label {
    color: #3b2a1f;
    font-weight: bold;
    letter-spacing: 0.02em;
}

/* Inputs + textarea */
.ui-contact-form .form-control {
    border: 1px solid rgba(120, 80, 50, 0.35);
    border-radius: 6px;
    background: rgba(255,255,255,0.85);
    font-family: "Georgia", serif;
    color: #3b2a1f;
    transition: all 0.25s ease;
}

.ui-contact-form .form-control:focus {
    border-color: rgba(150, 105, 70, 0.65);
    box-shadow: 0 0 6px rgba(120, 80, 50, 0.35);
    background: #ffffff;
}

/* Buttons */
.ui-contact-form .btn-primary {
    background: linear-gradient(
        to bottom,
        rgba(150, 105, 70, 0.85),
        rgba(110, 75, 50, 0.95)
    );
    border: 1px solid rgba(120, 80, 50, 0.55);
    font-family: "Georgia", serif;
    letter-spacing: 0.02em;
}

.ui-contact-form .btn-primary:hover {
    background: linear-gradient(
        to bottom,
        rgba(160, 115, 80, 0.95),
        rgba(120, 85, 55, 1)
    );
}

.ui-contact-form .btn-secondary {
    background: rgba(80, 50, 30, 0.25);
    border: 1px solid rgba(120, 80, 50, 0.45);
    color: #3b2a1f;
    font-family: "Georgia", serif;
}

.ui-contact-form .btn-secondary:hover {
    background: rgba(100, 70, 45, 0.35);
    border-color: rgba(140, 95, 60, 0.55);
}

/* Modal matches Kinetic style */
#contactModal .modal-content {
    border-radius: 12px;
    border: 1px solid rgba(120, 80, 50, 0.35);
    background: #ffffff;
    font-family: "Georgia", serif;
}

#contactModal .modal-footer .btn-secondary {
    background: rgba(80, 50, 30, 0.25);
    border: 1px solid rgba(120, 80, 50, 0.45);
    color: #3b2a1f;
}

#contactModal .modal-footer .btn-secondary:hover {
    background: rgba(100, 70, 45, 0.35);
}
