/* Reset & Base */
@font-face {
  font-family: 'Fields';
  src: url('../content/Fields-SemiBold.otf') format('opentype');
  font-weight: 600; /* semibold */
  font-style: normal;
}


/* Footer base */
.footer {
  background: #F7F1E4;             /* dark footer */
  color: #68672b;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px; /* space between columns */
  align-items: start; /* keeps tops aligned */
}

.footer-col h4 {
    font-size:30px;
}


.schedule-footer {
    
  font-family: 'Fields'; 
  all: unset;
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background-color: #9bb6dc;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
  color: #111111;
}

.schedule-footer:hover {
  background-color: #68672b;
  color: #fff;
}
.button-container {
  text-align: center;
}

/* Columns */
.footer-col { 
    min-width: 0; 
  padding: 10px;         /* helps see spacing */
}

.footer-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #68672b;
  font-family: 'Fields', fallback;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li { 
    margin: 0.35rem 0; 
}

.footer a {
  color: #68672b;
  text-decoration: none;
}

  .footer-list .icon {
  font-size: 2.2rem;   /* make larger or smaller */
  margin-right: 8px;   /* spacing between icon + text */
  font-family: 'Fields', fallback;
}


.footer a:hover {
  text-decoration: underline;
}

.logo-reg img {
width:300px;
height:auto;
  display: block;
  margin: 0 auto;
}


.icon img {
  width: 30px;   /* adjust size */
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

/* Bottom row */
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #b9c6d2;
  font-size: 0.95rem;
  text-align: center;
}

/* Responsive: stack to 1 column on small screens */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;  /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;      /* 1 column on phones */
  }
}