body.splash{ background: radial-gradient(
    at var(--bg-lightsource-left) var(--bg-lightsource-height),
    var(--bg-highlight-color) 20%,
    var(--bg-shaddow-color) 100%
  );
  transform: radial-gradient(
    at var(--bg-lightsource-left) var(--bg-lightsource-height),
    var(--bg-highlight-color) 20%,
    var(--bg-shaddow-color) 100%
  );
  animation: shiftLightSource 2s ease-in;}

/* Fade and zoom animation for header on splash page */
.dw-header.splash {
  opacity: 0;
  transform: translateY(-100px);
  padding:10px 10px 0 10px;
  animation: headerBounce 1s cubic-bezier(0.68, -0.25, 0.265, 1.55) 2s forwards;
}

@keyframes headerBounce {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-splash-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.login_arrow {transform: rotate(45deg); scale: 0.6; fill: var(--bg-shaddow-color)}

.iconBTN {
    width: 140px;
    height: 40px;
    border-radius: 40px;
    border: none;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    text-decoration: none;
    padding-left:5px
}

.IconContainer {
  width: 30px;
  height: 30px;
  background: linear-gradient(to right, var(--bg-shaddow-color-internal), var(--bg-highlight-color) );
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition-duration: 0.3s;
  margin-right:10px
}


.iconBTN > .text {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    color: var(--dw-dark-teal);
    z-index: 1;
    transition-duration: 0.3s;
    font-family: "BebasNeue", sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    padding-top: 3px;
    
}

.iconBTN:hover .IconContainer {
  width: 100%;
  transition-duration: 0.3s;
}
.iconBTN:hover .login_arrow 
 {
 scale: 0.9;
}

.iconBTN:hover .text {
  transform: translate(10px);
  width: 0;
  transition-duration: 0.3s;
}

.iconBTN:active {
  transform: scale(0.95);
  transition-duration: 0.3s;
}

@keyframes fadeInButtons {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.splash-page {
  min-height: calc(100vh - var(--header-height));
  width: 100%;
  display: flex;
  flex-direction: column;
}


.splash-logo {
  width: fit-content;
  margin: auto;
  position: relative;
  font-size: 90px;
  font-family: "BebasNeue", sans-serif;
  color: #9ab5be;
}


@keyframes shiftLightSource {
  0% {
    --bg-lightsource-left: 100%;
    --bg-lightsource-height: -40%;
  }
  100% {
    --bg-lightsource-left: 20%;
    --bg-lightsource-height: -20%;
  }
}

.splash-page .page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.splash-page ~ .App-footer {
  margin-top: auto;
}
.App-footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: white;
    height: 30px;
}

#dwIcon {
  width: 300px;
  transform: rotate(40deg);
  position: absolute;
  top: -141px;
  left: -152px;
  scale: 0.6;
  display: block;
  -webkit-filter: drop-shadow(
      var(--section-highlight-horizontal) var(--section-highlight-vertical) 1px
        rgba(255, 255, 255, 0.6)
    )
    drop-shadow(
      var(--section-shadow-horizontal) var(--section-shadow-vertical) 1px
        rgba(1, 37, 49, 0.3)
    );

  filter: drop-shadow(
      var(--section-highlight-horizontal) var(--section-highlight-vertical) 1px
        rgba(255, 255, 255, 0.6)
    )
    drop-shadow(
      var(--section-shadow-horizontal) var(--section-shadow-vertical) 1px
        rgba(1, 37, 49, 0.3)
    );

  animation: shiftSegmentLightSource 2s cubic-bezier(0.4, 0, 0.2, 1);
  fill: white;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.logo-text {
  color: #ffffff;
  letter-spacing: 0.1em;
  background-color: #8ba6af;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--text-shadow-horizontal) var(--text-shadow-vertical) 2.5px
    rgba(245, 245, 245, 1);
  opacity: 1;
  animation: shiftSegmentLightSourceText 2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline;
}

.logo-text-small {
  color: #ffffff;
  letter-spacing: 0.1em;
  background-color: #8ba6af;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--text-shadow-horizontal) var(--text-shadow-vertical) 2.5px
    rgba(245, 245, 245, 1);
  opacity: 1;
  animation: shiftSegmentLightSourceText 2s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.arcOuter,
.arcInner {
  display: none;
}


@keyframes shiftSegmentLightSource {
  0% {
    --section-shadow-horizontal: -3px;
    --section-shadow-vertical: 140px;
    --section-highlight-horizontal: 5px;
    --section-highlight-vertical: -3px;
    opacity: 0;
    transform: rotate(20deg);
  }

  50% {
    --section-shadow-horizontal: 0px;
    --section-highlight-horizontal: -1.5px;
    --section-highlight-vertical: -3px;
    scale: 1.3;
    opacity: 0;
  }
  75% {
    --section-shadow-vertical: 1px;
    opacity: 1;
    scale: 0.6;
  }

  100% {
    --section-shadow-horizontal: 5px;
    --section-shadow-vertical: 1px;
    --section-highlight-horizontal: -5px;
    --section-highlight-vertical: -1px;
    transform: rotate(40deg);
  }
}
@keyframes shiftSegmentLightSourceText {
  0% {
    opacity: 0;
    --text-shadow-horizontal: -1px;
  }
  35% {
    opacity: 1;
  }

  100% {
    --text-shadow-horizontal: 1px;
  }
}

#segment-1Outer {
  scale: 0.92;
  animation: segmentEnter2 2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}
#segment-3Outer {
  scale: 1.03;
  animation: segmentEnter1 2s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}
