/* Temporary dotted borders for visual debugging */
.landing-sections .landing-col {
  border: 2px dotted #999;
}

/* Buttons must keep same width no matter text length */
.same-width-btn {
  width: 18rem; 
  white-space: nowrap; /* Prevent text from wrapping to next line */
}

/* Keyframes for the bouncing triangle */
@keyframes bounceTriangle {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.triangle-bounce {
  animation: bounceTriangle 1.5s ease-in-out infinite;
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 3rem;
  color: #000;
  text-decoration: none;
  margin-bottom: 1rem; /* spacing from bottom if desired */
}

/* Logo - large by default, smaller on mobile */
.hero-logo {
  max-width: 600px;
  height: auto;
}

/* Summary text - bigger default, smaller on mobile */
.hero-summary {
  max-width: 700px;
  font-size: 1.25rem;
  color: #2b2b2b;
}

/* 
  Button: transparent, black border & text, 
  changes to cream on hover, overrides Bootstrap .btn 
*/
.btn.btn-hero-border {
  background: transparent !important;
  border: 2px solid #000 !important;
  color: #000 !important;
  transition: background-color 0.3s ease-in-out;
}

.btn.btn-hero-border:hover,
.btn.btn-hero-border:focus {
  background-color: var(--cream) !important;
  color: #000 !important;
}

/* Scale down on smaller screens */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 300px;
  }
  .hero-summary {
    font-size: 1rem;
  }
}
