:root {
  --green: #6abd45;
  --blue: #3399cc;
  --dark-blue: #1f3f56;
  --light-bg: #f0f7f5;
  --white: #ffffff;
}

/* ===== BASE LAYOUT ===== */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.05rem;
  line-height: 1.6;
  background-color: var(--light-bg);
  color: var(--dark-blue);
  font-family: Arial, sans-serif;
}

/* ===== MAIN CONTENT ===== */
#mainContent {
  flex: 1;
  padding-top: 140px;
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
#mainHeader {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  padding: 18px 20px;
  background: linear-gradient(145deg,#fff 0%,#d9f2e3 35%,#cceaf9 70%,#b2e0ff 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}

#mainHeader.shrink {
  padding: 8px 15px;
}

/* ===== LOGOS ===== */
.site-logo {
  height: 90px;           /* bigger logo */
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: all 0.3s ease;
}

#mainHeader.shrink .site-logo {
  height: 65px;           /* shrink on scroll */
}

/* ===== HAMBURGER ===== */
.menu-container {
  position: relative;
  display: inline-block;
  right: 25px;            /* move left slightly */
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-button div {
  width: 25px;
  height: 3px;
  background-color: var(--dark-blue);
  margin: 5px 0;
}

/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  min-width: 180px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 3000;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: bold;
}

.dropdown-menu a:hover {
  background-color: var(--green);
  color: white;
}

/* ===== EVENT PHOTOS ===== */
.event-photo,
.small-photo {
  float: left;
  width: 30%;
  max-width: 250px;
  margin: 20px 15px 15px 0;
  border-radius: 10px;
  height: auto;
}

/* Clear floats in content cards */
.content-card::after {
  content: "";
  display: block;
  clear: both;
}

/* ===== FOOTER ===== */
footer {
  margin-top: auto;
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 15px;
  width: 100%;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .disclaimer {
  font-size: 0.55em;
  max-width: 800px;
}

/* ===== MOBILE ===== */
@media(max-width:600px){
  .site-logo {
    height: 55px;
  }

  .menu-container {
    right: 0;
  }

  .event-photo,
  .small-photo {
    float: none;
    width: 70%;
    display: block;
    margin: 20px auto 15px auto;
  }
}
