    *, *::before, *::after {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      max-width: 100vw;
      overflow-x: hidden;
      font-family: 'Segoe UI', Tahoma, sans-serif;
      background: url('../img/bones-bg.jpg') no-repeat center center fixed;
      background-size: cover;
    }

    .scroll-container {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow-y: auto;
    }

    .navbar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      background-color: #fff;
      padding: 12px;
      border-bottom: 1px solid #ccc;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar a {
      color: #000;
      text-decoration: none;
      margin: 6px 10px;
      font-weight: 500;
      display: flex;
      align-items: center;
      transition: color 0.3s, border-bottom 0.3s;
      padding-bottom: 3px;
    }

    .navbar a img {
      width: 16px;
      height: 16px;
      margin-right: 6px;
    }

    .navbar a:hover,
    .navbar a.active {
      color: #007bff;
      border-bottom: 2px solid #007bff;
    }

    .top-section {
      background: rgba(243, 210, 219, 0.75);
      min-height: 725px;
      width: 100%;
      text-align: center;
      padding: 40px 15px 20px;
    }

.top-logo {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .top-logo {
    max-width: 600px;
  }
}

    .top-text {
      font-size: 1.2em;
      margin-top: 10px;
    }

.top-text-arrow {
  font-size: 1.4em; /* increased size */
  font-weight: bold; /* bold text */
  margin-top: 10px;
  position: relative;
}

.top-text-arrow::before, .top-text-arrow::after {
  content: "↓";
  margin: 0 10px;
  font-size: 1.2em;
  vertical-align: middle;
}

    .content-section {
      max-width: 644px;
      width: 95%;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.75);
      border-radius: 0;
      padding: 30px 20px;
    }

    .bold-title {
      font-weight: bold;
      font-size: 1.3em;
      margin-bottom: 10px;
      text-align: left;
    }

    .event-button,.event-button-sat,  .event-button-sun, .action-button, .store-button {
      display: block;
      width: 100%;
      max-width: 606px;
      margin: 5px auto;
      text-align: center;
      padding: 10px;
      color: #fff;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    .event-button {
      background: linear-gradient(to right, #6a1b9a, #00acc1);
    }

    .event-button:hover {
      background: linear-gradient(to right, #4a148c, #00838f);
    }
	
	.event-button-sat {
      background: linear-gradient(to right, #6a1b9a, #00acc1);
    }

    .event-button-sat:first-of-type {
      margin-top: 30px;
    }
	
    .event-button-sat:hover {
      background: linear-gradient(to right, #4a148c, #00838f);
    }

    .event-button-sun {
      background: linear-gradient(to right, #00acc1, #6a1b9a);
    }

    .event-button-sun:hover {
      background: linear-gradient(to right, #00838f, #4a148c);
    }

    .event-button-sun:first-of-type {
      margin-top: 30px;
    }

    .action-button {
      width: 165px;
      background-color: #add8e6;
      color: #000;
      display: inline-block;
      margin: 5px;
    }

	
    .action-button:hover {
      background-color: #87ceeb;
    }

    .store-button {
      width: 168px;
      display: inline-block;
      margin: 5px;
    }

    .store-blue { background-color: #2196f3; }
    .store-green { background-color: #4caf50; }
    .store-button:hover { filter: brightness(0.9); }

.contact-section {
  text-align: center;
  color: brown;
  margin-top: 30px;
}

.contact-section a {
  color: brown;
  text-decoration: none;
}

.contact-section a:visited {
  color: brown;
}

.contact-section a:hover {
  color: #8b4513; /* darken on hover if desired */
}

    .link-box {
      max-width: 614px;
      margin: 20px auto;
      padding: 15px;
      background: #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      border-radius: 10px;
    }

    .link-box img {
      width: 64px;
      height: 64px;
      margin-right: 20px;
    }

    .link-box div {
      text-align: left;
    }

    .bottom-img {
      display: block;
      margin: 40px auto;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }
	
footer {
  position: absolute;
  width: 100%;
  height: 35px;
  background: #FFF;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: block;	
  text-align: center;
  font-size: 0.9em;
}

footer p {
  text-align: center !important;
  font-size: 0.9em !important;
  margin: 0px !important;
}

    .facebook-link {
      text-align: center;
      margin-top: 20px;
    }

    .facebook-link a img {
      width: 36px;
      height: 36px;
    }
	
	/* Inner layout (inside your existing .event-button* styles) */
.event-grid {
  display: grid;
  grid-template-columns: auto 1fr;    /* narrow left, flexible right */
  column-gap: 14px;
  row-gap: 2px;                       /* space between top/bottom rows */
  align-items: center;
}

/* Left column: always left-justified */
.col-left { text-align: left; }

/* Right column alignment options (toggle one of these on .event-grid) */
.event-grid.right-left  .col-right { text-align: left; }
.event-grid.right-center .col-right { text-align: center; }

/* Row-level tweaks */
.row { line-height: 1.25; }

/* Suggested sizes (adjust to taste) */
.date  { font-size: 1.05em; font-weight: 700; }
.time  { font-size: 0.95em; opacity: 0.95; }

.title   { font-size: 1.05em; font-weight: 700; }
.address { font-size: 0.95em; font-weight: 500; opacity: 0.95; }

/* Emphasize a single word like “Stephenville” */
.city { font-size: 1.12em; font-weight: 800; }

/* Optional: add a hair more room around left labels */
.col-left .row { padding: 2px 6px; }

/* Responsive: stack columns on small screens */
@media (max-width: 420px) {
  .event-grid {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }
  .event-grid .col-right { text-align: left; } /* fallback when stacked */
}