#segment-4Outer {
  scale: 0.72;
  animation: segmentEnter4 1.75s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
#segment-0Inner {
  scale: 1;
  animation: segmentEnter3 2s cubic-bezier(0.4, 0, 0.2, 1) 0.25s both;
}
#segment-1Inner {
  scale: 0.89;
}
#segment-2Inner {
  scale: 0.4;
}
#segment-3Inner {
  scale: 0.65;
}

@keyframes segmentEnter1 {
  0% {
    scale: 0;
    opacity: 0;
  }
  50% {
    scale: 0.8;
    opacity: 1;
  }
  100% {
    scale: 1.03;
    opacity: 1;
  }
}

@keyframes segmentEnter2 {
  0% {
    scale: 0;
    opacity: 0;
  }
  50% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0.92;
    opacity: 1;
  }
}
@keyframes segmentEnter3 {
  0% {
    scale: 0;
    opacity: 0;
  }
  50% {
    scale: 1.2;
    opacity: 1;
  }
  100% {
    scale: 1;
    opacity: 1;
  }
}
@keyframes segmentEnter4 {
  0% {
    scale: 0;
    opacity: 0;
  }
  50% {
    scale: 1;
    opacity: 1;
  }
  100% {
    scale: 0.72;
    opacity: 1;
  }
}

/* Pricing Page Styles */
.pricing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}



.pricing-page > p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}


.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--dw-dark-teal);
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dw-dark-teal);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

    .pricing-card li {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-colour);
        color: #666;
    }

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-card button {
  background-color: var(--dw-dark-teal);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.pricing-card button:hover {
  background-color: #1f4a54;
}


.pricing-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
}

.pricing-card h4 {
  font-size: 0.9rem;
  color: var(--dw-dark-teal);
  text-align: left;
  margin-bottom: 5px;
  font-weight: 600;
}

.pricing-summary {
  font-size: 0.85rem;
  color: #444;
  font-style: italic;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.pricing-phone {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--dw-dark-teal);
  text-decoration: none;
  font-weight: 500;
}

.pricing-phone:hover {
  text-decoration: underline;
}

