/* Process Section Styles matching Figma Prototype */

.process-banner-wrapper {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 550px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 30px;
}

.process-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.process-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.process-center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-video-btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.3s ease;
}

.play-video-btn:hover {
  transform: scale(1.08);
}

.process-bottom-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.process-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .process-banner-wrapper {
    height: 55vh;
    min-height: 400px;
  }
  .play-video-btn {
    width: 56px;
    height: 56px;
  }
  .process-title {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
