/*
 * Custom Styles
 *
 */
 /* START - CSS Vars */
 :root {
	--ma-light-blue: #05C6F9;
	--ma-cream: #FFE9BA;
	--ma-brown: #372005;
	--ma-dark-blue: #021216;
	--ma-dark-green: #031A20;
	--ma-black: #000000;
	--ma-white: #FFFFFF;

	--ma-light-blue-hover: #46d7ff;
	--ma-cream-hover: #fff0d1;
	--ma-brown-hover: #4b2d0b;
	--ma-dark-blue-hover: #05222a;
	--ma-dark-green-hover: #082c35;
	--ma-black-hover: #1b1b1b;
	--ma-white-hover: #e0e0e0;
 }
 /* END - CSS Vars */

.color-ma-light-blue {
	color: var(--ma-light-blue);
}
.color-ma-cream {
	color: var(--ma-cream);
}
.color-ma-brown {
	color: var(--ma-brown);
}
.color-ma-dark-blue {
	color: var(--ma-dark-blue);
}
.color-ma-dark-green {
	color: var(--ma-dark-green);
}
.color-ma-black {
	color: var(--ma-black);
}
.color-ma-white {
	color: var(--ma-white);
}
.color-ma-white {
	color: var(--ma-white);
}
.color-ma-black {
	color: var(--ma-black);
}


.background-ma-light-blue {
	background-color: var(--ma-light-blue);
}
.background-ma-cream {
	background-color: var(--ma-cream);
}
.background-ma-brown {
	background-color: var(--ma-brown);
}
.background-ma-dark-blue {
	background-color: var(--ma-dark-blue);
}
.background-ma-dark-green {
	background-color: var(--ma-dark-green);
}
.background-ma-black {
	background-color: var(--ma-black);
}
.background-ma-white {
	background-color: var(--ma-white);
}

a:hover {
    color: inherit;
}
 
/* START - Custom Fonts */
/* FuturaTS Regular */
@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNewExtraLight.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNewExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNewLight.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNewLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNew.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNew.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNewMedium.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNewMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNewBold.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNewBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNewExtraBold.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNewExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'futura-ts';
    src: url('../fonts/FuturaTS/FuturaTSNewHeavy.woff2') format('woff2'),
         url('../fonts/FuturaTS/FuturaTSNewHeavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* Buckwheat Font */
@font-face {
    font-family: 'buckwheat';
    src: url('../fonts/Buckwheat/Buckwheat.woff2') format('woff2'),
         url('../fonts/Buckwheat/Buckwheat.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
 /* END - Custom Fonts */


 .narrow-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
 }
/* Section Titles */
.section-title {
    font-family: 'buckwheat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    color: var(--ma-white);
    font-size: 7rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('../../images/title-mask-after.svg');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

/* Title adjusts */
#about .section-title::after {left: 47%;}
#agenda .section-title::after {left: 5%;}
#contact .section-title::after {left: 61%;}


@media (max-width:767px) {
	#about .section-title::after {left: 37%;}
	#agenda .section-title::after {left: -2%;}
	#the-band .section-title::after {left: -4%;}
	#contact .section-title::after {left: 55%;}
}

/* Light Spheres */
.light-sphere {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: screen;
    max-height: 150px;
    max-width: 150px;
}

.light-sphere--left {
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
}

.light-sphere--right {
    right: -75px;
    top: 50%;
    transform: translateY(-50%);
}

.light-sphere svg {
    width: 80px;
    height: 80px;
}

@media (max-width:767px) {
	.section-title {
		font-size: 5rem;
	}
}
 
 /* START - Imports and HTML overrides */
/* @import '../vendor/fontawesome-free-6.5.1-web/css/all.min.css'; */
html {
	width:100%;
	overflow-x:hidden !important;
}
body {
	font-family:"futura-ts", sans-serif;
	font-size:16px;
	color:#111111;
	font-weight:400;
	background-color:white;
	width:100%;
	overflow-x:hidden !important;
}
body.admin-bar #wpadminbar {
	display:none;
}

strong {
	font-weight:600;
}
ul li {
	line-height:16px;
}
ul li.menu-item {
	line-height:1em;
	display:flex;
}
ul, ol {
	padding-left:1rem;
}

#main-content {
	overflow: hidden;
}

a,
a:link,
a:visited,
a:active {
	text-decoration:none;
	transition:color .4s;
}

/* CSS for [hide_on_mobile] shortcode */
@media (max-width:767px) {
	.hide-on-mobile {
		display:none !important;
	}
}
 /* END - Imports and HTML overrides */
 
 /* START - Menu Defaults */
 header#main-header {
	 position:relative;
	 z-index:10;
	 padding:1.5rem 1rem;
 }
 #top-menu.nav {
	  gap:25px;
  }
  #top-menu.nav li a {
	  font-size:1rem;
	  text-transform:uppercase;
	  font-weight:400;
	  letter-spacing:1px;
	 display:block;
	 line-height:1;
	 font-family:"futura-ts", sans-serif;
  }
  #top-menu.nav li a:after {
	  display:block;
	  height:3px;
	  width:100%;
	  content:" ";
	  margin-top:20px;
	  position:absolute;
	  opacity:0;
	  transition:all .3s;
  }
  #top-menu.nav li a:hover:after,
  #top-menu.nav li a:active:after {
	  opacity:1;
	  margin-top:8px;
  }
  @media (min-width:992px) {
	#mobile-menu,
	header#main-header a#mobileMenuClose {
		display:none;
	}
	#top-menu.nav {
		justify-content:flex-end;
	}
  }
  @media (max-width:991px) {
	  .menu-column {
		  position:fixed;
		  width:100%;
		  height:100vh;
		  background:#232323;
		  top:0;
		  left:0;
		  opacity:0 !important;
		  transform: translateX(100%) !important;
		 transition:transform 0s linear .5s, opacity .4s ease 0s;
	  }
	  .menu-column.show {
		  opacity:1 !important;
		  transform: translateX(0) !important;
		  transition:transform 0s linear .0s, opacity .4s ease 0s;
	  }
	  .menu-column .primary-menu-container #top-menu {
		padding: 40px 40px;
		flex-direction: column;
		gap: 36px;
	  }
	  .menu-column .primary-menu-container ul li.menu-item {
		line-height:1.5em;
	  }
	  #top-menu.nav li a:after {
		opacity: 1;
		margin-top: 3px;
		position: relative;
	  }
	  #top-menu.nav li a:hover:after {
		margin-top: 3px;
		width:calc(100% + 2rem);
	  }
  }
  #mobileMenuClose {
	position: absolute;
	top: 36px;
    right: 2rem;
    font-size: 30px;
  }
  #mobileMenuToggle {
	font-size:30px;
	line-height: 1;
    align-items: center;
    display: flex;
  }
  a#mobileMenuClose:hover,
  a#mobileMenuClose:active {
	color:var(--blue);
  }
  .mobile-and-search-menu {
	justify-content: flex-end;
    display: flex;
  }
 /* END - Menu Defaults */
 

 
