@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;550;600;650;700;800&display=swap");

@media screen and (min-width: 1025px) and (max-width:1300px) {
/* All Pages */
html{
  font-family: "Montserrat", sans-serif;
  height: 100%;
  max-width: 1230px;
  width: 100%;
}

body {
  margin: 0;
  padding-top: 350px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 5%;
}

.section-divider {
  width: 80%;
  margin: 0px auto;
  border: none;
  border-top: 1px solid #454545;
}

/* index.php */
#welcome {
  text-align: center;
  color: #454545;
  margin: 0 5% 5%;
}

#welcome h1 {
  padding: 2% 3% 0;
  font-size: 3rem;
  font-weight: 800;
}

#welcome p{
  padding: 0 2% 1%;
  font-size: 1.3rem;
}

#weather-forecast {
  text-align: center;
  margin: 5% 10% 0;
}

#weather-forecast h1{
  font-size: 3rem;
  text-align: center;
  font-weight: 800;
  color: #454545;
}

.weather-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.weather-day {
  background: #2DAEF3;
  padding: 10px;
  border-radius: 10px;
  width: 150px;
}

.weather-day h4{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.weather-day p {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

#snow-last-week {
  text-align: center;
  margin: 0 auto 5%;
  padding: 15px 10px;
  border-radius: 8px;
}

#snow-last-week h2 {
  font-size: 2.8rem;
  color: #454545;
  font-weight: 700;
}

#snow-last-week p {
  font-size: 1.5rem;
  color: #454545;
  font-weight: 600;
}

#buy-permits {
  width: 100%;
  text-align: center;
  margin-bottom: 5%;
}

#permits-info {
  margin: 5% 10%;
}

#permits-info p a:hover {
  color: #2DAEF3 !important;
}

#permits-info p a:visited {
  color: #151EA1;
}

#permits-info p {
  font-size: 1rem;
  color: #454545;
  font-weight: 500;
}

#permits-info h2 {
  font-size: 2.4rem;
  color: #454545;
}

#permits-info h4 {
  font-size: 1.1rem;
  color: #454545;
}

#permits-info h3 {
  font-size: 1.3rem;
  color: #151EA1;
}

#permits-info h3 a:hover {
  color: #2DAEF3 !important;
}

#permits-info h3 a:visited {
  color: #151EA1;
}

#buy-permits img {
  width: 20%;
  height: auto;
  margin-bottom: 30px;
}

#kids-trained {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin: 5% 0%;
  text-align: center;
}

#kids-info {
  width: 60%;
  border-radius: 5px;
  background-color: #454545;
  color: white;
  padding: 2% 1%;
}

#kids-info h2 {
  font-size: 1.8rem;
}

#kids-info p {
  font-size: 1rem;
  margin-right: 3%;
  margin-left: 3%;
}

#kids-info a {
  display: inline-block;
  background-color: white;
  color: #454545;
  text-decoration: none;
  padding: 2%;
  border-radius: 5px;
  margin-bottom: 2%;
  font-weight: 600;
  font-size: 1.3rem;
  transition: background-color 0.3s ease;
}

#kids-info a:hover {
  background-color: #2DAEF3;
  color: white;
  border: black 3px solid;
  font-weight: 700;
}

#trail-guides {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 5% auto;
  text-align: center;
  color: #454545;
}

#trail-guides h1 {
  margin-top: 0;
  margin-bottom: 2%;
  font-size: 3rem;
  font-weight: 800;
  border-bottom: 2px solid #454545;
  padding-bottom: 0px;
}

#trail-guides h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1% auto;
  border-bottom: 2px solid #454545;
}

#trail-guides ul {
  list-style-type: none;
  width: 60%;
  padding: 0;
  margin: 0;
  text-align: center;
}

#trail-guides li {
  margin: 5% auto;
}

#trail-guides img {
  margin: 5% auto;
  width: 100%;
  height: auto;
}

#trail-guides li a {
  font-size: 1.3rem;
  font-weight: 500;
  color: #151EA1;
}

#desktop-trailguides {
  display: none;
}

#trail-guides li a:hover {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2DAEF3;
}

#advertise-with-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 5% 0;
  text-align: center;
}

#advertise-info {
  width: 50%;
  border-radius: 5px;
  background-color: #454545;
  color: white;
}

#advertise-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 2% auto;
}

#advertise-info img {
  width: 30%;
  height: auto;
  margin: 4% auto 2%;
}

#advertise-info h4 {
  font-size: 1.7rem;
  margin: 3% auto;
  font-weight: 700;
}

#advertise-info p {
  font-size: 1.2rem;
  margin: 3%;
}

#advertise-info p:last-child {
  margin-bottom: 5%;
}

#advertise-info a {
  color: white;
}

#advertise-info a:hover {
  color: #2DAEF3;
}

#advertise-with-us-mobile{
  display: none;
}

#ads {
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background-color: #cccccc;
  flex-wrap: nowrap;       
  overflow-x: auto;     
  -webkit-overflow-scrolling: touch;
}

#ads a {
  display: inline-block;
  flex: 0 0 auto;               
}

.ad-image {
  height: clamp(120px, 9vw, 190px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

#ads > a:first-child { 
  margin-inline-start: 18px; 
}

#ads > a:last-child  { 
  margin-inline-end: 18px; 
}

#mobile-divider {
  display: none;
}

/* header.php */
.desktop-header {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 400px;
  background-image: url("images/indexgroup.png");
  background-size: cover;
  background-position: 70% 45%;
  background-repeat: no-repeat;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: height 0.3s ease, background-position 0.3s ease;
  overflow: hidden;
}

