/* SECCIÓN: VISIÓN */
#vision-section .vision-content {
    position: relative;
    overflow: hidden;
  }
  
  #vision-section .text-image-section {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 40px;
  }
  
  #vision-section .section-text {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    z-index: 1;
  }
  
  #vision-section .text-image-section:nth-child(even) { 
    flex-direction: row-reverse; 
  }
  
  #vision-section .text-image-section:nth-child(even) h3:before {
    background: linear-gradient(to left, var(--primary), transparent);
  }
  
  /* =======================================================
   VISION SECTION IMPROVEMENTS
======================================================= */
/* Background for Vision page */
#vision-section::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/komatsuretro.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: 0;
}

#vision-section {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--top-bar-height) - var(--footer-height));
}

/* Add white background container to vision content */
#vision-section .vision-content {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 30px;
}

#vision-section p:first-of-type {
  margin-top: 20px;
}

.vision-cards-container {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.vision-card {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: float 5s ease-in-out infinite;
}

.vision-card:nth-child(2) {
  animation-delay: 1s;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.vision-card-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.vision-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
  position: relative;
}

.vision-card h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px;
}

.vision-card p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.vision-card strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  .vision-cards-container {
    flex-direction: column;
  }
}

/* =======================================================
   FONT SETTINGS & GLOBAL APPLICATION (Noto Sans JP)
======================================================= */

body, 
input, 
button, 
textarea, 
select,
.menu-item, 
.top-bar h2, 
.chart-title, 
p, h1, h2, h3, h4, h5, h6,
.sidebar {
  font-family: var(--font-family) !important;
}

h3, h4, h5, .chart-title {
  font-weight: 500;
}

p, .menu-item, input, button, textarea, select {
  font-weight: 400;
}

.footer, 
.modal-content, 
.tooltip, 
.chart-legend, 
.bar-label,
.heatmap-legend-label {
  font-family: var(--font-family) !important;
}