/* hero-section covers full viewport */
.hero-section {
  position: relative;
  height: 100vh;
  background: url('images/unclechris10.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}


/* put the toggle up top */
.nav-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* style the button so you can see it */
.menu-toggle {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  cursor: pointer;
}

/* hidden by default on mobile */
.nav-links {
  list-style: none;
  display: none;
  margin-top: 10px;
  background: rgba(58,79,95,0.9);
  padding: 10px;
  border-radius: 4px;
}

/* show when toggled */
.nav-links.nav-open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* link styles */
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

/* on larger screens, hide the toggle & show links horizontally */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    background: none;
    margin: 0;
    padding: 0;
  }
  .nav-links li + li {
    margin-left: 20px;
  }
}

/* the hero button */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background .3s, transform .3s;
  
}
/* keep the hero-button white even after it's been visited */
.hero-btn:link,
.hero-btn:visited {
  color: #fff;
}

.hero-btn:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-2px);
}
/* Calendar icon in nav */
.nav-calendar a {
  position: relative;
  display: inline-block;
  padding: 5px;
  transition: transform 0.2s ease;
}

.nav-calendar a:hover {
  transform: scale(1.2);
}

/* Tooltip for nav calendar */
.nav-calendar .calendar-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
  transition: opacity 0.3s;
  pointer-events: none;
}

.nav-calendar a:hover .calendar-tooltip {
  visibility: visible;
  opacity: 1;
}
.nav-calendar svg {
  vertical-align: middle;   /* aligns it with the text links */
  margin-bottom: 2px;       /* fine-tune if needed */
}
.nav-calendar a {
  padding-top: 0;   /* move up a tiny bit */
  padding-bottom: 4px;
}