.mobile-header {
  display: none;
}

#desktoplogo {
  height: 100px;
  width: auto;
  transition: height 0.3s ease;
  justify-content: left;
  margin: 0 2% 0 1%;
}

#permits-header {
  padding-top: 15px;
  height: 50px;
  width: 50px;
}

#permits-header-desktop {
  display: none;
}

#permits-header-facebook {
  height: 50px;
  width: 50px;
  padding-top: 10px;
}

#permits-header:hover {
  padding-top: 15px;
  height: 65px;
  width: 65px;
}

#permits-header-facebook:hover{
  height: 65px;
  width: 65px;
  padding-top: 10px;
}

.desktop-header.scrolled #desktoplogo {
  height: 90px;
  margin: 0 2%;
}

.desktop-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.desktop-header.scrolled {
  height: 160px;
  background-position: top;
}



.desktopnav {
  height: 100%;
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: -8% 0 0px 0;
  position: relative;
  display: flex;
  align-items:center;
  justify-items: center;
  justify-content: space-between;
  z-index: 2;
}

.desktopnav.scrolled {
  height: 100%;
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0px 0 0px 0;
  position: relative;
  display: flex;
  align-items:center;
  justify-items: center;
  justify-content: space-between;
  z-index: 2;
}

.desktopnav nav {
  display: flex;
  margin: 0 3% 0;
}

.desktopnav nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5%;
  padding: 0;
  margin: 0 2% 0;
  list-style: none;
  white-space: nowrap;
}

.desktopnav nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.7rem;
  font-weight: 650;
  transition: color 0.2s;
  padding: auto;
}

.desktopnav nav ul li a:hover {
  color: #2DAEF3;
  border-radius: 2px;
  padding: 5px 7px;
  font-size: 1.9rem;
  font-weight: 800;
}

.desktopnav nav ul li.dropdown {
  position: relative;
}

.desktopnav nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 0;
  list-style: none;
  min-width: 160px;
}

.desktopnav nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

.desktopnav nav ul li .dropdown-menu li {
  width: 100%;
  padding: 0;
}

.desktopnav nav ul li .dropdown-menu li a {
  display: block;
  margin-top: 2%;
  padding: 10px 15px;
  color: white;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.desktopnav nav ul li .dropdown-menu li a:hover {
  color: #2DAEF3;
  font-size: 1.9rem;
  font-weight: 800;
}

.desktopnav nav ul li.dropdown > a::after {
  content: " ▼";
  font-size: 1.2rem;
}

a:hover,
button:hover,
.dropdown:hover,
.dropdown-menu li a:hover {
  cursor: pointer;
}

.desktop-header.scrolled.dropdown-open {
  overflow: visible;
}

.desktop-header.scrolled.dropdown-open::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/indexgroup.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}

.desktopnav .dropdown .dropdown-menu {
  z-index: 3;
  position: absolute;
}

/* footer.php */
#footer-links {
  width: 100%;
  padding: 0;
  margin: 0;
}

#footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #999999;
}

.logo-box {
  width: auto;
  height: 100px;
  margin: 0 1%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#copyright {
  background-color: #454545;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  padding: 7px 0;
}

/* trails.php */
#trails-main {
  max-width: 1230px;
}

#trail-report {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 0px auto 5%;
}

#trail-report h1 {
  padding: 0;
  margin: 30px auto 0;
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
}

#trail-report h3 {
  padding: 0;
  margin: 2% 5% 5%;
  font-size: 1.5rem;
  font-weight: 700;
  color: #454545;
}

#report-header {
  margin: 0;
  padding: 0;
}

#trail-signs ul {
  list-style-type: none;
  padding: 0;
  margin: 4%;
  text-align: center;
  border-radius: 3px;
}

.sign-info {
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1rem;
  font-weight: 500;
}

.sign-header {
  font-weight: 600;
  font-size: 1.4rem;
  padding-top: 15px;
  padding-bottom: 20px;
}

.unavailable {
  background-color: #CC3A28;
  color: #ffffff;
}

.limited {
  background-color: #FAD464;
  color: #272727;
}

.available {
 background-color: #92D050;
 color: #272727;
}

.itrimg {
  width: 100%;
  height: auto;
  margin: 4% auto;
}

.itrimg-desktop {
  display: none;
}

.desktop-trailguides {
  display: none;
}

#all-trails {
  margin: 5% auto 5%;
  width: 80%;
}

#all-trails h1 {
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
}

.trail-details {
  margin: 2% 5% 3%;
  background-color: #454545;
  border-radius: 3px;
  color: #ffffff;
}

.trail-details p:first-child {
  padding-top: 30px;
}

.trail-details p {
  margin: 2% 5%;
}

.trail-details p:last-child {
  padding-bottom: 30px;
}

#trail-mileage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 5% auto;
}

#trail-block {
  background-color: #454545;
  color: #ffffff;
  margin: 0 5%;
  border-radius: 3px;
}

#mileage-info {
  margin: 3% 4% 1%;
}

#mileage-info h2 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 2.2rem;
}

#mileage-info p {
  margin: 0 10%;
  padding-bottom: 0px;
  font-size: 1.2rem;
}

#mileage-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3%;
}

.destination-table {
  border-collapse: collapse;
  margin: 2% auto;
}

.destination-table th {
  font-size: 1.4rem;
  padding: 8px 0;
  border-bottom: 3px solid #ccc;
}

