/* === CONTACT SECTION === */
.contact-section {
  position: relative;
  display: flex;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  
}

/* === VIDEO BACKGROUND (ALWAYS PRESENT, INITIALLY COVERED) === */
.contact-video {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;        /* only take right half */
  height: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.contact-video video {
  height: 95vh;       /* show tall mobile-size video */
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

/* === CONTACT INFO PANEL (SLIDES TO REVEAL VIDEO) === */
.contact-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Full width initially */
  height: 100%;
  z-index: 2;
  padding: 4rem 3rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: width 1.5s ease;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* Text Styling */
.contact-info h2 {
  font-size: 3.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-info h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #fff;
  margin-top: 0.8rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 2rem;
  white-space: pre-line;
  color: #eeeeee;
}

.contact-info p::before {
  content: "・";
  margin-right: 0.5em;
  color: #f2c1c1;
}

/* === ANIMATION STATE === */
.contact-section.animate .contact-info {
  width: 50%; /* Slides to reveal the video */
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block h3 {
  font-size: 1.2rem;
  color: #c09f67;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-block p {
  font-size: 1rem;
  margin: 0;
  color: #eeeeee;
  line-height: 1.8;
}

.contact-block .small-text {
  font-size: 0.9rem;
  color: #bbbbbb;
  margin-top: 0.4rem;
}

.contact-info a {
  color: #c09f67;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #fff5d1;
  text-decoration: none;
}
