/* =========================
   Product / Hero Styling
   ========================= */

/* ---------- Page level ---------- */

.custom-hero {
  background: url('../images/gradient_website_4.jpg');
  background-size: cover;
}

/* Make sections full-width even when inside a .container */
.fullwidth-hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}


html {
  scroll-behavior: smooth;
}

/* ---------- Contact Box ---------- */

.product-hero {
  background: transparent;
  color: #fff;
  margin-left: 0px;
  padding-left: 0rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.contact-hero {
  max-width: 1200px;
  background: transparent;
  color: #fff;
  margin-left: 220px;
  padding-left: 0rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}


/* font and color */
.contact-hero .hero-title {
  font-size: 1.7rem;
  color: #d5d9de;
}



.contact-input,
.contact-textarea {
    width: 400px;   /* ← increase this */
    max-width: 100%;
}

.contact-form-field {
  margin-bottom: 0.5rem;   /* space between rows */

}


.contact-hero a {
  color: #00d9d9;       /* teal like on homepage */
  text-decoration: none;
}

.contact-hero a:hover {
  color: #ffffff;       /* white on hover */
  text-decoration: underline;
}


/* ---------- Navbar ---------- */

.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff !important;  /* or your gradient background */
  backdrop-filter: blur(18px);      /* optional sexy effect */
}
/*
body {
  padding-top: 60px;
}
*/


/* ---------- Hero text ---------- */

/* default hero title (main page) */
.hero-title {
  font-size: 1.7rem !important;
  color: #00d9d9;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 700;
}

/* smaller title variant, e.g. for contact page */





.screen-white { color: #ffffff; }
.screen-teal  { color: #00d9d9; }

.hero-paragraph {
  font-size: 1.0rem;
  line-height: 1.9;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* =========================
   Feature / Bars Styling
   ========================= */

.tce-bars-container {
  display: flex;
  gap: 12px;
  height: 700px;
  width: 100%;
  scroll-margin-top: 1rem;
}

.tce-bar {
  flex: 0 0 400px;                 /* collapsed width */
  transition: flex-basis 0.5s ease;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  cursor: pointer; /* make the whole card feel clickable */
}



/* padding only in collapsed state */
.tce-bar:not(.expanded) {
  padding-top: 8rem;
}

/* expanded width */
.tce-bar.expanded {
  flex: 0 0 1000px;
  padding-top: 0;
}

/* hide title + main description when expanded */
.tce-bar.expanded > .bar-title,
.tce-bar.expanded > .bar-maindescription {
  display: none;
}


/* small hint under the description */
.bar-hint {
  margin: 0.5rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #e2e8f0;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* icon + gentle pulse */
.bar-hint-icon {
  font-size: 0.9rem;
  animation: bar-hint-pulse 1.5s infinite;
}

.tce-bar.expanded .bar-hint {
  display: none;
}

@keyframes bar-hint-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.2); opacity: 1;   }
  100% { transform: scale(1);   opacity: 0.6; }
}


/* ---------- Bar content / slides ---------- */

/* hide content until expanded */
.tce-bar .bar-content {
  display: none;
  flex-direction: column;
  height: 100%;
  background: inherit;
  color: #fff;
}

.tce-bar.expanded .bar-content {
  display: flex;
}

.tce-bar .slide {
  display: none;
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
}

.tce-bar .slide.active {
  display: block;
}

/* ---------- Text inside bars ---------- */

.bar-title {
  color: #ffffff;
  margin: 1.5rem 1.5rem 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.bar-maindescription {
  text-align: center;
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 1rem 1.5rem 1.5rem;
}

.bar-description,
.bar-content p {
  margin: 0.5rem 0 0;
  line-height: 1.4;
  font-size: 1.1rem;
}

/* optional extra text style */
.bar-text {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.5rem auto 1rem;
  max-width: 600px;
  text-align: center;
}

/* ---------- Footer / arrows ---------- */

.bar-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
}

.arrow-button {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
}

.arrow-button:hover {
  background: rgba(255,255,255,0.35);
}

/* =========================
   Buttons
   ========================= */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;          /* pill shape */
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: none;                   /* ← kill the grey border */
  outline: none;                  /* optional: remove focus outline */
  cursor: pointer;                /* proper button cursor */
}

.btn:hover {
  background-color: #ffffff;
  color: #2563eb;
}

.btn-container {
  text-align: center;
  margin-top: 1rem;
}

.btn-container-left {
  text-align: left;
  margin-top: 1rem;
}

/* =========================
   Video
   ========================= */

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;         /* 16:9 ratio */
  height: 0;
  max-width: 800px;
  margin: 1.5rem auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* =========================
   Misc + Responsive
   ========================= */

/* IMPORTANT: remove extra background square from generic .section */
.section {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
  background: transparent;
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-paragraph {
    font-size: 1rem;
  }
  .custom-hero {
    padding: 3rem 1rem;
  }
}

/* legacy bulma message override (if still used somewhere) */
#message .message-body {
  color: #fff !important;
}