.destination-table td {
  font-size: 1.2rem;
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

.destination-table tr:last-child td {
  border-bottom: none;
}

.destination-table .destination {
  text-align: left;
  padding-right: 80px;
}

.destination-table .kms,
.destination-table .miles {
  text-align: right;
  padding-left: 40px;
}

#need-volunteers {
  margin: 5% 10%;
  color: #454545;
}

#need-volunteers h1{
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 4%;
}

#need-volunteers p{
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 auto 5%;
}

.volunteer-btn {
  display: inline-block;
  background-color: #454545;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 15px 27px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.volunteer-btn:hover {
  background-color: #2DAEF3;
  color: #fff;
  font-weight: 800;
  font-size: 1.6rem;
}

/* news.php */
#news-main {
  max-width: 1230px;
  width: 100%;
}

#news-post {
  width: 100%;
  max-width: 1230px;
  text-align: center;
  color: #454545;
}

.index-news {
  margin-bottom: 5%;
}

#latest-new h1 {
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
  display: inline-block;
  margin: 0;
  padding: 3% 3%;
}

#news-post h4 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 5% auto 1%;
}

#news-post small {
  display: block;
  font-size: 1.2rem;
  margin: 0% auto 3%;
}

#news-post img {
  width: 50%;
  height: auto;
  border-radius: 5px;
}

#news-post p {
  padding: 2% 5% 2%;
  font-size: 1.1rem;
}

#news-description {
  text-align: left;
  margin: 0 4%;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.read-more-btn {
  display: inline-block;
  margin: 0px auto 5%;
  padding: 10px 20px;
  background-color: #454545;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #2DAEF3;
  color: white;
  font-size: 1.7;
  font-weight: 800;
}

#show-more-btn {
  background-color: #454545;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

#show-more-btn:hover {
  background-color: #2DAEF3;
  font-size: 1.7rem;
  font-weight: 800;
}

#newsletter-list {
  margin: 5% auto;
  text-align: center;
  width: 80%;
}

#newsletter-list h3 {
  margin-bottom: 3%;
  color: #454545;
  font-size: 2.4rem;
  font-weight: 800;
}

#newsletter-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#newsletter-list li {
  margin-bottom: 10px;
  list-style: none;
}

#newsletter-list a {
  color: #151EA1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  font-weight: 500;
}

#newsletter-list a:hover {
  text-decoration: underline;
  color: #2DAEF3;
}

/* aboutus.php */
#main-about {
  width: 100%;
  max-width: 1230px;
  color: #454545;
}

#aboutstr {
  margin: 5% auto;
  width: 70%;
}

#aboutstr h1 {
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
  display: inline-block;
  margin: 0;
  padding-bottom: 30px;
}

#aboutstr h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0% 10% 4%;
  padding-top: 20px;
  text-align: left;
}

#aboutstr img {
  width: 80%;
  height: auto;
  border-radius: 5px;
}

#aboutstr p {
  margin: 4% 10% 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}

#volunteer-section {
  margin: 5% 0;
}

#volunteer-section section {
  width: 80%;
  margin: 0 auto;
}

#volunteer-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4%;
  text-align: center;
}

#volunteer-section h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3%;
  margin-bottom: 3%;
  color: #454545;
  text-align: center;
}

#volunteer-section p {
  line-height: 1.6em;
  font-size: 1.1rem;
  font-weight: 500;
}

#volunteer-section ul {
  list-style: disc;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  width: 70%;
}

#volunteer-section li {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding-left: 20px;
  margin-left: 5%;
  position: relative;
}

#photogallery {
  text-align: center;
  width: 90%;
  margin: 5% auto;
  color: #454545;
}

#photogallery h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 6%;
}

#photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#photos img {
  width: 60%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

#pagination {
  margin-top: 25px;
}

#pagination a,
#pagination span {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #454545;
  font-weight: 500;
  border: 1px solid #454545;
  transition: all 0.2s ease;
}

#pagination a:hover {
  background-color: #151EA1;
  color: #fff;
}

#pagination .active {
  background-color: #454545;
  color: #fff;
  border: 1px solid #fff;
}

#driver-training {
  margin: 2% auto 0;
  color: #454545;
  width: 70%;
}

#driver-training h1{
  font-size: 3rem;
  margin: 0% auto 4%;
  padding-top: 20px;
  font-weight: 800;
}

#driver-training p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
}

#driver-training p a{
  color: #151EA1;
}

#driver-training p a:hover{
  color: #2DAEF3;
}

#hand-signals {
  display: flex;
  flex-direction: column;
  gap: 4%;
  padding: 10px;
  margin: 1% auto 5%;
  width: 80%;
  color: #454545;
}

#hand-signals ul {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 2% 4%;
}

#hand-signals ul img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}

#hand-signals .text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

#hand-signals .text strong {
  font-size: 1.4rem;
  font-weight: 700;
}

#hand-signals .text span {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4em;
}

/* volunteer.php */
#volunteer-header {
  margin: 2% auto 5%;
  width: 60%;
}

#volunteer-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #454545;
  text-align: center;
}

#volunteer-header p {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1% auto;
  padding-left: 3%;
  line-height: 1.8rem;
  text-align: left;
}

#need-volunteers {
  margin: 5% auto;
  width: 50%;
  color: #454545;
}

#need-volunteers h1{
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 4%;
}

#need-volunteers p{
  font-size: 1.4rem;
  font-weight: 500;
  margin: 5% auto 8%;
}

.volunteer-btn {
  display: inline-block;
  background-color: #454545;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 15px 27px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.volunteer-btn:hover {
  background-color: #2DAEF3;
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
}

