/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* Smooth scrolling when navigating sections */
  html {
    scroll-behavior: smooth;
  }

  /* Custom button hover effect */
  .custom-button:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease-in-out;
  }

  /* Hero overlay enhancement */
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  }

  /* Event card hover */
  .event-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
  }

  /* Footer subtle border */
  footer {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
  }