﻿@charset "UTF-8";
/* Set a fluid base font size on the root element */
html {
  /* For example, font size will never be less than 16px,
   scales with the viewport, and never exceeds 20px */
  font-size: clamp(12px, 1.5vw + 1rem, 16px);
}

/* Apply some basic reset and typography defaults */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --body-font: "Segoe UI Variable", "Segoe UI", sans-serif ;
}

@media (max-width: 768px) {
  .responsive-table thead {
    display: none;
  }
  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table tr {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  .responsive-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .responsive-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #495057;
    flex: 0 0 auto;
    margin-right: 1rem;
  }
}
/* Headings using fluid typography */
h1 {
  font-size: clamp(2rem, 4vw + 1rem, 72px);
  font-family: "Helvetica Rounded";
  margin: 0.67em 0;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw + 1rem, 24px);
  font-family: "Helvetica Rounded";
  margin: 0.75em 0;
}

h3 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2rem);
  font-family: "Helvetica Rounded";
  margin: 0.83em 0;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw + 1rem, 1.75rem);
  font-family: "Helvetica Rounded";
  margin: 1.12em 0;
}

h5 {
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-family: "Helvetica Rounded";
  margin: 1.5em 0;
}

h6 {
  font-size: clamp(0.875rem, 1.5vw + 1rem, 1.25rem);
  font-family: "Helvetica Rounded";
  margin: 1.67em 0;
}

/* Paragraphs, lists, and other text elements */
p,
li,
a,
blockquote,
pre,
code {
  /* Example: text will scale from 1rem to about 1.125rem */
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
}

/* Optional: style for common HTML elements */
ul, ol {
  padding-left: 1.5rem;
  margin: 1em 0;
}

.btn-primary {
  color: white;
  border: none;
  padding: 0.25rem 0.75rem; /* Smaller padding */
  font-weight: 500;
  border-radius: 999px;
  transition: background-color 0.3s ease;
  display: inline-block;
  background-color: var(--bs-primary);
  text-decoration: none;
  font-size: 14px; /* Smaller font size */
  line-height: 1.2;
  text-align: center;
}

/* Extra small screens */
@media (max-width: 576px) {
  .btn-primary {
    padding: 0.2rem 0.6rem;
    font-size: 13px;
  }
}
/* Hover and focus styles */
.btn-primary:hover,
.btn-primary:focus {
  background-color: #a82c2c;
  color: white;
  text-decoration: none;
}

.btn-outline-secondary {
  color: var(--bs-secondary);
  background-color: transparent;
  border: 1px solid var(--bs-secondary);
  padding: 0.25rem 0.75rem; /* Compact padding */
  font-weight: 500;
  border-radius: 999px; /* Pill shape */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

/* Extra small screens (phones) */
@media (max-width: 576px) {
  .btn-outline-secondary {
    padding: 0.2rem 0.6rem;
    font-size: 13px;
  }
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--bs-secondary);
  color: white;
  text-decoration: none;
  border-color: var(--bs-secondary);
}

.btn-secondary {
  color: white;
  border-radius: 0.25rem; /* or use Bootstrap's default rounded */
  border: none;
  padding: 0.25rem 0.75rem; /* Compact padding */
  font-weight: 500;
  border-radius: 999px;
  transition: background-color 0.3s ease;
  display: inline-block;
  background-color: var(--bs-secondary);
  text-decoration: none;
  font-size: 14px; /* Compact font size */
  line-height: 1.2;
  text-align: center;
}

/* Extra small screens (phones) */
@media (max-width: 576px) {
  .btn-secondary {
    padding: 0.2rem 0.6rem;
    font-size: 13px;
  }
}
/* Optional: slightly larger on tablets and up */
@media (min-width: 577px) and (max-width: 768px) {
  .btn-secondary {
    padding: 0.25rem 0.75rem;
    font-size: 14px;
  }
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #7ca5c4; /* Slightly darker shade on hover */
  color: white;
  text-decoration: none;
}

footer {
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  border-top: 1px solid #e5e7eb;
}

.footer-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.icon {
  font-size: 1.125rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center !important; /* Force center alignment for all sections on mobile */
  }
  .footer-right {
    text-align: center !important;
  }
}
.typing-container {
  position: relative;
  display: inline-block;
  line-height: 100px;
  width: 100vw;
}

/* All phrases are absolutely positioned, so they overlap */
.typing-container span {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  opacity: 0;
  animation: type 15s infinite;
}

/* Stagger each phrase to get a 3-second window per phrase */
.typing-container span:nth-child(1) {
  animation-delay: 0s;
  margin-left: 10px;
}

.typing-container span:nth-child(2) {
  animation-delay: 3s;
  margin-left: 10px;
}

.typing-container span:nth-child(3) {
  animation-delay: 6s;
  margin-left: 10px;
}

.typing-container span:nth-child(4) {
  animation-delay: 9s;
  margin-left: 10px;
}

.typing-container span:nth-child(5) {
  animation-delay: 12s;
  margin-left: 10px;
}

/* Keyframes breakdown (for each phrase's 3-second active window):
   - 0% to 6.67%: Type in over 1 second (6.67% of 15s ≈ 1s).
   - 6.67% to 13.33%: Hold fully visible for 1 second.
   - 13.33% to 20%: Erase over 1 second.
   - 20% to 100%: Remain hidden until the next cycle.
*/
@keyframes type {
  0% {
    width: 0;
    opacity: 0;
  }
  6.67% {
    width: 100%;
    opacity: 1;
  }
  13.33% {
    width: 100%;
    opacity: 1;
  }
  20% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
.typing-container-host {
  display: flex;
  flex-direction: row;
  line-height: 72px;
  width: 100vw;
}

@media only screen and (max-width: 600px) {
  .typing-container {
    display: flex;
    position: relative;
    display: inline-block;
    line-height: 100px;
  }
  .typing-container-host {
    display: flex;
    flex-direction: column;
    line-height: 72px;
  }
}