#joinus {
  margin: 5% auto;
}

#joinus h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #454545;
}

#volunteerFrm {
  width: 40%;
  margin: 1% auto;
  text-align: center;
}

#volunteerFrm p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  text-align: left;
  margin: 1% auto 4%;
  color: #454545;
}

#volunteerFrm textarea {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #ccc;
  padding: 10px 12px;
  height: 200px;
  font-size: 1rem;
}

#volunteerFrm form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

#volunteerFrm input[type="text"],
#volunteerFrm input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

#volunteerFrm input[type="text"]:hover,
#volunteerFrm input[type="email"]:hover,
#volunteerFrm input[type="text"]:focus,
#volunteerFrm input[type="email"]:focus,
#volunteerFrm textarea:focus,
#volunteerFrm textarea:hover {
  border: 4px solid #2DAEF3;
}

#volunteerFrm button {
  background-color: #454545;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  width: 60%;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#volunteerFrm button:hover {
  background-color: #2DAEF3;
  font-size: 1.8rem;
  font-size: 700;
}



/* contactus.php */
#contactform {
  width: 100%;
  max-width: 1230px;
  margin: 0;
  color: #454545;
}

#directory {
  margin: 5% auto;
  width: 60%;
}

#directory h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 5% 0;
  text-align: center;
  color: #454545;
}

.contact-table {
  width: 100%;
  margin: 5% auto;
  padding: 0 30px;
  box-sizing: border-box;
}

.toggle {
  display: block;
  width: 100%;
  background-color: #454545;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.toggle:hover {
  background-color: #2DAEF3;
  font-weight: 700;
  font-size: 1.7rem;
}

.contact-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  box-sizing: border-box;
  word-break: break-word;
}

.contact-table th,
.contact-table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}

.contact-table th {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #454545;
}

.contact-table a {
  color: #454545;
  text-decoration: none;
  font-weight: 500;
}

#directory > hr.section-divider {
  margin-top: 40px !important;
}

.contact-table a:hover {
  text-decoration: underline;
}

.contact-table tbody {
  display: none;
}
.contact-table tbody.visible {
  display: table-row-group;
}

.contactFrm {
  width: 80%;
  max-width: 700px;
  margin: 5% auto;
  text-align: center;
  color: #454545;
}

.contactFrm h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contactFrm form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contactFrm label {
  width: 100%;
  text-align: left;
  font-weight: 600;
  max-width: 500px;
  font-size: 1.2rem;
  color: #333;
}

.contactFrm input[type="text"],
.contactFrm input[type="email"],
.contactFrm textarea {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 2% auto;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.contactFrm input:hover,
.contactFrm textarea:hover,
.contactFrm input:focus,
.contactFrm textarea:focus {
  border: 3px solid #2DAEF3;
}

.contactFrm button {
  max-width: 200px;
  width: 100%;
  margin: 10px auto 0;
  background-color: #454545;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contactFrm button:hover {
  background-color: #2DAEF3;
  font-size: 1.6rem;
  font-weight: 700;
}

/* community.php */
#links {
  margin: 0 auto 5%;
  color: #454545;
}

#linkstitle {
  width: 70%;
  margin: 0 auto 5%;
}

#linkstitle h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4%;
  text-align: center;
}

#linkstitle p {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.8rem;
}

#communities {
  margin: 5% auto;
  width: 80%;
  color: #454545;
}

#communities h1{
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5%;
  text-align: center;
}

.community {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.community h4{
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: left;
}

.community img{
  width: 300px;
  height: auto;
  border-radius: 3px;
  object-fit: cover;
  margin: 1% auto 0;
}

.community p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 15px;
  text-align: left;
}

.community-info a{
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #454545;
  color: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

.community-info a:hover{
  font-size: 1.7rem;
  font-weight: 700;
  background-color: #2DAEF3;
}

#snowclubs h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1% 5% 5%;
  padding-top: 20px;
}

#snowclubs a {
  font-size: 1.3rem;
  color: #151EA1;
  font-weight: 500;
  margin: 2% 5% 3%;
  display: block;
}

#snowclubs a:hover{
  color: #2DAEF3;
  font-size: 1.5rem;
  font-weight: 600;
}

/* upload_form.html */
#picture-upload {
  margin: 5% auto;
  color: #454545;
}

#picture-upload h3 {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin: 0px auto 3%;
}

#picture-upload p {
  width: 50%;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.6rem;
  margin: 3% auto;
}

#picture-upload h3 {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin: 10px auto;
}

#picture-upload input {
  margin: 2% auto;
}

#picture-upload button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #454545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.2s;
}

#picture-upload button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #2DAEF3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: 0.2s;
}

}

@media screen and (min-width: 1301px) {
/* All Pages */
html{
  font-family: "Montserrat", sans-serif;
  height: 100%;
  min-width: 100%;
  cursor: default;
}

body {
  margin: 0 auto;
  padding-top: 350px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 5%;
}

.section-divider {
  width: 80%;
  margin: 0px auto;
  border: none;
  border-top: 1px solid #454545;
}

/* index.php */
#welcome {
  color: #454545;
  margin: 0 10% 5%;
}

#welcome h1 {
  padding: 2% 3% 2%;
  font-size: 3rem;
  text-align: center;
  font-weight: 800;
}

#welcome p{
  padding: 0 15% 1%;
  font-size: 1.3rem;
  text-align: left;
  margin: 0 auto;
}

#weather-forecast {
  text-align: center;
  margin: 5% 10% 0;
}

