/* General layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  text-align: center;
}

/* Header banner */
header {
  background: #ff33cc;
  color: black;
  padding: 2rem;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

header .tagline {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Logo (top-left PNG spot) */
.logo {
  position: absolute;
  top: 10px;
  left: 20px;
  height: 80px; /* adjust size as needed */
}

/* Option buttons container - centered horizontally, pushed down */
.options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;               /* <-- zero gap so they touch */
  margin-top: 12rem;    /* adjust vertical position as desired */
}

/* Individual buttons (cards) */
.card {
  background: url('wood.jpg');
  background-size: cover;
  padding: 1rem 2rem;    /* controls button size */
  margin: 0;             /* remove any extra margin */
  text-decoration: none;
  color: black;
  border: 2px solid #333;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  /* remove default border-radius so seam is flush */
  border-radius: 0;
  display: inline-block;
}

/* Make them look like a single joined control:
   - remove the inner border between them
   - round outer corners */
.options .card:first-child {
  border-right: none;                 /* no double border in middle */
  border-radius: 6px 0 0 6px;         /* rounded left corners */
}

.options .card:last-child {
  border-left: none;                  /* no double border in middle */
  border-radius: 0 6px 6px 0;         /* rounded right corners */
}

/* hover effect */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* If you had prior rules targeting .options a, remove or ignore them.
   This block below intentionally styles the cards (which are <a> elements). */

/* Responsive: on narrow screens stack them and restore full borders */
@media (max-width: 600px) {
  .options {
    flex-direction: column;
    margin-top: 6rem;
  }
  .options .card {
    width: calc(100% - 3rem);
    display: block;
    margin: 0.4rem auto;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    border-radius: 6px;
  }
  .options .card:first-child,
  .options .card:last-child {
    border-left: 2px solid #333;
    border-right: 2px solid #333;
  }
}
