html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Josefin Sans;
  background: #FFF;
}

.header-main {
	background: #000;
	width: 100%;
	text-align: center;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	z-index: 2;
	box-shadow: 0px 7px 7px #00000047;
	border-bottom: 5px solid yellow;
}

.icons-social {
	position: fixed;
	top: 0;
	right: 0;
	padding: 10px;
	display: flex;
	gap: 5px;
}

#icon-fb {
	background: url("img/social-fb.png");
	background-size: 30px;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

#icon-ig {
	background: url("img/social-ig.png");
	background-size: 30px;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

#icon-x {
	background: url("img/social-x.png");
	background-size: 30px;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
}

.logo-wide {
	height: 100px;
}

.logo-mobile {
  display: none;
  height: 100px;
}

.nav-main {
	text-transform: uppercase;
	font-weight: 1000;
	letter-spacing: 2px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	color: #000;
	text-shadow: 2px 2px 2px #0000003b;
}

.link-active {
	border-bottom: 3px solid #f4e808;
}

.nav-item {
  text-decoration: none;
  color: #FFF;
}

.nav-mobile-button {
  display: none;
}

.nav-mobile-close {
  display: none;
	font-size: 50px;
	font-family: sans-serif;
	text-align: right;
	margin-right: 10px;
  color: #FFF;
}

@media (max-width: 768px) {
	.icons-social {
		display: none;
	}

	.logo-wide {
		display: none;
	}

	.logo-mobile {
		display: block;
	}

	.nav-main {
		display: none;
	}

	.nav-mobile-button {
		display: block;
		width: 35px;
		margin-right: 10px;
	}

	.nav-mobile-button div {
		height: 3px;
		width: 100%;
		background: #FFF;
		margin-bottom: 10px;
	}

	.nav-mobile-expanded {
		display: flex;
		position: absolute;
		flex-direction: column;
		width: 100%;
		background: #000;
		padding: 0px;
		left: 0;
		top: -20px;
	}

	.nav-item {
		border-bottom: 1px solid #ffffff54;
		padding-top: 0px;
		padding-bottom: 20px;
		text-decoration: none;
		color: white;
	}

	.nav-mobile-close {
		display: block;
	}
}

.margin {
  height: 140px;
}

.page {
	padding: 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #000;
	font-family: Open Sans;
}

.yellowline {
    background: yellow;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    width: 100%;
    height: 24px;
    text-overflow: clip;
    overflow: hidden;
    text-align: center;
    padding: 2px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 20px;
    line-height: 20px;
    box-sizing: border-box;
}

.page-alternate {
	background: #000;
	color: #FFF;
	background: url(img/bg.jpg);
	background-size: cover;
}

.section-header {
	width: 100%;
	position: relative;
	margin-bottom: 50px;
}

.section-title {
	font-size: 40px;
	text-transform: uppercase;
	color: #000;
	text-align: center;
	letter-spacing: 10px;
}

.page-alternate .section-title {
	color: yellow;
}

.button {
	margin-top: 50px;
	border: 2px solid white;
	font-size: 30px;
	color: #fff;
	padding: 30px;
	border-radius: 100px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-decoration: none;
}

.page-alternate .button { 
	border: 2px solid yellow;
	color: yellow;
}

.footer {
  padding: 20px;
}

.bio-name {
	font-weight: bold;
	font-size: 25px;
}

