#id_Header1 {
background-color:white;
}

/* Hide the author from homepage blog post display */
#id_ojYzfQ7 .author {
display:none;
}

#id_ojYzfQ7 .date::after {
display: none;
}

/* Hide the blog "posted by" comment (i.e. (Adminstrator)) */
.postedByComment {
display: none;
}

/*Set the profile of the Wild Apricot branding on the homepage */
#idFooterPoweredByWA 
{
font-size:4px; 
color: #cccccc;

}

/* =====================================
   GLOBAL TYPOGRAPHY
===================================== */

body,
.WaGadget,
.WaContentContainer {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;

}

font {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
}

p {
  margin: 0 0 16px !important;
}

h1 { font-size: 28px !important; margin: 32px 0 16px !important; }
h2 { font-size: 22px !important; margin: 24px 0 12px !important; }
h3 { font-size: 18px !important; margin: 20px 0 10px !important; }


/* =====================================
   TABLE STYLING (class-race-series-table tables)
===================================== */

.class-race-series-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.class-race-series-table th {
  background: linear-gradient(to bottom, #f9f9f9, #e0e0e0);
  border-bottom: 2px solid #ccc;
  padding: 10px;
  text-align: left;
  font-weight: 600;
}

.class-race-series-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* Zebra striping that works even without <tbody> */
.class-race-series-table tr:nth-child(even) td {
  background-color: #f7f7f7;
}

.half-width {
  width: 50%;
}

.hero-btn {
  display:inline-block;
  padding:14px 28px;
  margin:10px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  font-size:18px;
}

.hero-btn.primary {
  background:#d35400;
  color:white;
}

.hero-btn.secondary {
  background:#2e7d32;
  color:white;
}

.umtr-benefits-section {
  display: flex;
  justify-content: center;
  gap: 30px;       /* spacing between cards */
  flex-wrap: wrap;  /* wrap cards on mobile */
  padding: 60px 20px;
}

/* Container for cards + CTA */
.umtr-benefits-cta-section {
  padding: 30px 20px 30px 20px;
  text-align: center;
}


/* =====================================
   MOBILE: Why Join UMTR? Cards
===================================== */

@media (max-width: 768px) {

  .umtr-benefits-cards {
    flex-wrap: wrap !important;       /* stack cards vertically */
    overflow-x: visible !important;   /* no horizontal scroll */
    gap: 20px;
  }

  .umtr-benefit-card {
    max-width: 100% !important;       /* full width on mobile */
    width: 100%;
    margin: 0 !important;
  }

  .umtr-cloud-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .umtr-cta-btn {
    font-size: 17px;
    padding: 14px 24px;
  }

}

/* =====================================
   Why Join UMTR? Cards
===================================== */

.umtr-benefits-cards {
  display: flex;
  justify-content: center;
  gap: 30px;       /* spacing between cards */
    overflow-x: auto;       /* <-- allow horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */

  flex-wrap: nowrap;  /* wrap cards on smaller screens */
  margin-bottom: 40px; /* space between cards and button */
}

/* Card container */
.umtr-benefit-card {
  background-color: white;
  border-radius: 12px;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  margin: 0 auto;
}

/* Hover lift */
.umtr-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon/Image */
.umtr-benefit-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* Heading */
.umtr-benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2e7d32; /* brand green */
}

/* Description */
.umtr-benefit-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* CTA container */
.umtr-cta {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

/* Button styling */
.umtr-cta-btn {
  display: inline-block;
  background-color: #2e7d32; /* UMTR green */
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.umtr-cta-btn:hover {
  background-color: #1b4f20; /* darker green */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Outer section background */
.umtr-cloud-section {
  padding-top: 0;   /* remove extra space from section top */
  padding-right: 20px;
  padding-bottom: 20px; /* keep bottom space for cards */
  padding-left: 20px;
    border: none !important;
}

/* Content Gadget wrapper */
.umtr-cloud-section .wa-content {
  padding-top: 0 !important;  /* remove gadget-added top padding */
  border: none !important;
}

.umtr-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;               /* space between lines and text */
  margin: 0 auto 30px auto; /* only bottom margin */
}

.umtr-section-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #2e7d32;
  white-space: nowrap;
}

.umtr-section-title .line {
  flex: 1;                  /* stretch to fill space */
  height: 2px;              /* thickness of line */
  background-color: #ccc;   /* line color */
}


/* ====================================================
   START PAGE 18136 (Home Page) - BACKGROUND AND MENU
======================================================= */

/* Page background */
body#PAGEID_18136 {
    background-image: url('/resources/Pictures/Site%20Content/superior_hiking_trail.jpg');
    /* background-image: url('/resources/Pictures/Site%20Content/trail4.jpg'); */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


@media (max-width: 768px) {
  body#PAGEID_18136 {
        background-image: url('/resources/Pictures/Site%20Content/trail5.jpg');
    background-attachment: scroll !important;
    background-color: #1a2a1a !important; /* dark green to match the trail photo */
        background-position: center top !important;
  }
}


/* Menu bar */
body#PAGEID_18136 #id_Header1 .menuBackground,
body#PAGEID_18136 #id_Header1 .menuInner {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}


body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel {
    background: transparent !important;
    padding: 8px 16px;
    margin: 0 !important;
    list-style: none !important;
}


body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li a {
    color: white !important;  
    font-weight: bold !important; 
    text-decoration: none !important;
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li a:hover {
    color: #ffcc66 !important;
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel {
    background: rgba(0, 0, 0, 0.65) !important;
    border-radius: 8px;
    padding: 8px 8px;
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel {
    background: rgba(0, 0, 0, 0.65) !important;
    border-radius: 8px;
    padding: 8px 8px;
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li.dir ul.secondLevel {
    background: rgba(0, 0, 0, 0.65) !important;
    border-radius: 8px !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 9999;
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li.dir ul.secondLevel li .item {
    background: rgba(0, 0, 0, 0.65) !important;
    padding: 8px 12px !important;  
    border-radius: 4px; 
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li.dir ul.secondLevel li a {
    background: rgba(0, 0, 0, 0.65) !important;
    color: white !important;
    font-weight: bold !important;
    text-decoration: none !important;
    display: block;   
}

body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li.dir ul.secondLevel li a:hover {
    background-color: rgba(255,255,255,0.1) !important; /* subtle overlay */
    color: #ffcc66 !important;
}
body#PAGEID_18136 #id_Header1 .menuInner ul.firstLevel li.dir ul.secondLevel li a span {
    background: transparent !important;
    color: inherit !important;
}

/* ====================================================
   END PAGE 18136 (Home Page) - BACKGROUND AND MENU
======================================================= */

/* ====================================================
   START PAGE 18136 (Home Page) - FOOTER
======================================================= */

body#PAGEID_18136 .WaGadgetMobilePanel .menuInner {
  background: rgba(0, 0, 0, 0.65) !important;
  border-radius: 8px;
  padding: 8px;
}

body#PAGEID_18136 #id_Footer1 {
  background: rgba(0, 0, 0, 0.65) !important;
  border-radius: 8px;
}

body#PAGEID_18136 #id_Footer1 > div {
  padding-top: 20px !important;
  padding-bottom: 10px !important;
}

body#PAGEID_18136 #id_Footer1 a {
  color: #ccc !important;
  text-decoration: none !important;
}

body#PAGEID_18136 #id_Footer1 a:hover {
  color: #ffcc66 !important;
}

/* ====================================================
   END PAGE 18136 (Home Page) - FOOTER
======================================================= */
