.month-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.month-bar a {
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  border: 1px solid #ddd;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}

.month-bar a:hover {
  background: #f0f5e4;
  border-color: #8fad4b;
  color: #2e3d0f;
}

.month-bar a.active {
  background: #8fad4b;
  border-color: #8fad4b;
  color: #fff;
}



.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.month-grid a {
  text-align: center;
  padding: 5px 4px;
  border-radius: 7px;
  font-size: 13px;
  color: #f5f8ee;
  text-decoration: none;
  transition: background 0.12s;
}

.month-grid a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.month-grid a.active {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 700;
}






.activities-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.activities-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
  background-color: #b7cf6b;
  padding: 16px 14px;
  color: white;
  border-radius: 15px;
}

.filter-spacer {
  height: 18px;
}

.filter-heading {
  display: block;
  font-weight: 700;
  color: #2e3d0f;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.filter-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 14px;
  color: #f5f8ee;
  text-decoration: none;
  transition: background 0.12s;
}

.filter-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.filter-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.filter-links a.active {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 992px) {
  .activities-layout {
	grid-template-columns: 1fr;
  }
  .activities-sidebar {
	position: static;
	order: -1;
  }
}






.calendar-container {
	background: white;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	padding: 24px;
	width: 100%;
  }
  
  .header {
	text-align: center;
	margin-bottom: 20px;
  }
  
  .header h1 {
	margin: 0 0 8px 0;
	color: #333;
	font-size: 1.8rem;
  }
  
  .header p {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
  }
  
  #calendar {
	max-width: 100%;
  }
  
  /* Custom event styling */
  .fc-event.booked {
	background: #e74c3c !important;
	border: none !important;
	border-radius: 4px !important;
	padding: 2px 4px !important;
	font-size: 0.85em !important;
	cursor: pointer;
  }
  
  .fc-event.booked:hover {
	background: #c0392b !important;
	transform: scale(1.02);
	transition: transform 0.2s;
  }
  
  /* Available day indicator (optional) */
  .fc-day-today {
	background-color: rgba(102, 126, 234, 0.08) !important;
  }
  
  /* Legend */
  .legend {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 16px;
	font-size: 0.9rem;
	color: #555;
  }
  
  .legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
  }
  
  .legend-color {
	width: 16px;
	height: 16px;
	border-radius: 3px;
  }
  
  .legend-booked { background: #e74c3c; }
  .legend-available { background: #2ecc71; }
  
  table:not(.table-condensed) thead {
	  background-color: white;
  }
  table:not(.table-condensed) thead tr th a, table:not(.table-condensed) tr td a {
		color: black!important;
	}








.activities {
	  padding: 80px 0;
	}
	@media (max-width: 992px) {
	  .activities {
		padding: 60px 0;
	  }
	}
	
	.activities-title {
	  text-align: center;
	  margin-bottom: 32px;
	  padding-bottom: 12px;
	  position: relative;
	}
	@media (max-width: 992px) {
	  .activities-title {
		margin-bottom: 20px;
		padding-bottom: 12px;
	  }
	}
	
	.activities-title:after {
	  content: '';
	  position: absolute;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  margin: auto;
	  height: 4px;
	  border-radius: 2px;
	  width: 100px;
	  background-color: var(--red);
	}
	@media (max-width: 992px) {
	  .activities-title:after {
		height: 2px;
		width: 80px;
	  }
	}
	
	.activities-text {
	  text-align: center;
	  font-size: 20px;
	  margin: 0 auto;
	  margin-bottom: 40px;
	  max-width: 480px;
	}
	@media (max-width: 992px) {
	  .activities-text {
		font-size: 16px;
		max-width: 480px;
	  }
	}
	
	.activities-content {
	  display: flex;
	  gap: 40px;
	}
	@media (max-width: 992px) {
	  .activities-content {
		flex-direction: column;
		gap: 80px;
		max-width: 640px;
		margin: 0 auto;
	  }
	}
	
	.activities-right,
	.activities-left {
	  width: 50%;
	}
	@media (max-width: 992px) {
	  .activities-right,
	  .activities-left {
		width: 100%;
	  }
	}
	
	
	.activities-calendar {
	  display: grid;
	  grid-template-columns: 120px 1fr 200px;
	  grid-gap: 20px;
	}
	@media (max-width: 992px) {
	  .activities-calendar {
		grid-template-columns: 120px 1fr;
		grid-gap: 20px;
	  }
	}
	@media (max-width: 767px) {
	  .activities-calendar {
		grid-template-columns: 1fr;
		grid-gap: 20px;
	  }
	  .activities-calendar img {
		max-width: 80px;
	  }
	}
	
	.activities-calendar-title {
	  background-color: var(--red);
	  color: var(--white);
	  padding: 12px 20px;
	}
	
	.activities-calendar-content {
	  border: 2px solid var(--red);
	}
	
	.activities-calendar-text {
	  padding: 20px;
	}








.calendar {
	width: 100%;
	max-width: 110px;
	aspect-ratio: 1 / 1.1;
	background: #ffffff;
	border-radius: 12%;
	position: relative;
	box-shadow: 0 0 0 1px #ddd inset;
  }

  .calendar::before {
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 28%;
	background: #b7cf6b;
	border-radius: 12% 12% 0 0;
  }

  .ring {
	position: absolute;
	top: -5%;
	width: 10%;
	height: 22%;
	background: #1f2f4a;
	border-radius: 20%;
  }

  .ring.left {
	left: 22%;
  }

  .ring.right {
	right: 22%;
  }
  
  .calendar-content {
	  position: absolute;
	  top: 30%;
	  width: 100%;
	  height: 70%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  justify-content: center;
	  gap: 6%;
	}
  
	.cmonth {
	  font-size: 100%;
	  font-weight: 600;
	  color: #1f2f4a;
	  line-height: 1;
	}
  
	.cday {
	  font-size: 150%;
	  font-weight: 700;
	  color: #8fb23f;
	  line-height: 1;
	}
	
	
	
	
	
	.event-wrap {
	  width: 100%;
	  max-width: 620px;
	}
	
	.event-header {
	  background: #8fb23f;
	  color: white;
	  padding: 2rem 2rem 1.75rem;
	  border-radius: 12px 12px 0 0;
	  display: flex;
	  align-items: flex-start;
	  gap: 1.5rem;
	}
	
	.date-box {
	  background: white;
	  color: black;
	  border-radius: 8px;
	  padding: 0.5rem 1rem;
	  text-align: center;
	  min-width: 72px;
	  flex-shrink: 0;
	}
	
	.date-month {
	  font-size: 12px;
	  font-weight: 600;
	  text-transform: uppercase;
	  letter-spacing: 0.08em;
	}
	
	.date-day {
	  font-size: 36px;
	  font-weight: 500;
	  line-height: 1.1;
	}
	
	.event-info { flex: 1; }
	
	.event-title {
	  font-size: 20px;
	  font-weight: 500;
	  margin-bottom: 0.75rem;
	  color: white;
	}
	
	.event-meta {
	  display: flex;
	  flex-direction: column;
	  gap: 5px;
	}
	
	.event-meta span {
	  font-size: 14px;
	  color: rgba(255,255,255,0.85);
	  display: flex;
	  align-items: center;
	  gap: 7px;
	}
	
	.meta-icon {
	  width: 14px;
	  height: 14px;
	  opacity: 0.85;
	  flex-shrink: 0;
	}
	
	.form-card {
	  background: #ffffff;
	  border: 1px solid #e0e0d8;
	  /*border-top: none;*/
	  border-radius: 12px 12px 12px 12px;
	  padding: 2rem;
	}
	
	.form-title {
	  font-size: 17px;
	  font-weight: 600;
	  color: #1a1a18;
	  margin-bottom: 1.5rem;
	  padding-bottom: 0.75rem;
	  border-bottom: 1px solid #e8e8e0;
	}
	
	.form-grid {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 1rem 1.25rem;
	}
	
	.form-group {
	  display: flex;
	  flex-direction: column;
	  gap: 6px;
	}
	
	.form-group.full { grid-column: 1 / -1; }
	
	label {
	  font-size: 13px;
	  font-weight: 600;
	  color: #555550;
	}
	
	.required { color: #8fb23f; margin-left: 2px; }
	
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
	  width: calc(100% - 12px);
	  padding: 0 12px;
	  height: 42px;
	  font-size: 15px;
	  font-family: inherit;
	  background: #ffffff;
	  border: 1px solid #ccccc4;
	  border-radius: 8px;
	  color: #1a1a18;
	  outline: none;
	  transition: border-color 0.15s, box-shadow 0.15s;
	}
	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="tel"]:focus {
	  border-color: #8fb23f;
	  box-shadow: 0 0 0 3px rgba(42, 92, 63, 0.12);
	}
	
	input[type="text"]::placeholder,
	input[type="email"]::placeholder,
	input[type="tel"]::placeholder {
	  color: #aaa;
	}
	
	.gdpr-row {
	  display: flex;
	  align-items: flex-start;
	  gap: 10px;
	  padding: 1rem;
	  background: #f4f4f0;
	  border-radius: 8px;
	  margin-top: 0.25rem;
	}
	
	.gdpr-row input[type="checkbox"] {
	  width: 16px;
	  height: 16px;
	  margin-top: 2px;
	  accent-color: #8fb23f;
	  flex-shrink: 0;
	  cursor: pointer;
	}
	
	.gdpr-label {
	  font-size: 13px;
	  color: #555550;
	  line-height: 1.55;
	  cursor: pointer;
	}
	
	.gdpr-label a {
	  color: #8fb23f;
	  text-decoration: underline;
	}
	
	.submit-row {
	  display: flex;
	  justify-content: flex-end;
	  margin-top: 1.5rem;
	}
	
	.btn-submit {
	  background: #8fb23f;
	  color: white;
	  border: none;
	  padding: 0 2rem;
	  height: 44px;
	  font-size: 15px;
	  font-weight: 600;
	  font-family: inherit;
	  border-radius: 8px;
	  cursor: pointer;
	  transition: background 0.15s, transform 0.1s;
	}
	
	.btn-submit:hover { background: #1e4530; }
	.btn-submit:active { transform: scale(0.98); }
	
	.success-msg {
	  display: none;
	  align-items: center;
	  gap: 10px;
	  padding: 1rem;
	  background: #eaf3de;
	  border: 1px solid #b0d878;
	  border-radius: 8px;
	  margin-top: 1rem;
	}
	
	.success-msg.show { display: flex; }
	
	.success-msg span {
	  font-size: 14px;
	  color: #3b6d11;
	}
	
	.check-circle {
	  width: 22px;
	  height: 22px;
	  background: #3b6d11;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-shrink: 0;
	}
	
	.error-msg {
	  font-size: 12px;
	  color: #c0392b;
	  display: none;
	  margin-top: 3px;
	}
	
	input.invalid {
	  border-color: #c0392b;
	  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
	}
	
	@media (max-width: 500px) {
	  .form-grid { grid-template-columns: 1fr; }
	  .event-header { flex-direction: column; gap: 1rem; }
	  body { padding: 1.5rem 1rem; }
	}
	
	.fc .fc-event-past {
	  background-color: #9ca3af !important;
	  border-color: #6b7280 !important;
	  opacity: 0.7;
	}
	
	.fc .fc-event-past .fc-event-title {
	  /*text-decoration: line-through;*/
	}