.bio-title {
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.full-bio {
  display: none;
}

.read-more {
	font-weight: bold;
	font-style: italic;
	text-decoration: underline;
}

.bio-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.bio-container {
	width: calc(24% - 20px);
	margin: 10px;
	border-radius: 7px;
	padding: 10px;
	box-sizing: border-box;
	box-shadow: 5px 5px 5px 5px #00000012;
	background: #FFF;
}

@media screen and (max-width: 768px) {
	.bio-container {
		width: 100%; /* On smaller screens, each container takes full width */
	}
}

.event-flyer {
	width: 94%;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
	border: 2px solid #000;
	box-shadow: 5px 5px 8px 3px #0000004a;
}


.calendar-nav {
	font-size: 20px;
	font-family: sans-serif;
	transform: scaleY(1.8);
	margin-left: 20px;
	margin-right: 20px;
}

.calendar-nav-container {
	display: flex;
	justify-content: space-between;
}

.calendar {
  width: 100%;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  grid-template-rows: 50px;
  grid-auto-rows: 120px;
  overflow: auto;
}
.calendar-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #fff;
  max-width: 1200px;
}
.calendar-header {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(to bottom, #fafbfd 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
}
.calendar-header h1 {
  margin: 0;
  font-size: 18px;
}
.calendar-header p {
  margin: 5px 0 0 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(81, 86, 93, 0.4);
}
.calendar-header button {
  background: 0;
  border: 0;
  padding: 0;
  color: rgba(81, 86, 93, 0.7);
  cursor: pointer;
  outline: 0;
}

.event {
	background: #000;
	color: white;
	border-radius: 5px;
	text-align: center;
	font-family: sans-serif;
	padding: 3px;
	width: 100%;
	max-height: 22px;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}

.week {
	display: flex;
}

.day {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  flex: 1;
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
  border-right: 1px solid rgba(166, 168, 179, 0.12);
  text-align: right;
  padding: 5px;
  font-size: 12px;
  box-sizing: border-box;
  color: #98a0a6;
  position: relative;
  pointer-events: none;
  z-index: 1;
  height: 100px;
}
.day:nth-of-type(7n + 7) {
  border-right: 0;
}
.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
  grid-row: 2;
}
.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
  grid-row: 3;
}
.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
  grid-row: 4;
}
.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
  grid-row: 5;
}
.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
  grid-row: 6;
}
.day:nth-of-type(7n + 1) {
  grid-column: 1/1;
}
.day:nth-of-type(7n + 2) {
  grid-column: 2/2;
}
.day:nth-of-type(7n + 3) {
  grid-column: 3/3;
}
.day:nth-of-type(7n + 4) {
  grid-column: 4/4;
}
.day:nth-of-type(7n + 5) {
  grid-column: 5/5;
}
.day:nth-of-type(7n + 6) {
  grid-column: 6/6;
}
.day:nth-of-type(7n + 7) {
  grid-column: 7/7;
}
.day-name {
  flex: 1;
  font-size: 12px;
  text-transform: uppercase;
  color: #99a1a7;
  text-align: center;
  border-bottom: 1px solid rgba(166, 168, 179, 0.12);
  line-height: 30px;
  font-weight: 500;
}
.day--disabled {
  color: rgba(152, 160, 166, 0.6);
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  cursor: not-allowed;
}

.number-container {
	align-self: end;
	padding: 3px;
}

.day--current {
	background: black;
	color: white;
	border-radius: 30px;
	line-height: 14px;
}

.task {
  border-left-width: 3px;
  padding: 8px 12px;
  margin: 10px;
  border-left-style: solid;
  font-size: 14px;
  position: relative;
}
.task--warning {
  border-left-color: #fdb44d;
  grid-column: 4/span 3;
  grid-row: 3;
  background: #fef0db;
  align-self: center;
  color: #fc9b10;
  margin-top: -5px;
}
.task--danger {
  border-left-color: #fa607e;
  grid-column: 2/span 3;
  grid-row: 3;
  margin-top: 15px;
  background: rgba(253, 197, 208, 0.7);
  align-self: end;
  color: #f8254e;
}
.task--info {
  border-left-color: #000;
  grid-column: 6/span 2;
  grid-row: 5;
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.7);
  align-self: end;
  color: #fff;
}
.task--primary {
  background: #000;
  border: 0;
  border-radius: 4px;
  grid-column: 3/span 3;
  grid-row: 4;
  align-self: end;
  color: #fff;
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.4);
}
.task__detail {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid rgba(166, 168, 179, 0.2);
  color: #000;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.task__detail:after, .task__detail:before {
  bottom: 100%;
  left: 30%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.task__detail:before {
  border-bottom-color: rgba(166, 168, 179, 0.2);
  border-width: 8px;
  margin-left: -8px;
}
.task__detail:after {
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}
.task__detail h2 {
  font-size: 15px;
  margin: 0;
  color: #51565d;
}
.task__detail p {
  margin-top: 4px;
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 500;
  color: rgba(81, 86, 93, 0.7);
}

.span-deadline {
	font-size: 25px;
	font-weight: bold;
	margin-left: 3px;
	color: black;
	background: yellow;
	padding: 2px;
	display: inline-block;
	border-top: 4px solid black;
	border-bottom: 4px solid black;
}

.span-discount {
	color: rgb(0, 86, 0);
	font-size: 30px;
	font-weight: bold;
}

.video-container-outer {
	margin-top: 30px;
	width: 100%;
	max-width: 800px;
}

.video-container-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-container-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq {
	background: #0000009c;
	margin: 20px;
	padding: 10px;
	color: white;
	border: 1px solid rgba(255, 255, 0, 0.681);
	border-left: 10px solid yellow;
	box-sizing: border-box;
	border-radius: 5px;
	width: calc(100% - 40px);
}

.ribbon {
	position: fixed;
	bottom: 0;
	width: 100%;
	display: block;
	background: #004e87;
	z-index: 1;
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
	color: white;
	font-size: 20px;
}

.link-pretty {
	background: #2ca6ff;
	color: white;
	padding: 4px;
	border-radius: 5px;
	text-decoration: none;
}