@font-face {
  font-family: 'Roboto Slab';
  src: url('RobotoSlab-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Slab Extra Bold';
  src: url('RobotoSlab-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Slab Bold';
  src: url('RobotoSlab-Bold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* ===== Base Reset ===== */
* {
  box-sizing: border-box;
}

/* ===== Layout ===== */
body {
  margin: 0;
  font-family: 'Roboto Slab Extra Bold', serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Header / Nav ===== */
.site-header {
  background: #111;
  color: #fff;
 /* padding: 0.5rem; */
}

.site-header h1 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
}

.site-header nav {
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ===== Social Icons ===== */
.nav-icons {
  display: flex;
  gap: 0.75rem;
}

.nav-icons .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.nav-icons a.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;          /* remove fixed width */
  height: auto;         /* remove fixed height */
  padding: 0;           /* no extra space */
  margin: 0;
  border: none;         /* remove circle if still present */
}

/* ===== Hero ===== */
.hero {
  min-height: 80vh;
  background: url('../images/teamchamps2025.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
}

.hero-subtext {
  text-align: center;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.strava_embed {
  padding-top: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* ===== Content ===== */
.content {
  padding: 2rem 1rem;
  max-width: 850px;
  margin: auto;
  font-family: 'Roboto Slab', sans-serif;
}

/* ===== Sticky Footer ===== */
.site-footer {
  background: #f4f4f4;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: auto;
}

h2 {
  font-family: 'Roboto Slab Extra Bold', sans-serif;
}


h3 {
  font-family: 'Roboto Slab Bold', sans-serif;
}

/* ===== Responsive ===== */
@media (max-width: 800px) {
  .hero-content h2 {
    font-size: 1.6rem;
  }

  .site-header nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-icons {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }
}


.text-roboto-slab {
  font-family: 'Roboto Slab', serif;
}

.site-header {
  background: rgb(25, 25, 112);
  color: #fff;
/*  padding: 1rem; */
} 

/* Center contact form */
#contact-form,
#form-success {
  max-width: 500px;
  margin: 0 auto;
}

/* Improve form spacing */
#contact-form label {
  display: block;
  margin-bottom: 1rem;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  font-family: inherit;
}


.hero-carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


.slide-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  max-width: 80%;
  text-align: center;
}

.slide-caption h3 {
  margin: 0 0 0.25rem 0;
  font-family: 'Roboto Slab', serif;
  font-size: 1.25rem;
}

.slide-caption p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .slide-caption {
    padding: 0.75rem 1rem;
    max-width: 90%;
  }

  .slide-caption h3 {
    font-size: 1rem;
  }

  .slide-caption p {
    font-size: 0.85rem;
  }
}


/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 0;
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* Responsive */
@media (max-width: 800px) {
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.25rem 0.5rem;
  }
}

.membership-cta {
  text-align: center;
  margin: 3rem 0;
}

.btn-join {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Roboto Slab', serif;
  background-color: rgb(25, 25, 112); /* same as hero header */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-join:hover {
  background-color: rgb(1, 50, 105); /* slightly darker on hover */
  transform: scale(1.05);
}

.RRCA {
  width: 100px;
}

.weekly-workouts {
  max-width: 90%;
  margin-right: auto;
  margin-left:  auto;
}

.weekly-workouts h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Roboto Slab Extra Bold', serif; /* your custom font */
}

.table-container {
  overflow-x: auto; /* horizontal scroll on small screens */
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

thead {
  background-color: rgb(25, 25, 112); /* hero/primary blue */
  color: #fff;
}

td {
  padding: 1rem 0.5rem;
  border: 1px solid #ddd;
  font-family: 'Roboto Slab', sans-serif;
}

th {
  padding: 1rem 0.5rem;
  border: 1px solid #ddd;
  font-family: 'Roboto Slab Bold', sans-serif;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

tbody tr:hover {
  background-color: #e0e7ff; /* subtle highlight */
}

/* Responsive font */
@media (max-width: 480px) {
  th, td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.nav-icons a.icon img {
  width: 22px;          /* adjust as needed */
  height: 22px;
  display: block;
}
/* =====================
   NAVBAR BASE
===================== */
.nav-bar {
  position: relative; /* make hamburger absolute relative to this */
  background-color: rgb(25, 25, 112);
  padding: 0.5rem 1rem;
  z-index: 1;
}

.nav-hex {
  --s: 15px;
  --c1: #191970;
  --c2: #292988;

  --c:#0000, var(--c1) .5deg 119.5deg, #0000 120deg;
  --g1: conic-gradient(from 60deg at 56.25% calc(425%/6), var(--c));
  --g2: conic-gradient(from 180deg at 43.75% calc(425%/6), var(--c));
  --g3: conic-gradient(from -60deg at 50% calc(175%/12), var(--c));

  background:
    var(--g1), var(--g1) var(--s) calc(1.73*var(--s)),
    var(--g2), var(--g2) var(--s) calc(1.73*var(--s)),
    var(--g3) var(--s) 0, var(--g3) 0 calc(1.73*var(--s)),
    var(--c2);
  background-size: calc(2*var(--s)) calc(3.46*var(--s));
  position: relative;
  padding: 1rem 2rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Radial gradient overlay on the nav only */
.nav-hex::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
  pointer-events: none;
}


/* TOP ROW: grid for perfect alignment */
.nav-top {
  display: grid;
  grid-template-columns: 1fr auto; /* title left, hamburger right */
  align-items: center;
  gap: 1rem;
  z-index: 1;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* SITE TITLE */
.site-title {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}


.supplemental {
    text-align: center;
    padding:  1rem;
  }

  .workout-map {
    text-align: center;
    padding-top:  1rem;
  }


/* HAMBURGER */
/* Hamburger button */
.hamburger {
  display: none;         /* desktop hidden, mobile only */
  position: absolute;    /* position relative to .nav-bar */
  top: 0.5rem;           /* distance from top of header */
  right: 1rem;           /* distance from right edge */
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding-top: 2rem;
  line-height: 1;
}

/* NAV LINKS + ICONS */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  z-index: 1;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-icons {
  display: flex;
  gap: 0.75rem;
  z-index: 1;
}

.nav-icons img {
  width: 22px;
  height: 22px;
  display: block;
}
@media (max-width: 800px) {
  /* Hamburger shown */
  .hamburger {
    display: block;
  }

  @media (max-width: 800px) {
  .nav-right {
    display: none; 
    flex-direction: column;
    background-color: rgb(25, 25, 112);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: absolute;       /* position relative to nav-bar */
    top: 90%;                /* below header */
    right: 0rem;              /* hug the right side */
    width: auto;              /* shrink to content */
    min-width: 150px;         /* optional minimum width */
    max-width: 250px;         /* optional maximum width */
    gap: 0.5rem;
    z-index: 10;
  }

  .nav-right.show {
    display: flex;
  }

  /* Right-align links inside this smaller block */
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
  }

  /* Icons row on its own line */
  .nav-icons {
    flex-direction: row;
    justify-content: flex-start; /* icons start at left of block */
    width: 60%;
    margin-top: 0.5rem;
    gap: 0.75rem;
  }


@media (max-width: 800px) {
  .hero,
  .hero-carousel {
    min-height: 40vh;
    max-height: 50vh;
    min-width:326px;
  }


