.blacksmith-hero-wrapper {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 300px;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.blacksmith-hero-wrapper.hero-bg-none {
  background-color: #f5f5f5;
}
.blacksmith-hero-wrapper.hero-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blacksmith-hero-wrapper.hero-bg-video {
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .blacksmith-hero-wrapper.hero-bg-video {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .blacksmith-hero-wrapper.hero-bg-video {
    height: 60vh;
  }
}
.blacksmith-hero-wrapper__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.blacksmith-hero-wrapper__container {
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
@media (min-width: 769px) {
  .blacksmith-hero-wrapper__container {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .blacksmith-hero-wrapper__container {
    width: 70%;
  }
}
.blacksmith-hero-wrapper__title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .blacksmith-hero-wrapper__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .blacksmith-hero-wrapper__title {
    font-size: 1.5rem;
  }
}
.blacksmith-hero-wrapper__subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .blacksmith-hero-wrapper__subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .blacksmith-hero-wrapper__subtitle {
    font-size: 0.9rem;
  }
}
.blacksmith-hero-wrapper.hero-bg-video .blacksmith-hero__container {
  color: #ffffff;
  position: relative;
  z-index: 4;
}
.blacksmith-hero-wrapper.hero-bg-video .blacksmith-hero__title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #ffffff !important;
}
.blacksmith-hero-wrapper.hero-bg-video .blacksmith-hero__subtitle {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  color: #ffffff !important;
}
.blacksmith-hero-wrapper__cta-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  background-color: #4285f4;
  color: #ffffff;
  transition: 0.3s ease;
  cursor: pointer;
}
.blacksmith-hero-wrapper__cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.wp-block-editor .blacksmith-hero-wrapper.hero-bg-video {
  min-height: 400px;
}

.blacksmith-hero__video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.blacksmith-hero__video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100vw + 400px);
  height: calc(100vh + 400px);
  min-width: calc(100vw + 400px);
  min-height: calc(100vh + 400px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (min-aspect-ratio: 16/9) {
  .blacksmith-hero__video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 100vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .blacksmith-hero__video-background iframe {
    width: 177.7777777778vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
  }
}
@media (max-width: 768px) {
  .blacksmith-hero__video-background iframe {
    width: calc(100vw + 200px);
    height: calc(100vh + 200px);
    min-width: calc(100vw + 200px);
    min-height: calc(100vh + 200px);
  }
}
@media (max-width: 480px) {
  .blacksmith-hero__video-background iframe {
    width: calc(100vw + 100px);
    height: calc(100vh + 100px);
    min-width: calc(100vw + 100px);
    min-height: calc(100vh + 100px);
  }
}

.blacksmith-hero-wrapper.video-loading .blacksmith-hero__video-background iframe {
  opacity: 0;
}

.blacksmith-hero-wrapper.video-loaded .blacksmith-hero__video-background iframe {
  opacity: 1;
}

.blacksmith-hero-wrapper.video-error .blacksmith-hero__video-background {
  display: none;
}

.blacksmith-hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.blacksmith-hero__video-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: 1;
}

.blacksmith-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blacksmith-hero__cta-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  background-color: #4285f4;
  color: #ffffff;
  transition: 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.blacksmith-hero__cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.blacksmith-hero__cta-link:hover {
  text-decoration: none;
}
.blacksmith-hero__cta-link[style*="background-color: #cccccc"] {
  cursor: not-allowed;
  opacity: 0.7;
}
.blacksmith-hero__cta-link[style*="background-color: #cccccc"]:hover {
  transform: none;
  box-shadow: none;
}
/*# sourceMappingURL=main.css.map */
