:root {
  --yellow: #F4DA00;
  --green: #009537;
  --dark-bg: #121212;
  --card-bg: #1e1e1e;
}

body {
  font-size: 16px; /* Default size for the body */
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: var(--dark-bg);
  color: #ffffff;
}

header {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--yellow);
}

main {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.section {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section h2 {
  font-size: 2rem; /* Larger heading for better visibility */
  color: var(--yellow);
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.grid {
  display: -ms-grid; /* For older versions of Edge and IE */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  margin-top: 2rem;
}


.card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  width: 100%;
  max-width: 300px;
}

.card h3 {
  font-size: 1.2rem; /* Adjust card heading size */
}

.card:hover {
  transform: scale(1.03);
}

.card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}



footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  width: 100%;
}

.video-container iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
}

/* Button Styles */
.button-link {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--green);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-link:hover {
  background-color: var(--yellow); /* On hover, the button turns yellow */
  transform: translateY(-2px); /* Slight lift effect */
}

.button-link:active {
  transform: translateY(0); /* Button goes back to normal on click */
}

/* Focus for accessibility */
.button-link:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* Optional: Add a smooth transition effect */
.button-link, .button-link:hover, .button-link:focus {
  transition: background-color 0.3s ease, transform 0.2s ease;
}
