body, html {
  height: 100%;
  margin: 0;
  background: url('bg.jpg') no-repeat center center/cover;
  font-family: Montserrat, Geneva, Tahoma, sans-serif, sans-serif;
}

.content-box {
  max-width: 500px;      /* keeps it neat */
  padding: 0 30px;       /* equal padding left & right */
  margin-left: 30px;     /* shift entire box to the right */
}



p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
  text-decoration-color: rgba(230, 28, 28, 0);


}

p {
  font-family: Arial, sans-serif;
  text-shadow: none;
  margin: 0;   /* remove extra spacing under paragraphs */
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #fceaa8 !important;
  line-height: .95;
  margin: 0 0 20px 0;   /* only 5px gap below */
}

h1 .tight {
  display: block;
  line-height: 0.8;  /* extra tight only on this line */
}


p.subtitle {
  margin: 12px 0;         /* balanced gap above and below */
  font-size: 1.1rem;      /* optional: slightly smaller */
  color: #fff;            /* keeps contrast clear */
}





.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.btn-custom {
  background-color: #fceaa8 ;
  color: #be1c32;
  font-family: Tahoma, Geneva, sans-serif; /* force Tahoma */
  font-weight: normal;
  font-size: 14px; /* 👈 adjust this to your liking */
  border-radius: 10px;
  padding: 12px;
  transition: transform 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-custom:hover {
  transform: scale(1.05);
  background-color: #f1b0b7;
}


.list-group-item {
  text-align: center;            /* center the content */
}

.list-group-item a {
  text-decoration: none;
  color: #000;
  display: inline-flex;          /* inline flex so it centers properly */
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.list-group-item a:hover {
  color: #d63384;
}


/* Small button row */
.small-buttons {
  margin-top: 15px;
  margin-bottom: 15px;
}

.btn-small {
  background-color: #00563f;   /* Bootstrap gray */
  color: #ffb81c;
  font-size: 13px;
  font-family: Tahoma, Geneva, sans-serif; /* force Tahoma */
  font-weight: normal;                     /* normal weight */
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.btn-small:hover {
  background-color: #ffc105;
  color: #fff;
}

/* modal */


.modal-content {
  background-color: rgba(255, 255, 255, 0.462); /* 90% white with transparency */
  backdrop-filter: blur(6px);                 /* subtle blur for a frosted glass look */
  border-radius: 12px;
}


button.primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
}

button.primary:hover {
  background: var(--color-primary-light);
}

button.secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
}

button.secondary:hover {
  background: var(--color-secondary-light);
}

 /* horizontal line */
.custom-hr {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8); /* white semi-transparent line */
  margin: 12px 0;
}

.custom-hr2 {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0); /* white semi-transparent line */
  margin: 12px 0;
}

