/*===================================== 

YOU CAN WRIGHT CUSTOME CSS 

======================================*/

/* Force light mode - prevent dark mode from device settings */
:root {
  color-scheme: light only;
}

html,
body {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Fix header layout on small screens (400px and below) */
@media only screen and (max-width: 400px) {
  /* Hide email/phone section to save space */
  .wt-header-left {
    display: none !important;
  }

  /* Ensure logo and menu button stay on same row */
  .header-center {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .wt-header-center {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .wt-header-right {
    flex: 0 0 auto !important;
  }

  /* Remove table display so logo respects flex container */
  .logo-header {
    display: block !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
  }

  .logo-header-inner {
    display: block !important;
    height: auto !important;
  }

  /* Reduce logo size to fit on small screens */
  .logo-header img {
    max-width: 130px !important;
    width: auto !important;
    height: auto !important;
  }
}

/* ==============================
   VIDEO HERO SECTION
   ============================== */
.video-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 150px;
  max-width: 860px;
}

.video-hero-tag {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.video-hero-title {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.video-hero-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  color: #fff;
  margin-bottom: 32px;
  max-width: 600px;
}

.video-hero-btn {
  display: inline-block;
}

@media only screen and (max-width: 991px) {
  .video-hero-content {
    padding: 0 30px;
  }
  .video-hero-title {
    font-size: 38px;
  }
}

@media only screen and (max-width: 480px) {
  .video-hero-title {
    font-size: 28px;
  }
  .video-hero-subtitle {
    font-size: 14px;
  }
}
