/*
Theme Name: Gather Grow
Theme URI:
Author:
Author URI:
Description: A custom theme for Gather Grow.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gather-grow
*/

/* ── Reset ── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Myriad Pro", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1a1a2e;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* ── Header ── */
.site-header {
	border-bottom: 1px solid #e5e7eb;
}

.site-header__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

/* Logo */
.site-header__logo img {
	height: 56px;
	width: auto;
	display: block;
}

/* Desktop nav */
.site-header__menu {
	display: flex;
	gap: 40px;
	align-items: center;
}

.site-header__menu .menu-item a {
	font-size: 16px;
	font-weight: 600;
	color: #000101;
	padding: 8px 0;
	transition: color 0.2s ease;
}

.site-header__menu .menu-item a:hover {
	color: #1a1a5e;
}

.site-header__menu .menu-item.current-menu-item a,
.site-header__menu .menu-item.current_page_item a {
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-color: #00BD5C;
	text-decoration-thickness: 2px;
}

/* Hamburger toggle */
.site-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.site-header__toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #1a1a2e;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__toggle.is-active .site-header__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-active .site-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-header__toggle.is-active .site-header__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile ── */
@media (max-width: 768px) {
	.site-header__container {
		height: 64px;
	}

	.site-header__logo img {
		height: 44px;
	}

	.site-header__toggle {
		display: flex;
	}

	.site-header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: #fff;
		box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
		padding: 80px 32px 32px;
		transition: right 0.3s ease;
		z-index: 1000;
	}

	.site-header__nav.is-open {
		right: 0;
	}

	.site-header__menu {
		flex-direction: column;
		gap: 0;
		align-items: flex-start;
	}

	.site-header__menu .menu-item a {
		display: inline-block;
		padding: 14px 0;
		font-size: 18px;
		border-bottom: 1px solid #f0f0f0;
	}
}

/* ── Hero ── */
.hero {
	position: relative;
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
	overflow: hidden;
}

.hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero__video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.45);
}