#weather-forecast h1{
  font-size: 3rem;
  text-align: center;
  font-weight: 800;
  color: #454545;
}

.weather-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.weather-day {
  background: #2DAEF3;
  padding: 10px;
  border-radius: 10px;
  width: 150px;
}

.weather-day h4{
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.weather-day p {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
}

#snow-last-week {
  text-align: center;
  margin: 0 auto 5%;
  padding: 15px 10px;
  border-radius: 8px;
}

#snow-last-week h2 {
  font-size: 2.8rem;
  color: #454545;
  font-weight: 700;
}

#snow-last-week p {
  font-size: 1.5rem;
  color: #454545;
  font-weight: 600;
}

#buy-permits {
  width: 100%;
  text-align: center;
  margin-bottom: 5%;
}

#permits-info {
  margin: 5% 20% 3%;
}

#permits-info p a:hover {
  color: #2DAEF3 !important;
}

#permits-info p a:visited {
  color: #151EA1;
}

#permits-info p {
  font-size: 1.1rem;
  color: #454545;
  font-weight: 500;
  margin: 6% auto;
}

#permits-info h2 {
  font-size: 2.8rem;
  color: #454545;
  font-weight: 700;
  margin: 0 auto 5%;
}

#permits-info h4 {
  font-size: 1.3rem;
  color: #454545;
  margin: 0 auto 4%;
}

#permits-info h3 {
  font-size: 1.5rem;
  color: #151EA1;
  margin: 3% auto 0;
}

#permits-info h3 a:hover {
  color: #2DAEF3 !important;
}

#permits-info h3 a:visited {
  color: #151EA1;
}

#buy-permits img {
  width: 15%;
  height: auto;
}

#kids-trained {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 1231px;
  margin: 5% auto;
}

#kids-info {
  width: 50%;
  border-radius: 5px;
  background-color: #454545;
  color: white;
  padding: 2% 1%;
}

#kids-info h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}

#kids-info p {
  font-size: 1.2rem;
  margin: 4% 10% 6%;
  font-weight: 500;
  text-align: left;
}

#kids-info a {
  display: inline-block;
  background-color: white;
  color: #454545;
  text-decoration: none;
  padding: 2%;
  border-radius: 5px;
  margin-bottom: 2%;
  font-weight: 700;
  font-size: 1.6rem;
  transition: background-color 0.3s ease;
  text-align: center;
}

#kids-info a:hover {
  background-color: #2DAEF3;
  color: white;
  border: black 3px solid;
  font-size: 1.8rem;
  font-weight: 800;
}

#trail-guides {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 5% auto;
  text-align: center;
  color: #454545;
}

#desktop-trailguides {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 2%;
}

.non-desktop {
  display: none;
}

#trail-guides h2 {
  margin: 2% auto;
  text-align: center;
}

#trail-guides h2 a {
  display: inline-block;
  background-color: #454545;
  color: white;
  text-decoration: underline;
  padding: 15px 25px;
  margin: 0;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

#trail-guides h2 a:hover{
  background-color: #2DAEF3;
  border: black 3px solid;
  font-weight: 800;
  font-size: 1.7rem;
  color: white;
}

#trail-guides h3 {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 2% auto;
}

#trail-guides ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 50%;
  text-align: center;
}

#trail-guides img {
  margin: 5% auto;
  width: 100%;
  height: auto;
}

#trail-guides li {
  margin: 7% auto;
}

#trail-guides li a {
  font-size: 1.7rem;
  font-weight: 500;
  color: #151EA1;
}

#trail-guides li a:hover {
  font-size: 1.9rem;
  font-weight: 700;
  color: #2DAEF3;
}

#advertise-with-us-mobile{
  display: none;
}


#advertise-with-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 5% auto;
  text-align: center;
}

#advertise-info {
  width: 50%;
  border-radius: 5px;
  background-color: #454545;
  color: white;
}

#advertise-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 2% auto 4%;
}

#advertise-info img {
  width: 23%;
  height: auto;
  margin: 5% auto 2%;
}

#advertise-info h4 {
  font-size: 1.9rem;
  margin: 4% auto;
  font-weight: 700;
}

#advertise-info p {
  font-size: 1.2rem;
  margin: 4% 10%;
  font-weight: 500;
}

#advertise-info p:last-child {
  margin-bottom: 5%;
}

#advertise-info a {
  color: white;
}

#advertise-info a:hover {
  color: #2DAEF3;
}

#ads {
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background-color: #cccccc;
}

#ads a {
  display: inline-block;
  flex-shrink: 0;
}

.ad-image {
  height: clamp(75px, 8vw, 150px);
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

#mobile-divider {
  display: none;
}


/* header.php */
.desktop-header {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 430px;
  background-image: url("images/indexgroup.png");
  background-size: cover;
  background-position: 70% 45%;
  background-repeat: no-repeat;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: height 0.3s ease, background-position 0.3s ease;
  overflow: hidden;
}

.mobile-header {
  display: none;
}

.desktopnav > a {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

:root {
  --vw-start: 1231px;
  --vw-end: 1450px;
  --range: calc(var(--vw-end) - var(--vw-start)); /* 219px (for reference) */
  --slope: 0.1598; /* ≈ (35px / 219px) growth per px */

  /* Smaller starting sizes at 1231px */
  --logo-min: 85px;
  --logo-max: 140px;

  --perm-min: 85px;
  --perm-max: 130px;
}

#desktoplogo {
  height: clamp(
    var(--logo-min),
    calc(var(--logo-min) + (100vw - var(--vw-start)) * var(--slope)),
    var(--logo-max)
  );
  width: auto;
  transition: height 0.3s ease; /* why: smooth on resize */
  justify-content: left;
  margin: 0 2% 0;
}

