body {
  font-family: 'Urbanist', sans-serif;
}

.display-1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}

.display-2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 2.95rem;
  line-height: 1.24;
}

.display-4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.1rem;
  line-height: 1.63;
}

.display-5 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.9rem;
  line-height: 1.28;
}

.display-7 {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}

/* Responsive typography */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: 2.5rem;
  }
  .display-2 {
    font-size: 2rem;
  }
  .display-5 {
    font-size: 1.5rem;
  }
  .display-7 {
    font-size: 1.1rem;
  }
}

/* Button styles */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}

.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}

/* Color scheme */
.bg-primary {
  background-color: #ffdd0f !important;
}

.btn-primary,
.btn-primary:active {
  background-color: #ffdd0f !important;
  border-color: #ffdd0f !important;
  color: #0f0d00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b79d00 !important;
  border-color: #b79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary,
.btn-secondary:active {
  background-color: #fff7c8 !important;
  border-color: #fff7c8 !important;
  color: #c8ab00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #716100 !important;
  background-color: #ffea71 !important;
  border-color: #ffea71 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
} 