.hero__container {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero__logo {
	max-width: 580px;
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}

.hero__title {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
	line-height: 1.3;
}

.hero__subtitle {
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.5;
}

/* ── Hero Mobile ── */
@media (max-width: 768px) {
	.hero {
		min-height: calc(100vh - 64px);
		padding: 60px 20px;
	}

	.hero__logo {
		max-width: 300px;
		margin-bottom: 32px;
	}

	.hero__title {
		font-size: 20px;
	}

	.hero__subtitle {
		font-size: 16px;
	}
}

/* ── About Section ── */
.about-section {
	padding: 60px 24px;
}

.about-section__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.about-section__heading {
	font-size: 32px;
	font-weight: 800;
	color: #00CA59;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.about-section__content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 16px;
}

.about-section__image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

/* ── Attendee Section ── */
.attendee-section {
	padding: 60px 24px;
}

.attendee-section__container {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.attendee-section__heading {
	font-size: 32px;
	font-weight: 800;
	color: #00CA59;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.attendee-section__content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 16px;
}

.attendee-section__content ul {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 16px;
}

.attendee-section__content ul li {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.attendee-section__image img {
	width: 100%;
	max-width: 360px;
	height: auto;
	display: block;
}

/* ── About & Attendee Mobile ── */
@media (max-width: 768px) {
	.about-section__container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.about-section__image {
		order: -1;
	}

	.about-section__heading,
	.attendee-section__heading {
		font-size: 26px;
	}

	.attendee-section__container {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.attendee-section__image {
		display: flex;
		justify-content: center;
	}

	.attendee-section__image img {
		max-width: 260px;
	}
}

/* ── 2026 Event Section ── */
.event-section {
	padding: 60px 24px;
}

.event-section__container {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.event-section__logo {
	margin-bottom: 40px;
}

.event-section__logo img {
	max-width: 560px;
	width: 100%;
	height: auto;
	display: inline-block;
}

.event-section__content {
	text-align: left;
}

.event-section__content p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 20px;
}

/* ── 2026 Event Mobile ── */
@media (max-width: 768px) {
	.event-section__logo img {
		max-width: 300px;
	}
}

/* ── Contact Section ── */
.contact-section {
	min-height: calc(100vh - 80px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 24px;
}

.contact-section__container {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.contact-section__heading {
	font-size: 36px;
	font-weight: 800;
	color: #000101;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.contact-section__text {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 32px;
}

.contact-section__buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-section__btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	background-color: #5CB85C;
	border-radius: 8px;
	transition: background-color 0.2s ease;
}

.contact-section__btn:hover {
	background-color: #4a9e4a;
}

/* ── Contact Mobile ── */
@media (max-width: 768px) {
	.contact-section {
		min-height: calc(100vh - 64px);
		padding: 60px 20px;
	}

	.contact-section__heading {
		font-size: 28px;
	}

	.contact-section__buttons {
		flex-direction: column;
		align-items: center;
	}

	.contact-section__btn {
		width: 100%;
		max-width: 280px;
	}
}

/* ── Past Events ── */
.past-events {
	padding: 20px 24px;
}

.past-events__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

.past-events__title {
	font-size: 32px;
	font-weight: 800;
	color: #00CA59;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.past-events__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.past-events__content {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
}

.past-events__content p {
	margin-bottom: 16px;
}

.past-events__subtitle {
	font-size: 20px;
	font-weight: 700;
	color: #000101;
	margin-top: 24px;
	margin-bottom: 8px;
}

.past-events__subtitle:first-child {
	margin-top: 0;
}

.past-events__images {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-height: 400px;
	overflow: hidden;
	border-radius: 8px;
}

.past-events__images img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
}

.past-events__placeholder {
	background-color: #7BC67B;
	color: #000101;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	border-radius: 4px;
}

.past-events__sponsors {
	margin-top: 40px;
}

.past-events__sponsors-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 12px;
	margin-bottom: 20px;
}

.past-events__sponsors-logos a,
.past-events__sponsors-logos > img,
.past-events__sponsors-logos .sponsor-dark-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	background: #fff;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.past-events__sponsors-logos a:hover,
.past-events__sponsors-logos > img:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.past-events__sponsors-logos .sponsor-dark-bg {
	background: #333;
}

.past-events__sponsors-logos img {
	height: 48px;
	width: auto;
	object-fit: contain;
}

/* ── Past Events Mobile ── */
@media (max-width: 768px) {
	.past-events__title {
		font-size: 26px;
	}

	.past-events__row {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.past-events__placeholder {
		min-height: 180px;
	}
}

/* ── Event Gallery Carousel ── */
.past-events__gallery {
	min-width: 0;
	overflow: hidden;
}

.carousel {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	width: 100%;
}

.carousel__track {
	display: flex;
	transition: transform 0.4s ease;
	width: 100%;
}

.carousel__slide {
	min-width: 100%;
	width: 100%;
	flex-shrink: 0;
}

.carousel__slide img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

.carousel__btn {
	position: absolute;
	top: calc(175px - 22px);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: background 0.2s ease;
	z-index: 2;
	line-height: 1;
	padding: 0;
}

.carousel__btn:hover {
	background: #fff;
}

.carousel__btn--prev {
	left: 12px;
}

.carousel__btn--next {
	right: 12px;
}

.carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 16px 0;
}

.carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
}

.carousel__dot.active {
	background: #00CA59;
}

@media (max-width: 768px) {
	.carousel__slide img {
		height: 280px;
	}
}

/* ── Sponsorship Intro ── */
.sponsorship-intro {
	padding: 20px 24px;
}

.sponsorship-intro__container {
	max-width: 780px;
	margin: 0 auto;
}

.sponsorship-intro__container p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
}

/* ── Sponsorship Table ── */
.sponsorship-table {
	padding: 20px 24px;
}

.sponsorship-table__container {
	max-width: 1000px;
	margin: 0 auto;
}

.sponsorship-table__title {
	font-size: 32px;
	font-weight: 800;
	color: #131C33;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 32px;
}

.sponsorship-table__wrapper {
	overflow-x: auto;
}

.sponsorship-table table {
	width: 100%;
	border-collapse: collapse;
}

.sponsorship-table thead th {
	text-align: left;
	font-size: 14px;
	font-weight: 700;
	color: #000101;
	padding: 12px 16px;
	border-bottom: 2px solid #ddd;
}

.sponsorship-table tbody tr {
	border-bottom: 1px solid #e5e7eb;
}

.sponsorship-table tbody tr:nth-child(odd) {
	background-color: #f5f5f5;
}

.sponsorship-table tbody td {
	font-size: 14px;
	line-height: 1.6;
	color: #1a1a2e;
	padding: 16px;
	vertical-align: top;
}

.sponsorship-table tbody td:first-child {
	font-size: 15px;
	color: #00CA59;
}

/* ── Sponsorship CTA ── */
.sponsorship-cta {
	padding: 20px 24px;
	text-align: center;
}

.sponsorship-cta__container {
	max-width: 900px;
	margin: 0 auto;
}

.sponsorship-cta__title {
	font-size: 28px;
	font-weight: 800;
	color: #00A8EC;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.sponsorship-cta__container p {
	font-size: 16px;
	color: #1a1a2e;
}

.sponsorship-cta__link {
	color: #00CA59;
	font-weight: 600;
}

.sponsorship-cta__link:hover {
	text-decoration: underline;
}

/* ── Sponsorship Activations ── */
.sponsorship-activations {
	padding: 20px 24px;
}

.sponsorship-activations__container {
	max-width: 780px;
	margin: 0 auto;
}

.sponsorship-activations__intro {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 40px;
}

.sponsorship-activations__title {
	font-size: 32px;
	font-weight: 800;
	color: #00CA59;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 32px;
}

.sponsorship-activations h3 {
	font-size: 18px;
	font-weight: 700;
	color: #000101;
	margin-top: 28px;
	margin-bottom: 12px;
}

.sponsorship-activations ul {
	list-style: disc;
	padding-left: 32px;
	margin-bottom: 16px;
}

.sponsorship-activations ul li {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 4px;
}

/* ── Sponsorship Add-Ons ── */
.sponsorship-addons {
	padding: 20px 24px;
}

.sponsorship-addons__container {
	max-width: 780px;
	margin: 0 auto;
}

.sponsorship-addons__title {
	font-size: 32px;
	font-weight: 800;
	color: #131C33;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 32px;
}

.sponsorship-addons h3 {
	font-size: 18px;
	font-weight: 700;
	color: #000101;
	margin-top: 28px;
	margin-bottom: 12px;
}

.sponsorship-addons ul {
	list-style: disc;
	padding-left: 32px;
	margin-bottom: 8px;
}

.sponsorship-addons ul li {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 4px;
}

.sponsorship-addons__investment {
	font-size: 16px;
	color: #000101;
	margin-bottom: 8px;
}

.sponsorship-addons__note {
	text-align: center;
	color: #e74c3c;
	font-size: 16px;
	margin-top: 40px;
}

/* ── Accordion ── */
.accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.accordion__item {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

.accordion__header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 24px;
	background: #fff;
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	transition: background 0.2s ease;
}

.accordion__header:hover {
	background: #f9f9f9;
}

.accordion__icon {
	font-size: 22px;
	color: #00CA59;
	transition: transform 0.3s ease;
}

.accordion__item.active .accordion__icon {
	transform: rotate(45deg);
}

.accordion__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 24px;
}

.accordion__item.active .accordion__body {
	max-height: 500px;
	padding: 0 24px 18px;
}

.accordion__body ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 8px;
}

.accordion__body ul li {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	padding-left: 16px;
	position: relative;
}

.accordion__body ul li::before {
	content: "–";
	position: absolute;
	left: 0;
	color: #1a1a2e;
}

.accordion__body p {
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a2e;
	margin-bottom: 8px;
}

/* ── Sponsorship Mobile ── */
@media (max-width: 768px) {
	.sponsorship-table__title,
	.sponsorship-activations__title,
	.sponsorship-addons__title {
		font-size: 24px;
	}

	.sponsorship-cta__title {
		font-size: 22px;
	}

	.sponsorship-table tbody td,
	.sponsorship-table thead th {
		font-size: 13px;
		padding: 12px 10px;
	}
}
