/* Landing page specific styles */
.landing-header {
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}
.landing-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.landing-header .brand img {
  height: 40px;
  width: auto;
}
.landing-header .nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.landing-header .nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
}
.landing-header .nav-links .cta {
  border: 1px solid var(--fg);
  padding: 8px 12px;
  border-radius: 4px;
}

.landing-hero {
  padding: 40px 0 20px 0;
}
.landing-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
.hero-image {
  width: 100%;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-details {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-details .logo-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
  align-self: flex-start;
}
.hero-details .show-date-calendar {
  min-width: 126px;
  text-align: center;
  background: #fafafa;
  padding: 12px;
  padding-right: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.hero-details .show-date-calendar .weekday {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-details .show-date-calendar .month {
  display: block;
  font-size: 1.275rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--highlight);
}
.hero-details .show-date-calendar .date {
  display: block;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
}
.hero-details .logo-container {
  margin: 0;
}
.hero-details .logo-container img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .landing-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .hero-details {
    text-align: left;
    align-items: flex-start;
  }
}

.event-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 100%;
  margin: 0;
}
.event-card h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.event-info {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.event-info-item {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
}
.event-info-item strong {
  min-width: 70px;
  color: var(--muted);
  font-weight: 600;
}
.event-description {
  margin: 20px 0;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 4px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.event-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.site-callout {
  background: #f0f4ff;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  text-align: center;
  border-left: 3px solid var(--accent);
}
.site-callout p {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--fg);
}
.site-callout a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.site-callout a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .event-card {
    padding: 20px;
  }
  .event-actions {
    flex-direction: column;
  }
  .event-actions .btn {
    width: 100%;
    text-align: center;
  }
}
