@charset "utf-8";
body {
  background-color: #f9f3e8;
  color: #3b2a1a;
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 0;
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  text-align: center;
  background-color: #f9f3e8;
  padding: 10px 0;
}
.hero-image {
  width: 90%;
  max-width: 900px;
  height: auto;
  border: 3px solid #3b5b3b;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* --- HEADER TITLE --- */
h1 {
  text-align: center;
  margin: 20px 0 10px;
  font-size: 2.5rem;
  color: #3b5b3b;
}

/* --- TIP CARDS --- */
.tip-card {
  background: #ffffff;
  border: 2px solid #3b5b3b;
  margin: 20px auto;
  padding: 20px;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.tip-card h2 {
  font-size: 1.8rem;
  color: #3b5b3b;
}
.tip-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  margin: 40px 0 20px;
  font-style: italic;
  color: #3b2a1a;
}

.footer-line {
  width: 60%;
  margin: 15px auto;
  border: 0;
  border-top: 1px solid #3b5b3b;
  opacity: 0.5;
}

.footer-copy {
  font-style: normal;
  font-size: 0.9rem;
  color: #3b5b3b;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .tip-card { margin: 15px; padding: 15px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .hero-image { width: 95%; }
}
.selections {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0 20px;
  font-size: 0.95rem;
}
.selections th, .selections td {
  border: 1px solid #3b5b3b;
  padding: 8px;
  text-align: left;
}
.selections th {
  background-color: #e6efe6;
  color: #3b2a1a;
}
.signature {
  font-style: italic;
  margin-top: 15px;
  color: #3b5b3b;
}
.race-date {
  text-align: center;
  font-size: 1.1rem;
  color: #3b5b3b;
  margin-top: -5px;
  margin-bottom: 20px;
  font-weight: bold;
}
.share-section {
  text-align: center;
  margin: 25px 0;
  background: #f8f2e7; /* warm parchment */
  border: 2px solid #004b23; /* racing green border */
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.share-title {
  font-family: "Gill Sans", "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: #004b23;
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 #fff;
}

.share-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  font-family: "Gill Sans", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 2px solid #004b23;
  border-radius: 6px;
  color: #004b23;
  background: #fff9f2;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 3px 0 #004b23;
}

.share-btn:hover {
  background: #004b23;
  color: #fff9f2;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #002910;
}

.stats-bar {
  background-color: #064b2b;
  color: white;
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: bold;
}
/*.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #3b5b3b;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 0.9rem;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.3);
  z-index: 9999;
}

.cookie-banner a.cookie-button {
  background-color: #fff;
  color: #3b5b3b;
  padding: 5px 12px;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cookie-banner a.cookie-button:hover {
  background-color: #f9f3e8;
}
