/* ==============================
   ABOUT & PHILOSOPHY COMBINED
============================== */
.fullscreen {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-3d-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(190, 168, 38, 0.4);
  z-index: 1;
  transition: background 0.5s ease;
}

.day-mode .intro-overlay {
  background: rgba(200,220,180,0.3);
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #080b33;
  max-width: 800px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.day-mode .intro-content {
  color: #968539;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}
