* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  background: #F3E9DC; /* warm beige */
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  background: #3A8E87; /* teal */
  border-bottom: 3px solid #E27D3A; /* orange accent */
  padding: 10px 0;
}

.site-title {
  font-size: 30px;
  font-weight: bold;
  color: #F3E9DC; /* beige */
  margin-left: 25px;
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.site-logo {
  display: block;
  text-decoration: none;
}

.site-logo img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #F3E9DC;
  font-weight: bold;
}

.nav-menu a:hover {
  background: #E27D3A;
  color: #fff;
}

.homepage-intro {
  padding: 48px 0;
  border-bottom: 2px solid #3A8E87;
  text-align: center;
}

.intro-inner h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #3A8E87;
}

.button {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  margin: 4px;
  transition: all 0.2s ease-in-out;
}

.button-about {
  background: #3A8E87;
  color: #fff;
  border-color: #3A8E87;
}

.button-about:hover {
  background: #2f6f6a;
  color: #E27D3A;
}

.button-events,
.button-pics {
  background: #E27D3A;
  color: #fff;
  border-color: #E27D3A;
}

.button-events:hover,
.button-pics:hover {
  background: #B04A4A;
  color: #fff;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.event-item {
  border: 2px solid #3A8E87;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}

.event-title {
  margin: 6px;
  font-size: 20px;
  color: #3A8E87;
}

.event-meta {
  margin: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #E27D3A;
}

.event-desc {
  margin: 12px;
  font-size: 14px;
  color: #333;
}

.event-item .button {
  margin-top: 6px;
  display: inline-block;
}

.officers-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 12px;
}

.officer-item {
  display: flex;
  justify-content: space-between;
  border: 2px solid #3A8E87;
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
}

.officer-name {
  font-weight: bold;
  color: #3A8E87;
}

.officer-role {
  font-style: italic;
  color: #E27D3A;
}

.mario-run img {
  height: 150px;
}

#calendar iframe {
  border: 0;
  width: 100%;
  max-width: 800px;
  height: 400px;
  display: block;
  margin: 0 auto;
}

.site-footer {
  margin-top: 60px;
  padding: 30px 0;
  text-align: center;
  background: #3A8E87;
  color: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  padding: 16px 12px;
  border: 1px solid white;
  border-radius: 999px;
  color: #F3E9DC;
}

.social-links a:hover {
  background: #E27D3A;
  color: #fff;
}

.footer-note {
  font-size: 14px;
  margin-top: 10px;
}

.gif img { 
  height: 100px; 
  margin: 0 auto; 
  display: block;
}



@media (max-width: 640px) {
  .header-content { 
    gap: 12px; 
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-logo img { 
    width: 80px; 
    margin: 0 auto;
  }

  .site-title { 
    font-size: 22px; 
    text-align: center;
  }

  .nav-menu { 
    flex-wrap: wrap; 
    gap: 15px; 
    justify-content: center; 
  }

  .event-item, 
  .officer-item { 
    width: 90%; 
    max-width: 350px; 
    text-align: center; 
    margin: 0 auto; 
  }

  .site-footer, 
  .footer-content { 
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center; 
    gap: 10px; 
  }

  .gif img { 
    height: 120px; 
    margin: 0 auto; 
    display: block;
  }

  #calendar iframe { 
    width: 100%; 
    height: 400px; 
  }

  .social-links { 
    gap: 8px; 
    justify-content: center;
  }

  .social-links a { 
    padding: 4px 8px; 
    font-size: 13px; 
    text-align: center;
  }

  .footer-note { 
    font-size: 13px;
    text-align: center;
  }

  
}




