

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

:root {
  --color-black: #000000;
  --color-text: #000000;
  --color-text-secondary: #666666;
  --color-border: #e5e7eb;
  --color-bg-light: #eceae9;
  --color-bg-accent: #f4f8fb;
  --color-primary-blue: rgb(73, 173, 240);
  --color-white: #ffffff;
  --color-hover: #333333;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

h1, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  font-family: 'Lora', serif;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-hover);
}

.site-header {
  background-color: var(--color-primary-blue);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-logo {
  flex: 0 0 auto;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.primary-nav {
  flex: 0 1 auto;
}

.primary-nav .menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-start;
}

.menu-item {
  position: relative;
}

.menu-item a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: block;
}

.menu-item a:hover {
  color: var(--color-white);
  opacity: 0.8;
}

.menu-item.current-menu-item a {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 0.25rem;
}

.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  min-width: 200px;
  list-style: none;
  margin-top: 0;
  padding-top: 0.75rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-submenu:hover .submenu,
.submenu:hover {
  display: block;
}

.submenu-item a {
  font-family: 'Poppins', sans-serif;
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.submenu-item a:hover {
  background-color: var(--color-bg-accent);
}

.submenu-item.current-menu-item a {
  color: var(--color-black);
}

.site-main {
  min-height: calc(100vh - 200px);
}

.site-main > section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-header {
  padding: 0;
}

.page-header h1 {
  display: block;
}

.header-image-container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  height: 400px;
}

.header-image {
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
  box-shadow: none;
  transition: transform 0.3s ease;
  object-fit: cover;
  object-position: center top;
}

.header-image:hover {
  transform: scale(1.02);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background-color: var(--color-primary-blue);
}

.header-content h1 {
  margin-bottom: 1rem;
  color: var(--color-white);
}

.header-content p {
  font-size: 1.35rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
}

.checkins-hero {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.checkins-hero h1 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.checkins-hero p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-row {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  border-left: 4px solid var(--color-black);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.event-row:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.event-date {
  min-width: 100px;
  text-align: center;
}

.event-day {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-black);
}

.event-month {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 600;
}

.event-body {
  flex: 1;
}

.event-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-body p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.event-meta {
  color: var(--color-text);
}

.event-location-tag {
  display: inline-block;
  background-color: var(--color-bg-accent);
  color: var(--color-black);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.event-link {
  display: inline-block;
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--color-bg-light);
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.event-link:hover {
  background-color: #e0dcd9;
}

.value-props {
  background-color: var(--color-white);
  padding: 5rem 2rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subhead {
  font-size: 2rem;
  color: var(--color-text);
  margin: 0 0 2rem 0;
  font-weight: 600;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-prop {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 0.5rem;
  border-top: 4px solid var(--color-black);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.value-prop:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.value-prop h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.value-prop p {
  font-size: 0.95rem;
}

.market-proof {
  background: var(--color-bg-accent);
  color: var(--color-black);
  padding: 4rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.market-proof-inner {
  max-width: none;
}

.market-proof h2 {
  color: var(--color-black);
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.market-proof p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.call-to-action {
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
  padding: 5rem 2rem;
  border-radius: 0;
  border: none;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  text-align: left;
}

.cta-content > p {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 100%;
}

.contact-wrapper {
  margin-top: 2.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.contact-info strong {
  color: var(--color-black);
  font-weight: 600;
}

.contact-info a {
  color: var(--color-primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #0056b3;
  text-decoration: underline;
}



.site-footer {
  background-color: var(--color-primary-blue);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--color-white);
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #e0e0e0;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--color-white);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .primary-nav {
    width: 100%;
  }

  .primary-nav .menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
  }

  .menu-item a {
    padding: 0.5rem 0;
  }

  .site-main > section {
    padding: 2.5rem 1.5rem;
  }

  .event-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .event-date {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-align: left;
    min-width: auto;
  }

  .event-side {
    justify-content: flex-start;
  }

  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .checkins-hero h1,
  .page-header h1 {
    font-size: 2rem;
  }

  .page-header,
  .checkins-hero {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}