/********************************************************************************************************/
/****************************************** START - COMPONENTS ******************************************/
/********************************************************************************************************/


 /****************************************** START - Home Hero Component ******************************************/
.home-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 1;
	padding: 2rem 1rem;
}

.home-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.home-hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	width: 100%;
}

.home-hero-title {
	font-weight: 800;
	font-family: "futura-ts", sans-serif;
	font-size: 4.5rem;
	color: var(--ma-cream);
	margin-bottom: 2rem;
	line-height: 1.1;
	text-transform: uppercase;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
	position: relative;
	display: inline-block;
}

.home-hero-title-doodle {
	position: absolute;
    top: 60%;
    right: -7%;
    width: 100px;
    height: auto;
    z-index: 3;
}

.home-hero-button {
	margin-top: 1rem;
}

/* MA Button Component Styles */
.ma-btn {
	display: inline-block;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	font-family: "futura-ts", sans-serif;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

/* Filled Button Styles */
.ma-btn-filled.ma-btn-ma-light-blue {
	background-color: var(--ma-light-blue);
	border-color: var(--ma-light-blue);
}

.ma-btn-filled.ma-btn-ma-light-blue:hover {
	background-color: var(--ma-light-blue-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(5, 198, 249, 0.3);
}

.ma-btn-filled.ma-btn-ma-cream {
	background-color: var(--ma-cream);
	border-color: var(--ma-cream);
}

.ma-btn-filled.ma-btn-ma-cream:hover {
	background-color: var(--ma-cream-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 233, 186, 0.3);
}

.ma-btn-filled.ma-btn-ma-brown {
	background-color: var(--ma-brown);
	border-color: var(--ma-brown);
}

.ma-btn-filled.ma-btn-ma-brown:hover {
	background-color: var(--ma-brown-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(55, 32, 5, 0.3);
}

.ma-btn-filled.ma-btn-ma-dark-blue {
	background-color: var(--ma-dark-blue);
	border-color: var(--ma-dark-blue);
}

.ma-btn-filled.ma-btn-ma-dark-blue:hover {
	background-color: var(--ma-dark-blue-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(2, 18, 22, 0.3);
}

.ma-btn-filled.ma-btn-ma-dark-green {
	background-color: var(--ma-dark-green);
	border-color: var(--ma-dark-green);
}

.ma-btn-filled.ma-btn-ma-dark-green:hover {
	background-color: var(--ma-dark-green-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(3, 26, 32, 0.3);
}

.ma-btn-filled.ma-btn-ma-black {
	background-color: var(--ma-black);
	border-color: var(--ma-black);
}

.ma-btn-filled.ma-btn-ma-black:hover {
	background-color: var(--ma-black-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ma-btn-filled.ma-btn-ma-white {
	background-color: var(--ma-white);
	border-color: var(--ma-white);
}

.ma-btn-filled.ma-btn-ma-white:hover {
	background-color: var(--ma-white-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Text Color Styles */
.ma-btn-text-ma-light-blue {
	color: var(--ma-light-blue);
}

.ma-btn-text-ma-cream {
	color: var(--ma-cream);
}

.ma-btn-text-ma-brown {
	color: var(--ma-brown);
}

.ma-btn-text-ma-dark-blue {
	color: var(--ma-dark-blue);
}

.ma-btn-text-ma-dark-green {
	color: var(--ma-dark-green);
}

.ma-btn-text-ma-black {
	color: var(--ma-black);
}

.ma-btn-text-ma-white {
	color: var(--ma-white);
}

/* Outline Button Styles */
.ma-btn-outline.ma-btn-ma-light-blue {
	background-color: transparent;
	border-color: var(--ma-light-blue);
}

.ma-btn-outline.ma-btn-ma-light-blue:hover {
	background-color: var(--ma-light-blue-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(5, 198, 249, 0.3);
}

.ma-btn-outline.ma-btn-ma-cream {
	background-color: transparent;
	border-color: var(--ma-cream);
}

.ma-btn-outline.ma-btn-ma-cream:hover {
	background-color: var(--ma-cream-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 233, 186, 0.3);
}

.ma-btn-outline.ma-btn-ma-brown {
	background-color: transparent;
	border-color: var(--ma-brown);
}

.ma-btn-outline.ma-btn-ma-brown:hover {
	background-color: var(--ma-brown-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(55, 32, 5, 0.3);
}

.ma-btn-outline.ma-btn-ma-dark-blue {
	background-color: transparent;
	border-color: var(--ma-dark-blue);
}

.ma-btn-outline.ma-btn-ma-dark-blue:hover {
	background-color: var(--ma-dark-blue-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(2, 18, 22, 0.3);
}

.ma-btn-outline.ma-btn-ma-dark-green {
	background-color: transparent;
	border-color: var(--ma-dark-green);
}

.ma-btn-outline.ma-btn-ma-dark-green:hover {
	background-color: var(--ma-dark-green-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(3, 26, 32, 0.3);
}

.ma-btn-outline.ma-btn-ma-black {
	background-color: transparent;
	border-color: var(--ma-black);
}

.ma-btn-outline.ma-btn-ma-black:hover {
	background-color: var(--ma-black-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ma-btn-outline.ma-btn-ma-white {
	background-color: transparent;
	border-color: var(--ma-white);
}

.ma-btn-outline.ma-btn-ma-white:hover {
	background-color: var(--ma-white-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Button Icon Styles */
.ma-btn-icon-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ma-btn-icon {
	width: 20px;
	height: 20px;
	position: relative;
}

.ma-btn-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Animation Classes */
.anima-btn-left_to_right {
	position: relative;
	overflow: hidden;
}

.anima-btn-left_to_right::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.anima-btn-left_to_right:hover::before {
	left: 100%;
}

.home-hero-footer-mask {
	position: absolute;
	bottom: -60px;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
	pointer-events: none;
}

@media (max-width:767px) {
	.home-hero-footer-mask {
		bottom: -78px;
		left: -80%;
		width: 580%;
	}
}

.home-hero-mask-image {
	width: 100%;
	height: auto;
	display: block;
}

/* Hero background images responsive control */
.home-hero-bg-mobile {
	display: none;
}

.home-hero-bg-desktop {
	display: block;
}

/* Body class adjustments when header is over hero */
body.header-over-hero .home-hero {
	padding-top: 4rem;
}

@media (max-width: 768px) {
	.home-hero {
		min-height: 66vh;
		padding: 1rem;
	}

	.home-hero-title {
		font-size: 3.5rem;
		margin-bottom: 1.5rem;
	}

	.home-hero-title-doodle {
		right: 5%;
	}

	.home-hero-bg-mobile {
		display: block;
	}

	.home-hero-bg-desktop {
		display: none;
	}

	body.header-over-hero .home-hero {
		padding-top: 2rem;
	}
}

@media (max-width: 480px) {
	.home-hero-title {
		font-size: 3rem;
	}

	.home-hero-title-doodle {
		width: 70px;
        top: 80%;
        right: 7%;
	}
}

/****************************************** END - Home Hero Component ******************************************/




 /****************************************** START - Agenda Component ******************************************/
.agenda {
	padding: 4rem 0;
	position: relative;
}

.agenda__content {
	position: relative;
	z-index: 2;
}

.agenda__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.agenda__title {
	margin: 0;
}

.agenda__next-event {
    position: absolute;
    right: -5%;
    top: -40%;
    z-index: 10;
}

.next-event-svg {
	width: 120px;
	height: 120px;
	animation: rotate-continuous 10s linear infinite;
}

@keyframes rotate-continuous {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


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

.agenda__event {
	display: grid;
	grid-template-columns: 150px 1fr auto;
	gap: 2rem;
	align-items: center;
	padding: 1.5rem;
	background-color: var(--ma-dark-blue);
	border-radius: 12px;
	transition: all 0.3s ease;
	position: relative;
}

.agenda__event:hover {
	background-color: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

.agenda__event-date {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.event-date {
	font-family: 'futura-ts', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	color: var(--ma-white);
	line-height: 1;
}

.event-time {
	font-family: 'futura-ts', sans-serif;
	font-weight: 400;
	font-size: 1.2rem;
	color: var(--ma-white);
}

.event-location {
	font-family: 'futura-ts', sans-serif;
	font-weight: 300;
	font-size: 1rem;
	color: var(--ma-cream);
	opacity: 0.8;
}

.agenda__event-venue {
	display: flex;
	align-items: center;
	justify-content: center;
}

.venue-logo {
	max-height: 80px;
	max-width: 200px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.agenda__event-button {
	display: flex;
	align-items: center;
}

@media (max-width:767px) {
	.agenda__event-button {
		justify-content: center;
	}

	.agenda__next-event {
		position: absolute;
		right: -4%;
        top: -8%;
	}

	.next-event-svg {
		width: 90px;
		height: 90px;
	}

}

.agenda__no-events {
	text-align: center;
	padding: 3rem;
	color: var(--ma-cream);
	font-size: 1.2rem;
}

/* Agenda Mask Top */
.agenda-mask-top {
	position: absolute;
	top: -4rem;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
}

.agenda-mask-top-image {
	width: 100%;
	height: auto;
	display: block;
}


/* Agenda Mask Bottom */
.agenda-mask-bottom {
	position: absolute;
	bottom: -4rem;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
}

.agenda-mask-bottom-image {
	width: 100%;
	height: auto;
	display: block;
}


/* Responsive */
@media (max-width: 768px) {

	.agenda-mask-top {
		top: -3rem;
		left: -170%;
		width: 400%;
	}

	.agenda-mask-bottom {
		bottom: -4rem;
		left: -60%;
		width: 400%;
	}

	.agenda__header {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
	}
	
	.agenda__event {
		grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
        padding: 3rem;
	}
	
	.agenda__event-date {
		align-items: center;
	}
	
	.next-event-circle {
		width: 100px;
		height: 100px;
	}
	
	.next-event-text {
		font-size: 0.8rem;
	}
}
/****************************************** END - Agenda Component ******************************************/


/****************************************** START - Two Columns Component ******************************************/
.two-columns {
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.two-columns .two-columns__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.two-columns__content.single-column {
	grid-template-columns: 1fr;
	max-width: 600px;
}

.two-columns .two-columns__column {
	display: flex;
	flex-direction: column;
}

.two-columns .two-columns__image {
	width: 100%;
	position: relative;
}

.two-columns .two-columns__img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	object-fit: cover;
}

.two-columns .two-columns__text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.two-columns .two-columns__text-content {
	color: var(--ma-white);
	line-height: 1.3;
    font-size: 2.5rem;
    font-weight: 300;
}

@media (max-width:767px) {
	.two-columns .two-columns__text-content {
		font-size: 1.6rem;
		line-height: 1.2;
	}
}

.two-columns .two-columns__text-content p {
	margin-bottom: 1rem;
}

.two-columns .two-columns__text-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.two-columns .two-columns__text-content li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1.3rem;
	line-height: 1.5;
}

.two-columns .two-columns__text-content li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.2rem;
	width: 20px;
	height: 20px;
	background-image: url('../../images/nfd-icon-blue-checkmark.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.two-columns .two-columns__button {
	margin-top: 1rem;
}

@media (max-width: 768px) {
	.two-columns {
		padding: 2rem 0;
	}

	.two-columns .two-columns__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.two-columns .two-columns__text {
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.two-columns .two-columns__content {
		gap: 1.5rem;
	}
}
/****************************************** END - Two Columns Component ******************************************/



/****************************************** START - Video Player Component ******************************************/
.video-player {
	padding: 4rem 0;
	position: relative;
}

.video-player__content {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 3rem;
	align-items: start;
	min-height: 500px;
}

.video-player__video-section {
	position: relative;
	cursor: pointer;
}

.video-player__video-container {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	background: #000;
}

.video-player__video-container video {
	width: 100%;
	height: auto;
	display: block;
}

/* Video Overlay Button */
.video-player__overlay-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-player__overlay-button:hover {
	background: rgba(255, 255, 255, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-player__play-pause-icon {
	font-size: 24px;
	color: #333;
}

.video-player__play-pause-icon .fa-play {
	transform: translateX(1px);
}

.video-player__play-pause-icon i {
	transition: transform 0.2s ease;
}

/* Show overlay button on video hover - always visible on hover */
.video-player__video-container:hover .video-player__overlay-button {
	opacity: 1;
	visibility: visible;
}

/* Hide overlay button when video is playing and not hovering */
.video-player__video-container.playing:not(:hover) .video-player__overlay-button {
	opacity: 0;
	visibility: hidden;
}

/* Show overlay button when video is paused */
.video-player__video-container.paused .video-player__overlay-button {
	opacity: 1;
	visibility: visible;
}

.video-player__playlist-section {
	display: flex;
	flex-direction: column;
}

.video-player__playlist {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.video-player__playlist-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	background: var(--ma-dark-blue);
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	user-select: none;
	overflow: visible;
}

.video-player__playlist-item:hover {
	border-color: var(--ma-light-blue);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(5, 198, 249, 0.2);
}

.video-player__playlist-item.active {
	border-color: var(--ma-light-blue);
	background: rgba(5, 198, 249, 0.1);
	background: linear-gradient(90deg, rgba(5, 198, 249, .10), rgb(59 210 250 / 17%), rgb(3 99 125 / 47%));
}

.video-player__playlist-info {
	flex: 1;
}

.video-player__music-name {
	font-family: "futura-ts", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ma-light-blue);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.video-player__music-band {
	font-family: "futura-ts", sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	color: var(--ma-cream);
	opacity: 1;
}

.video-player__playlist-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	overflow: visible;
	position: relative;
}

.video-player__control-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ma-white);
    font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s ease;
	border-radius: 50%;
}

.video-player__control-icon:hover {
	color: var(--ma-light-blue);
	background: rgba(5, 198, 249, 0.1);
}

.video-player__duration {
	font-family: "futura-ts", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--ma-white);
	min-width: 40px;
	line-height: 0;
}

.video-player__waveform {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px; /* Increased height to accommodate larger waves */
	width: 60px;
	overflow: visible;
	position: relative;
}

.video-player__waveform .waveform-svg {
	overflow: visible;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.waveform-svg {
	width: 100%;
	height: 100%;
	color: var(--ma-cream);
	opacity: 0.3;
	transition: opacity 0.3s ease;
}

.waveform-line {
	stroke: currentColor;
	fill: none;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Static waveform (not playing) - straight line */
.video-player__waveform:not(.playing) .waveform-line {
	stroke-dasharray: none;
	animation: none;
}

/* Active waveform (when playing) */
.video-player__waveform.playing .waveform-svg {
	opacity: 1;
}

.video-player__waveform.playing .waveform-line {
	stroke-dasharray: none;
}

/* SVG Waveform Animations */
@keyframes waveform-pulse {
	0% {
		opacity: 0.6;
		transform: scaleY(0.8);
	}
	100% {
		opacity: 1;
		transform: scaleY(1.2);
	}
}

@keyframes waveform-flow {
	0% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: 20;
	}
}

@media (max-width: 992px) {
	.video-player__content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.video-player {
		padding: 2rem 0;
	}


	.video-player__playlist-item {
		padding: 0.75rem 1rem;
	}

	.video-player__music-name {
		font-size: 1rem;
	}

	.video-player__music-band {
		font-size: 0.8rem;
	}

	.video-player__playlist-controls {
		gap: 0.75rem;
	}

	.video-player__duration {
		font-size: 0.8rem;
		min-width: 35px;
	}
}

@media (max-width: 480px) {
	.video-player__playlist-item {
		padding: 0.5rem 0.75rem;
	}

	.video-player__music-name {
		font-size: 0.9rem;
	}

	.video-player__music-band {
		font-size: 0.75rem;
	}

	.video-player__playlist-controls {
		gap: 0.5rem;
	}

	.video-player__waveform {
		gap: 1px;
	}

	.waveform-bar {
		width: 2px;
	}
}

/****************************************** END - Video Player Component ******************************************/



/****************************************** START - MA Header Component ******************************************/
/* Add padding to body for fixed header */
#main-content {
	padding-top: 0;
}

/* Normal Header */
.ma-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	padding: 1.5rem 0;
	background: #ffffff;
	transition: all 0.3s ease;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Over Hero */
.ma-header-over-hero {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	background: rgba(0, 0, 0, 0.0);
	/* backdrop-filter: blur(10px); */
	padding: 1rem 0;
	border-bottom: none;
	box-shadow: none;
}

.ma-header-over-hero.scrolled {
    background: rgb(0 0 0 / 69%);
    backdrop-filter: blur(20px);
    padding: 1.1rem 0;
}

/* Add padding to body when header is NOT over hero */
body:not(.header-over-hero) #main-content {
	padding-top: 90px;
}

.ma-header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ma-header-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.ma-header-logo a {
	display: block;
	line-height: 0;
}

.ma-logo-img {
	height: 50px;
	width: auto;
	transition: all 0.3s ease;
}

.ma-header-over-hero .ma-logo-img {
	height: 60px;
}

.ma-header-over-hero.scrolled .ma-logo-img {
	height: 40px;
}

.ma-main-nav {
	display: flex;
	justify-content: flex-end;
	flex: 1;
}

.ma-nav-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2rem;
}

.ma-nav-list li {
	margin: 0;
}

.ma-nav-list a {
	color: #333333;
	font-size: 1rem;
	font-weight: 500;
	font-family: "futura-ts", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.ma-nav-list a:hover {
	color: #0d6efd;
}

/* Header Over Hero - White text */
.ma-header-over-hero .ma-nav-list a {
	color: #ffffff;
}

.ma-header-over-hero .ma-nav-list a:hover {
	color: var(--ma-light-blue);
}

.ma-nav-list a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--ma-light-blue);
	transition: width 0.3s ease;
}

.ma-nav-list a:hover::after {
	width: 100%;
}

.ma-header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-shrink: 0;
}

.ma-right-menu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 25px;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.ma-right-menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background: #333333;
	transition: all 0.3s ease;
	border-radius: 2px;
}

/* Header Over Hero - White hamburger */
.ma-header-over-hero .ma-right-menu-toggle span {
	background: #ffffff;
}

.ma-right-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.ma-right-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.ma-right-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.ma-right-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	transition: right 0.3s ease;
	padding: 2rem;
}

.ma-right-menu.open {
	right: 0;
}

.ma-right-menu-content {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ma-right-menu-close {
	background: none;
	border: none;
	color: #ffffff;
	font-size: 2rem;
	cursor: pointer;
	align-self: flex-end;
	margin-bottom: 2rem;
	transition: color 0.3s ease;
}

.ma-right-menu-close:hover {
	color: #ffd700;
}

.ma-right-menu-nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ma-right-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.ma-right-nav-list li {
	margin-bottom: 2rem;
}

.ma-right-nav-list a {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 500;
	font-family: "futura-ts", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.ma-right-nav-list a:hover {
	color: var(--ma-light-blue);
}

.ma-right-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.ma-right-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Mobile Styles */
@media (max-width: 991px) {
	.ma-header-wrapper {
		gap: 1rem;
	}
	
	.ma-main-nav {
		display: none;
	}
	
	.ma-right-menu-toggle {
		display: flex;
	}
	
	.ma-header-over-hero {
		padding: 1.3rem 0;
	}
	
	.ma-logo-img {
		height: 40px;
	}
	
	.ma-header-over-hero .ma-logo-img {
		height: 45px;
	}
	
	.ma-header-over-hero.scrolled .ma-logo-img {
		height: 35px;
	}
}

@media (max-width: 576px) {
	.ma-header-wrapper {
		gap: 0.5rem;
	}
	
	.ma-logo-img {
		height: 35px;
	}
	
	.ma-header-over-hero .ma-logo-img {
		height: 40px;
	}

	.ma-right-nav-list a {
		font-size: 4.5rem;
		font-family: 'buckwheat', sans-serif;
	}

	.ma-right-nav-list {
		display: flex;
		height: 100%;
		flex-direction: column;
		gap: 1rem;
	}

	ul li.menu-item {
		line-height: normal;
		display: flex;
		margin-bottom: 0rem;
	}

	.ma-right-menu-overlay {
		z-index: -1;
	}
}

@media (max-width: 768px) {
	.ma-header {
		padding: 1rem 0;
	}
		
	.ma-logo-img {
		height: 35px;
	}
	
	.ma-header-over-hero .ma-logo-img {
		height: 40px;
	}
	
	.ma-header-over-hero.scrolled .ma-logo-img {
		height: 30px;
	}
}

/* Body class adjustments when header is over hero */
body.header-over-hero {
	padding-top: 0;
}

body.header-over-hero .home-hero {
	margin-top: 0;
}

body.header-over-hero .home-hero-content {
	padding-top: 4rem;
}

@media (max-width: 768px) {
	body.header-over-hero .home-hero-content {
		padding-top: 2rem;
	}
}

/* Normal header adjustments */
body:not(.header-over-hero) .home-hero {
	margin-top: 0;
}

/* Logo adjustments for normal header */
.ma-header:not(.ma-header-over-hero) .ma-logo-img {
	filter: none;
}
/****************************************** END - MA Header Component ******************************************/

/****************************************** START - On Stage Component ******************************************/
.on-stage {
	padding: 7rem 0 4rem 0;
	position: relative;
	min-height: 600px;
}

.on-stage__content {
	position: relative;
	z-index: 2;
}

.on-stage__header {
	margin-bottom: 3rem;
}

.on-stage__title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--ma-cream);
}

.on-stage__members {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: relative;
	z-index: 3;
}

.on-stage__member {
	display: grid;
	grid-template-columns: 80px 1fr 20%;
	gap: 2rem;
	align-items: center;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	transition: all 0.2s ease;
	position: relative;
}

.on-stage__member:hover {
	background-color: #021216;
}

.on-stage__member-photo {
	width: 80px;
	height: 80px;
	border-radius: 2px;
	overflow: hidden;
	flex-shrink: 0;
}

.on-stage__member-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
}
.on-stage__member:hover .on-stage__member-photo img {
	filter: grayscale(0);
}

.on-stage__member-name {
	color: var(--ma-cream);
	font-size: 1.5rem;
	font-weight: 700;
	font-family: "futura-ts", sans-serif;
	text-transform: uppercase;
}

.on-stage__member-info {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
}

.on-stage__member-icon {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.9;
}

.on-stage__member-icon svg {
	width: 100%;
	height: 100%;
}

.on-stage__member-icon svg path,
.on-stage__member-icon svg circle,
.on-stage__member-icon svg line,
.on-stage__member-icon svg rect,
.on-stage__member-icon svg ellipse {
	fill: var(--ma-cream);
	stroke: var(--ma-cream);
}

.on-stage__member-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.on-stage__member-position {
	color: var(--ma-cream);
	font-size: 1rem;
	opacity: 0.8;
}

.on-stage__no-members {
	text-align: center;
	padding: 3rem;
	color: var(--ma-cream);
	font-size: 1.2rem;
}

.on-stage__member-artistic-image {
	position: absolute;
	right: 33%;
	top: 50%;
	width: 400px;
	height: auto;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.on-stage__member:hover .on-stage__member-artistic-image {
	opacity: 1;
}


@keyframes rotate-in-out {
	0% {
	  transform: translateY(-50%) rotate(3deg);
	}
	50% {
	  transform: translateY(-50%) rotate(-3deg);
	}
	100% {
	  transform: translateY(-50%) rotate(3deg);
	}
  }

  .on-stage__member-artistic-image {
	animation: rotate-in-out 2s ease-in-out infinite;
  }

.on-stage__member-artistic-image img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1024px) {
	.on-stage__member {
		grid-template-columns: 60px 1fr auto auto;
		gap: 1.5rem;
		padding: 0.75rem 1rem;
	}
	
	.on-stage__member-photo {
		width: 60px;
		height: 60px;
	}
	
	.on-stage__member-name {
		font-size: 1.25rem;
	}
	
	.on-stage__member-icon {
		width: 25px;
		height: 25px;
	}
	
	.on-stage__member-artistic-image {
		width: 300px;
		right: -280px;
	}
}

@media (max-width: 768px) {
	.on-stage {
		padding: 4rem 0 2rem 0;
	}
	
	.on-stage__title {
		font-size: 2rem;
	}
	
	.on-stage__header {
		margin-bottom: 2rem;
	}
	
	.on-stage__member {
		grid-template-columns: 2fr 2fr 3fr;
        gap: 1rem;
        text-align: center;
        padding: .5rem;
	}
	
	.on-stage__member-photo {
		justify-self: center;
		width: 100px;
		height: 100px;
	}
	
	.on-stage__member-name {
		font-size: 1.5rem;
	}
	
	.on-stage__member-icon {
		justify-self: center;
		width: 40px;
		height: 40px;
	}
	
	.on-stage__member-position {
		justify-self: center;
        font-size: 1.1rem;
        word-break: break-word;
	}
	
	.on-stage__member-artistic-image {
		position: absolute;
        left: 10px;
        width: 120px;
        top: 50%;
        right: unset;
	}
	.on-stage__member-photo img {
		filter: grayscale(0);
	}
}

@media (max-width: 480px) {
	.on-stage__title {
		font-size: 1.75rem;
	}
	
	.on-stage__member-name {
		font-size: 1.25rem;
        text-align: left;
	}
	
	.on-stage__member-icon {
		width: 26px;
        height: -webkit-fill-available;
	}

	.on-stage__member-photo {
        width: 80px;
        height: 80px;
    }
	.on-stage__member-artistic-image {
        left: 0px;
        width: 110px;
	}

	#ma-icon-microphone {
		max-width: 16px;
	}

	#ma-icon-trumpet {
		max-width: 26px;
		width: 26px;
	}

	.on-stage__member-position {
        text-align: center;
        width: 100%;
    }
}
/****************************************** END - On Stage Component ******************************************/

/****************************************** START - Venue Slider Component ******************************************/
.venue-slider {
	padding: 4rem 0;
	overflow: hidden;
	position: relative;
}

.venue-slider__content {
	position: relative;
	z-index: 2;
}

.venue-slider__content:before {
	content: "";
    width: 12%;
    height: 100%;
    background: linear-gradient(90deg, black, transparent);
    position: absolute;
    left: 0;
	top: 0;
    z-index: 999;
}

.venue-slider__content:after {
	content: "";
    width: 12%;
    height: 100%;
    background: linear-gradient(90deg, transparent, black);
    position: absolute;
    right: 0;
	top: 0;
    z-index: 999;
}

.venue-slider__header {
	margin-bottom: 3rem;
}

.venue-slider__barrier {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 150px;
}

.venue-slider__barrier::before,
.venue-slider__barrier::after {
	content: " ";
	position: absolute;
	z-index: 9;
	width: 200px;
	height: 100%;
	pointer-events: none;
}

.venue-slider__barrier::before {
	top: 0;
	left: 0;
	background: linear-gradient(to right, var(--ma-dark) 0%, transparent 100%);
}

.venue-slider__barrier::after {
	top: 0;
	right: 0;
	background: linear-gradient(to left, var(--ma-dark) 0%, transparent 100%);
}

.venue-slider__lane {
	display: flex;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.venue-slider__lane:hover {
	animation-play-state: paused;
}

.venue-slider__item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 100%;
}

.venue-slider__link {
	display: block;
	text-decoration: none;
}

.venue-slider__logo {
	max-width: 150px;
	height: auto;
	width: auto;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.3s ease;
}

.venue-slider__item:hover .venue-slider__logo {
	filter: grayscale(0%);
}

.venue-slider__no-venues {
	text-align: center;
	padding: 3rem;
	color: var(--ma-cream);
	font-size: 1.2rem;
}

@keyframes venue-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-250px * var(--venue-count)));
	}
}

@media (max-width: 768px) {
	.venue-slider {
		padding: 2rem 0;
	}
	
	.venue-slider__header {
		margin-bottom: 2rem;
	}
	
	.venue-slider__item {
		width: 140px;
	}
	
	.venue-slider__logo {
		max-width: 100px;
	}
}

@media (max-width: 480px) {
	.venue-slider__item {
		width: 250px;
	}
	
	.venue-slider__logo {
		max-width: 150px;
	}
}
/****************************************** END - Venue Slider Component ******************************************/

/****************************************** START - Contact Form Component ******************************************/
.contact-form {
	padding: 4rem 0 8rem 0;
	position: relative;
}

.contact-form__content {
	position: relative;
	z-index: 2;
}

.contact-form__header {
	margin-bottom: 3rem;
}

.contact-form__title {
	color: var(--ma-cream);
	font-family: "futura-ts", sans-serif;
	font-weight: 800;
	font-size: 3rem;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	margin: 0;
}

.contact-form__title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--ma-cream);
	transform: translateY(-2px);
}

.contact-form__form {
	margin-top: 4rem;
}

.contact-form__fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
	min-height: 310px;
}

.contact-form__column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: space-between;
}

.contact-form__column--message {
	height: 100%;
}

.contact-form__field {
	width: 100%;
	height: 100%;
}

.contact-form__input,
.contact-form__textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	background: transparent;
	border: 1px solid var(--ma-light-blue);
	border-radius: 4px;
	color: var(--ma-white);
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
	outline: none;
	border-color: rgba(64, 224, 208, 0.5);
	box-shadow: 0 0 0 2px rgba(64, 224, 208, 0.1);
}

.contact-form__textarea {
	resize: vertical;
	min-height: 304px;
	font-family: inherit;
}

.contact-form__submit {
	margin-top: 2rem;
}

.contact-form__button {
	padding: 1rem 3rem;
	background: var(--ma-cream);
	color: var(--ma-dark);
	border: none;
	border-radius: 4px;
	font-family: "futura-ts", sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.contact-form__button:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
}

.contact-form__button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.contact-form__messages {
	margin-top: 1.5rem;
}

.contact-form__message {
	padding: 1rem 1.5rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.contact-form__message--success {
	background: rgba(64, 224, 208, 0.2);
	border: 1px solid rgba(64, 224, 208, 0.5);
	color: var(--ma-cream);
}

.contact-form__message--error {
	background: rgba(255, 0, 0, 0.2);
	border: 1px solid rgba(255, 0, 0, 0.5);
	color: var(--ma-cream);
}

@media (max-width: 768px) {
	.contact-form__fields {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.contact-form__title {
		font-size: 2rem;
	}
	
	.contact-form__header {
		margin-bottom: 2rem;
	}
}

@media (max-width: 480px) {
	.contact-form__title {
		font-size: 1.75rem;
	}
	
	.contact-form__button {
		width: 100%;
	}
}
/****************************************** END - Contact Form Component ******************************************/

/****************************************** START - Footer Component ******************************************/
.ma-footer {
	background: var(--ma-dark-green);
	padding: 4rem 0 2rem;
	position: relative;
}

.footer-mask-top {
	position: absolute;
	top: -4rem;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
}

@media (max-width:767px) {
	.footer-mask-top {
		left: -20%;
		width: 500%;
	}
	.ma-footer__container {
        z-index: 999;
        position: relative;
    }
}

.footer-mask-top-image {
	width: 100%;
	height: auto;
	display: block;
}


.ma-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ma-footer__contact {
	text-align: center;
	margin-bottom: 2rem;
}

.ma-footer__email,
.ma-footer__phone {
	color: var(--ma-cream);
	text-decoration: none;
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	transition: color 0.3s ease;
}

.ma-footer__email:hover,
.ma-footer__phone:hover {
	color: rgba(255, 255, 255, 0.8);
}

.ma-footer__social {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ma-footer__social-link {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--ma-cream);
	border-radius: 4px;
	color: var(--ma-cream);
	text-decoration: none;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.ma-footer__social-link:hover {
	background: var(--ma-cream);
	color: var(--ma-dark);
	transform: translateY(-3px);
}

.ma-footer__copyright {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.ma-footer__copyright p {
	margin: 0.5rem 0;
	display: flex;
    justify-content: center;
    align-items: center;
}

.ma-footer__design,
.ma-footer__design a {
	color: var(--ma-cream);
}

.ma-footer__design img{
	line-height: 0;
    height: 16px;
    position: relative;
    margin-left: 2px;
    top: -4px;
}

@media (max-width: 768px) {
	.ma-footer {
		padding: 2rem 0 1.5rem;
	}
	
	.ma-footer__container {
		padding: 0 1.5rem;
	}
	
	.ma-footer__social {
		gap: 0.75rem;
	}
	
	.ma-footer__social-link {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}
	
	.ma-footer__email,
	.ma-footer__phone {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.ma-footer__social-link {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	
	.ma-footer__copyright {
		font-size: 0.85rem;
	}
}
/****************************************** END - Footer Component ******************************************/