/* About Forerunner Section */
.about-forerunner {
 
  margin: 60px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--border-radius);

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.forerunner-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.forerunner-logo {
  width: 60px;
  height: auto;
}

.forerunner-logo-title {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.about-forerunner p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    text-align: left;
}

.about-forerunner p:last-of-type {
  margin-bottom: 0;
}

.about-forerunner .contact-info {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.95rem;
}

.about-forerunner .contact-info a {
  color: var(--dw-dark-teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.about-forerunner .contact-info a:hover {
  color: var(--dw-dark-teal-hover);
  text-decoration: underline;
}

/* Tutorials Page Styles */
.tutorials-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}



.tutorials-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tutorial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.tutorial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tutorial-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dw-dark-teal);
  margin-bottom: 15px;
  opacity: 0.3;
}

.tutorial-card h3 {
  font-size: 1.5rem;
  color: var(--dw-dark-teal);
  margin-bottom: 15px;
}

.tutorial-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tutorial-link {
  color: var(--dw-dark-teal);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  align-self: flex-start;
}

.tutorial-link:hover {
  color: #1f4a54;
}
.strapline {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 1.8rem;
    color: #5396a9;
    letter-spacing: 3px;
    line-height: 33px;
    opacity: 0;
    transform: translateX(-30px);
}
.strapline-wrapper {
    position: relative
}
/* 15s total cycle: 5s per strapline (0-33.3%, 33.3%-66.6%, 66.6%-100%) */
/* strapline-1: visible 0%-33.3% */
#strapline-1 {
    animation: straplineFirst 15s ease-in-out 5s infinite;
}

@keyframes straplineFirst {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  2% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  33.3% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 0;
    transform: translateX(30px);
  }
}

/* strapline-2: visible 33.3%-66.6% */
#strapline-2 {
  animation: straplineSecond 15s ease-in-out 5s infinite;
}

@keyframes straplineSecond {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  33.3% {
    opacity: 0;
    transform: translateX(-30px);
  }
  35.3% {
    opacity: 1;
    transform: translateX(0);
  }
  63.6% {
    opacity: 1;
    transform: translateX(0);
  }
  66.6% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 0;
    transform: translateX(30px);
  }
}

/* strapline-3: visible 66.6%-100% */
#strapline-3 {
  animation: straplineThird 15s ease-in-out 5s infinite;
}

@keyframes straplineThird {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  66.6% {
    opacity: 0;
    transform: translateX(-30px);
  }
  68.6% {
    opacity: 1;
    transform: translateX(0);
  }
  97% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(30px);
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .pricing-page > p, .tutorials-intro {
    font-size: 1rem;
  }

  .pricing-cards,
  .tutorials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .pricing-page,
  .tutorials-page {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
    .strapline {
        top: 40px;
    }

        h2 {
    font-size: 1.5rem;
  }

  .pricing-page,
  .tutorials-page {
    padding: 70px 10px;
  }

  .pricing-card,
  .tutorial-card {
    padding: 20px;
  }

  .pricing-card button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

    /* Media query for portrait tablet and below */
    @media (max-width: 1024px) {
        .strapline-wrapper {
            position: absolute;
            bottom: 0px;
            left: -80px;
        }
        .strapline {
            text-align: center;
            top: 30px;
            left: -50px;
            width: 300px;
        }
        .strapline-wrapper .hr-rule {
            border-top: 1px solid #5396a961;
            width: 200px;
        }
            .splash-logo {
                margin: auto calc(50% - 60px);
            }

        .logo-text {
            display: none;
        }

        .logo-text-small {
            display: inline;
        }

        #dwIcon {
            scale: 0.4;
        }
    }

    /* Media query for above tablet width */
    @media (min-width: 1025px) {
        .logo-text {
            display: inline;
        }

        .logo-text-small {
            display: none;
        }

        .header-splash-buttons {
            gap: 30px;
            margin-right: 20px;
            margin-top: 10px;
        }
    }

