body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.logoName {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  /* keep desktop clean */
}

@media (max-width: 600px) {
  .logoName {
    display: none;
  }
}


.top-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2vw;
  height: 6vh;
  background: #abbc50;
}

@media (max-width: 600px) {
  .top-tab {
    padding: 0 1vw;
    gap: 1vw;
  }

  nav {
    gap: 1vw;
  }

  nav .tab {
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
  }
}

.logo-section {
  flex-shrink: 0;
  max-width: 60vw;
  /* prevents logo from hogging space */
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-left: auto;
  flex-shrink: 1;
}

nav .tab {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: #7d8a35;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1rem;
  white-space: nowrap;
}

nav .tab:hover {
  background: #5c6527;
  color: white;
}

nav .active {
  background: #4B5320;
  color: white;
}

/* Add spacing so content isn't hidden behind the fixed tab */
section {
  padding-top: 80px;
}

.logo-image {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  /* space between image and text */
}

.register-container {
  margin-top: 10vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.register-container h1 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.register-container h2 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #444;
}

.register-form {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  width: 95%;
  max-width: 700px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-form h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #333;
}

.register-form label {
  font-weight: 600;
  color: #333;
}

.register-form input,
.register-form select,
.register-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
}

.register-form input:focus,
.register-form textarea:focus {
  border-color: #7d8a35;
  box-shadow: 0 0 4px rgba(125, 138, 53, 0.4);
}

.waiver-text {
  background: #eee;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4rem;
}

.row {
  display: flex;
  gap: 1rem;
}

.row div {
  flex: 1;
}

.register-form button {
  margin-top: 2rem;
  padding: 0.9rem;
  background: #7d8a35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.register-form button:hover {
  background: #5c6527;
}

.ack {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

/* Page background using your SRVC green */
body {
  background: #e6eec9;
  /* soft green tint */
}

/* Main container */
.home-container {
  width: 100%;
  max-width: 1200px;
  margin: 10vh auto 0 auto;
  /* centers content and clears top tab */
  padding: 2rem;
}

/* Intro section */
.intro-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.intro-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4B5320;
  /* deep green */
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #333;
}

/* Leader card layout */
.leader-card {
  display: flex;
  gap: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  /* prevents overflow */
}

/* Image placeholder */
.leader-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  background: #cdd8a1;
  /* muted green placeholder */
  border-radius: 10px;
}

/* Text content */
.leader-content {
  flex: 1;
  min-width: 280px;
}

.leader-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #4B5320;
}

.leader-content p {
  font-size: 1rem;
  line-height: 1.6rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Mobile layout */
@media (max-width: 800px) {
  .leader-card {
    flex-direction: column;
    text-align: center;
  }

  .leader-image img {
    margin: 0 auto;
  }
}

.doc-block {
  margin: 25px 0;
  margin-bottom: 40px;
}

.doc-block embed {
  margin-bottom: 15px;
  /* space between PDF and checkbox */
}


.next-button {
  padding: 12px 30px;
  background-color: #7d8a35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

.next-button:hover {
  background-color: #4B5320;
}

.hero {
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("public/Images/hero-hockey.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  /* allows faded logo to stay inside */
}

/* Faded SRVC logo behind the text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../Images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  /* zoomed out (bigger) */
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  /* ensures text sits above faded logo */
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-primary {
  background-color: #7d8a35;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #4B5320;
}

.section {
  padding: 50px 20px;
}

.section-light {
  background-color: #ffffff;
  text-align: center;
}

.section-muted {
  background-color: #e6eec9;
}

.section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  color: #4B5320;
}

.highlights-list {
  display: inline-block;
  /* shrink to content width */
  text-align: left;
  /* keep checkmarks aligned */
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.highlights-list li {
  margin: 10px 0;
}


.highlights-list li::before {
  content: "✔";
  color: #ffffff;
  background-color: #4B5320;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  font-size: 0.8rem;
}

.mission {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-style: italic;
}

.leadership-preview {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.leader-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  object-fit: cover;
  max-height: 220px;
}

.leader-card h3 {
  margin: 5px 0;
}

.leader-card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.center {
  text-align: center;
}

.cta-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 25px;
}

.cta-section p {
  margin: 5px 0;
}

.photo-strip {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.photo-strip img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 180px;
}

footer {
  background-color: #4B5320;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

a.text-link {
  color: #e6eec9;
  text-decoration: underline;
}

a.text-link:hover {
  color: #ffffff;
}

.schedule-wrapper {
  max-width: 800px;
  /* was 1100px — now smaller */
  margin: 0 auto;
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  /* optional: slightly smaller text */
}

.schedule-table th {
  background-color: #7d8a35;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  text-align: left;
}

.schedule-table td {
  padding: 12px;
  border-bottom: 1px solid #e6eec9;
}

.schedule-table tr:nth-child(even) {
  background-color: #f5f7f0;
}

.schedule-table tr:hover {
  background-color: #e6eec9;
  transition: 0.2s;
}