* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
}
.header-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.nav-list {
  display: flex;
  list-style: none; 
}
.nav-link {
  text-decoration: none;
  color: #555;
  padding: 10px 15px;
  font-weight: 500;
}

.nav-link:hover, 
.nav-link.active {
  color: #007bff;
}

a:link, visited, active {
    color: #005; 
    background-color: transparent;
    text-decoration: none;
}
a:hover {
    color: pink;
    background-color: Yellow;
}
/* About Section Base Styling */
.about-section, .home-section, .schedule-section, .teams-section, .rink-section {
  padding: 80px 20px; /* Generous breathing room top and bottom */
  background-color: #fcfcfc;
}

/* Layout Container */
.about-container, .home-container, .teams-container, .rink-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 50px; /* Space between the image and text */
  align-items: center; /* Vertically centers the content next to the image */
}
.schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /*grid-template-columns: minmax(0, 4fr) minmax(0, 1fr); /* Two unequal columns */
  gap: 50px; /* Space between the image and text */
  align-items: center; /* Vertically centers the content next to the image */
}

/* Image Column Styling */
.about-image, .home-image, .schedule-image, .teams-image, .rink-image img {
  width: 100%;
  height: auto;
  border-radius: 12px; /* Smooth, modern rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
  display: block;
}

/* Text Content Column Styling */
.about-content, .home-content, .schedule-content, .teams-content, .rink-content .subheading {
  display: block;
  font-size: 14px;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  color: #007bff; /* Matching the header's blue theme color */
  margin-bottom: 12px;
  font-weight: 600;
}

.about-content, .home-content, .schedule-content, .teams-content, .rink-content   h2 {
  font-size: 36px;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-content, .home-content, .schedule-content, .teams-content, .rink-content  p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Call to Action Button */
.btn-primary {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px); /* Subtle lift effect */
}

th, td {
    border: 1px solid #4A4A4A;
    padding: 8px;
}

/* Responsive design for Mobile/Tablets */
@media (max-width: 768px) {
  .about-container, .home-container, .schedule-container, .teams-container, .rink-container {
    grid-template-columns: 1fr; /* Stacks image on top of text on mobile */
    gap: 30px;
  }
  
  .about-content, .home-content, .schedule-content, .teams-content, .rink-content h2 {
    font-size: 28px; /* Slightly smaller heading for mobile screens */
  }
}