#permits-header-desktop {
  padding-top: 15px;
  height: clamp(
    var(--perm-min),
    calc(var(--perm-min) + (100vw - var(--vw-start)) * var(--slope)),
    var(--perm-max)
  );
  width: clamp(
    var(--perm-min),
    calc(var(--perm-min) + (100vw - var(--vw-start)) * var(--slope)),
    var(--perm-max)
  );
  filter:
    drop-shadow(0 0 25px rgba(0,0,0,0.5))
    drop-shadow(0 0 45px rgba(0,0,0,0.4))
    drop-shadow(0 0 65px rgba(0,0,0,0.3));
  margin: 0 2%;
}

#permits-header {
  display: none;
}

#permits-header-facebook {
  height: 55px;
  width: 55px;
  padding-top: 10px;
  margin-left: 6px;
}

#permits-header-desktop:hover {
  padding-top: 15px;
  height: 140px;
  width: 140px;
}

#permits-header-facebook:hover{
  height: 65px;
  width: 65px;
  padding-top: 10px;
}

.desktop-header.scrolled #desktoplogo {
  height: 110px;
}

.desktop-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.desktop-header.scrolled {
  height: 160px;
  background-position: top;
}

.desktop-header.dropdown-active {
  height: 340px;
}

.desktopnav {
  height: 100%;
  width: 100%;
  padding: 0px 0px 0px 0px;
  transform: translateY(-20%);
  position: relative;
  display: flex;
  align-items:center;
  justify-items: center;
  justify-content: space-between;
  z-index: 2;
}

.desktopnav.scrolled {
  height: 100%;
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0px 0 0px 0;
  position: relative;
  display: flex;
  align-items:center;
  justify-items: center;
  justify-content: space-between;
  z-index: 2;
  transform: translateY(0%);
}



.desktopnav nav {
  display: flex;
  margin: 0 3% 0;
}

.desktopnav nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2%;
  padding: 0;
  margin: 0 4% 0 2%;
  list-style: none;
  white-space: nowrap;
}

.desktopnav nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  transition: color 0.2s;
}

.desktopnav nav ul li a:hover {
  color: #2DAEF3;
  border-radius: 2px;
  font-size: 2.2rem;
  font-weight: 800;
}

.desktopnav nav ul li.dropdown {
  position: relative;
}

.desktopnav nav ul li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 0;
  list-style: none;
  min-width: 160px;
}

.desktopnav nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

.desktopnav nav ul li .dropdown-menu li {
  width: 100%;
  padding: 0;
}

.desktopnav nav ul li .dropdown-menu li a {
  display: block;
  margin-top: 2%;
  padding: 10px 15px;
  color: white;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.desktopnav nav ul li .dropdown-menu li a:hover {
  color: #2DAEF3;
  font-size: 2.2rem;
  font-weight: 800;
}

.desktopnav nav ul li.dropdown > a::after {
  content: " ▼";
  font-size: 1.2rem;
}

a:hover,
button:hover,
.dropdown:hover,
.dropdown-menu li a:hover {
  cursor: pointer;
}

.desktop-header.scrolled.dropdown-open {
  overflow: visible;
}

.desktop-header.scrolled.dropdown-open::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/indexgroup.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}

.desktopnav .dropdown .dropdown-menu {
  z-index: 3;
  position: absolute;
}


/* footer.php */
#footer-links {
  width: 100%;
  padding: 0;
  margin: 0;
}

#footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #999999;
}

.logo-box {
  width: auto;
  height: 100px;
  margin: 0 1%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#copyright {
  background-color: #454545;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  padding: 7px 0;
}

/* trails.php */
#trails-main {
  min-width: 1231px;
}

.report-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.report-flex > a {
  display: flex;
  justify-content: center;
  margin: auto;
  max-height: 490px;
}

#trail-report {
  width: 80%;
  margin: 5% auto;
}

.itrimg-desktop {
  width: 75%;
  max-width: 450px;
  height: auto;
}

.report-flex > a,
#trail-signs {
  flex: 1;
}

#trail-report h1 {
  padding: 0;
  margin: 0 auto 2%;
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
}

#trail-report h3 {
  padding: 0;
  margin: 2% 5% 5%;
  font-size: 1.7rem;
  font-weight: 700;
  color: #454545;
}

#report-header {
  margin: 0;
  padding: 0;
}

#trail-signs ul {
  list-style-type: none;
  padding: 0;
  margin: 4%;
  text-align: center;
  border-radius: 3px;
  width: 100%;
}

.sign-info {
  padding: 0 30px 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.sign-header {
  font-weight: 700;
  font-size: 1.6rem;
  padding-top: 15px;
  padding-bottom: 20px;
}

.unavailable {
  background-color: #CC3A28;
  color: #ffffff;
}

.limited {
  background-color: #FAD464;
  color: #272727;
}

.available {
 background-color: #92D050;
 color: #272727;
}

.itrimg {
  display: none;
}

#all-trails {
  margin: 5% auto;
  width: 50%;
}

#all-trails h1 {
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
}

.trail-details {
  margin: 3% auto 4%;
  background-color: #454545;
  border-radius: 3px;
  color: #ffffff;
}

.trail-details p:first-child {
  padding-top: 35px;
}

.trail-details p {
  margin: 3% 7%;
  font-size: 1rem;
  font-weight: 500;
}

.trail-details strong {
  font-size: 1.2rem;
}

.trail-details p:last-child {
  padding-bottom: 30px;
}

#trail-mileage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 5% auto;
}

#trail-block {
  background-color: #454545;
  color: #ffffff;
  margin: 5% 5%;
  border-radius: 3px;
}

#mileage-info {
  margin: 3% 4% 1%;
}

#mileage-info h2 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
}

#mileage-info p {
  margin: 0 10%;
  padding-bottom: 0px;
  font-size: 1.2rem;
  font-weight: 500;
}

#mileage-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3%;
}

.destination-table {
  border-collapse: collapse;
  margin: 4% auto;
}

.destination-table th {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 3px solid #ccc;
}

.destination-table td {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

.destination-table tr:last-child td {
  border-bottom: none;
}

.destination-table .destination {
  text-align: left;
  padding-right: 80px;
}

.destination-table .kms,
.destination-table .miles {
  text-align: right;
  padding-left: 40px;
}

/* volunteer.php */
#volunteer-header {
  margin: 2% auto 5%;
  width: 60%;
}

#volunteer-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #454545;
  text-align: center;
}

#volunteer-header p {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 1% auto;
  padding-left: 3%;
  line-height: 1.8rem;
  text-align: left;
}

#need-volunteers {
  margin: 5% auto;
  width: 50%;
  color: #454545;
}

#need-volunteers h1{
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 4%;
}

#need-volunteers p{
  font-size: 1.4rem;
  font-weight: 500;
  margin: 5% auto 8%;
}

.volunteer-btn {
  display: inline-block;
  background-color: #454545;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 15px 27px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.volunteer-btn:hover {
  background-color: #2DAEF3;
  color: #fff;
  font-weight: 800;
  font-size: 1.8rem;
}

#joinus {
  margin: 5% auto;
}

#joinus h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #454545;
}

#volunteerFrm {
  width: 40%;
  margin: 1% auto;
  text-align: center;
}

#volunteerFrm p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  text-align: left;
  margin: 1% auto 4%;
  color: #454545;
}

#volunteerFrm textarea {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #ccc;
  padding: 10px 12px;
  height: 200px;
  font-size: 1rem;
}

#volunteerFrm form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

#volunteerFrm input[type="text"],
#volunteerFrm input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

#volunteerFrm input[type="text"]:hover,
#volunteerFrm input[type="email"]:hover,
#volunteerFrm input[type="text"]:focus,
#volunteerFrm input[type="email"]:focus,
#volunteerFrm textarea:focus,
#volunteerFrm textarea:hover {
  border: 4px solid #2DAEF3;
}

#volunteerFrm button {
  background-color: #454545;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 0;
  width: 60%;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#volunteerFrm button:hover {
  background-color: #2DAEF3;
  font-size: 1.8rem;
  font-size: 700;
}

/* news.php */
#news-main {
  min-width: 1231px;
  width: 100%;
}

#news-post {
  width: 100%;
  min-width: 1231px;
  text-align: center;
  color: #454545;
}

#latest-new h1 {
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
  display: inline-block;
  margin: 0 auto -2%;
  padding: 3% 3%;
}

#news-post h4 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 5% auto 1%;
}

#news-post small {
  display: block;
  font-size: 1.3rem;
  margin: 2% auto 3%;
}

#news-post img {
  width: 50%;
  height: auto;
  border-radius: 5px;
}

#news-post p {
  padding: 2% 5% 2%;
  font-size: 1.1rem;
  width: 50%;
  margin: 2% auto 0;
}

#news-description {
  text-align: left;
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.read-more-btn {
  display: inline-block;
  margin: 0px auto 5%;
  padding: 10px 20px;
  background-color: #454545;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #2DAEF3;
  color: white;
  font-size: 1.7;
  font-weight: 800;
}

#show-more-btn {
  background-color: #454545;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 30px;
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

#show-more-btn:hover {
  background-color: #2DAEF3;
  font-size: 1.9rem;
  font-weight: 700;
}

#newsletter-list {
  margin: 5% auto;
  text-align: center;
  width: 60%;
}

#newsletter-list h3 {
  margin-bottom: 3%;
  color: #454545;
  font-size: 2.6rem;
  font-weight: 800;
}

#newsletter-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#newsletter-list li {
  margin-bottom: 10px;
  list-style: none;
}

#newsletter-list a {
  color: #151EA1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
  font-weight: 500;
}

#newsletter-list a:hover {
  text-decoration: underline;
  color: #2DAEF3;
  font-size: 1.8rem;
  font-weight: 600;
}

/* aboutus.php */
#main-about {
  width: 100%;
  min-width: 1231px;
  color: #454545;
}

#aboutstr {
  margin: 3% auto 5%;
  width: 60%;
}

#aboutstr h1 {
  color: #454545;
  font-size: 3rem;
  font-weight: 800;
  display: inline-block;
  margin: 0;
  padding-bottom: 30px;
}

#aboutstr h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0% 5% 5%;
  padding-top: 20px;
  text-align: left;
}

#aboutstr img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

#aboutstr p {
  margin: 4% 5% 0;
  font-size: 1.3rem;
  text-align: left;
  font-weight: 500;
}

#volunteer-section {
  margin: 5% auto;
}

#volunteer-section section {
  width: 60%;
  margin: 0 auto;
}

#volunteer-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5%;
  text-align: center;
}

#volunteer-section h4 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 4%;
  margin-bottom: 3%;
  color: #454545;
  text-align: center;
}

#volunteer-section p {
  line-height: 1.6;
  font-size: 1.3rem;
  margin: 0 auto 4%;
  font-weight: 500;
}

#volunteer-section ul {
  list-style: disc;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  width: 70%;
}

#volunteer-section li {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding-left: 20px;
  margin-left: 5%;
  position: relative;
}

#photogallery {
  text-align: center;
  width: 100%;
  margin: 5% auto;
  color: #454545;
}

#photogallery h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 auto 4%;
}

#photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#photos img {
  width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

#pagination {
  margin-top: 25px;
}

#pagination a,
#pagination span {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #454545;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid #454545;
  transition: all 0.2s ease;
}

#pagination a:hover {
  background-color: #2DAEF3;
  color: #fff;
}

#pagination .active {
  background-color: #454545;
  color: #fff;
  font-size: 1.3rem;
  border: 1px solid #fff;
}

#driver-training {
  margin: 2% auto 0;
  color: #454545;
  width: 50%;
}

#driver-training h1{
  font-size: 3rem;
  margin: 0% auto 4%;
  padding-top: 20px;
  font-weight: 800;
}

#driver-training p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
}

#driver-training p a{
  color: #151EA1;
}

#driver-training p a:hover{
  color: #2DAEF3;
}

#hand-signals {
  display: flex;
  flex-direction: column;
  gap: 4%;
  padding: 10px;
  margin: 1% auto 5%;
  color: #454545;
  width: 50%;
}

#hand-signals ul {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 2% auto;
}

#hand-signals ul img {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

#hand-signals .text {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
  margin-left: 1%;
}

#hand-signals .text strong {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1%;
}

#hand-signals .text span {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4em;
}


/* contactus.php */
#contactform {
  width: 100%;
  min-width: 1231px;
  margin: 0;
  color: #454545;
}

#directory {
  margin: 5% auto;
  width: 60%;
}

#directory h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 5% 0;
  text-align: center;
  color: #454545;
}

.contact-table {
  width: 100%;
  margin: 5% auto;
  padding: 0 30px;
  box-sizing: border-box;
}

.toggle {
  display: block;
  width: 100%;
  background-color: #454545;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}

.toggle:hover {
  background-color: #2DAEF3;
  font-weight: 700;
  font-size: 1.7rem;
}

.contact-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  box-sizing: border-box;
  word-break: break-word;
}

.contact-table th,
.contact-table td {
  padding: 10px 15px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 1rem;
}

.contact-table th {
  background-color: #f0f0f0;
  font-weight: 600;
  color: #454545;
}

.contact-table a {
  color: #454545;
  text-decoration: none;
  font-weight: 500;
}

#directory > hr.section-divider {
  margin-top: 40px !important;
}

.contact-table a:hover {
  text-decoration: underline;
}

.contact-table tbody {
  display: none;
}
.contact-table tbody.visible {
  display: table-row-group;
}

.contactFrm {
  width: 80%;
  max-width: 700px;
  margin: 5% auto;
  text-align: center;
  color: #454545;
}

.contactFrm h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contactFrm form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contactFrm label {
  width: 100%;
  text-align: left;
  font-weight: 600;
  max-width: 500px;
  font-size: 1.2rem;
  color: #333;
}

.contactFrm input[type="text"],
.contactFrm input[type="email"],
.contactFrm textarea {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 2% auto;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.contactFrm input:hover,
.contactFrm textarea:hover,
.contactFrm input:focus,
.contactFrm textarea:focus {
  border: 3px solid #2DAEF3;
}

.contactFrm button {
  max-width: 200px;
  width: 100%;
  margin: 10px auto 0;
  background-color: #454545;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contactFrm button:hover {
  background-color: #2DAEF3;
  font-size: 1.6rem;
  font-weight: 700;
}

/* community.php */
#links {
  margin: 0 auto 5%;
  color: #454545;
}

#linkstitle {
  width: 50%;
  margin: 0 auto 5%;
}

#linkstitle h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4%;
  text-align: center;
}

#linkstitle p {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.8rem;
}

#communities {
  margin: 5% auto;
  width: 60%;
  color: #454545;
}

#communities h1{
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5%;
  text-align: center;
}

.community {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.community h4{
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 10px;
  text-align: left;
}

.community img{
  width: 300px;
  height: auto;
  border-radius: 3px;
  object-fit: covers;
  margin: 1% auto 0;
}

.community p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 15px;
  text-align: left;
}

.community-info a{
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #454545;
  color: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
}

.community-info a:hover{
  font-size: 1.7rem;
  font-weight: 700;
  background-color: #2DAEF3;
}

#snowclubs h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1% 5% 5%;
  padding-top: 20px;
}

#snowclubs a {
  font-size: 1.3rem;
  color: #151EA1;
  font-weight: 500;
  margin: 2% 5% 3%;
  display: block;
}

#snowclubs a:hover{
  color: #2DAEF3;
  font-size: 1.5rem;
  font-weight: 600;
}

/* upload_form.html */
#picture-upload {
  margin: 5% auto;
  color: #454545;
}

#picture-upload h3 {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin: 0px auto 3%;
}

#picture-upload p {
  width: 50%;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.6rem;
  margin: 3% auto;
}

#picture-upload h3 {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin: 10px auto;
}

#picture-upload input {
  margin: 2% auto;
}

#picture-upload button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #454545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.2s;
}

#picture-upload button:hover {
  margin-top: 15px;
  padding: 10px 20px;
  background: #2DAEF3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: 0.2s;
}

}