/*
Theme Name: Victress Elkhorn
Theme URI: https://victressmvmt.com/
Author: VICTRESS MVMT
Description: Lightweight one-page WordPress theme for VICTRESS MVMT franchise locations. Clean, modern, ACF-driven homepage.
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: victress-elkhorn
Requires at least: 5.9
Requires PHP: 7.4
*/

/* --------------------------------------------------------------
   Reset & base
-------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 10px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, sans-serif;
	font-size: 1.6rem;
	line-height: 1.7;
	color: #2c2c2c;
	background: #fafafa;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

a:hover {
	text-decoration: underline;
}

/* Container */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Sections */
.section {
	padding: 4rem 0;
}

.section-heading {
	margin-top: 0;
	margin-bottom: 2rem;
	font-size: 2.4rem;
	font-weight: 700;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 0.9em 2em;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
	background: #8f7100;
	color: #fff;
}

.btn-primary:hover {
	background: #c49563;
}

.btn-secondary {
	background: white;
	color: #8f7100;
}

.btn-secondary:hover {
	background: #8f7100;
	color: #fff;
	border-color: #8f7100;
}

/* --------------------------------------------------------------
   Sticky header & nav (reference: victressmvmt.com/locations/lincoln-ne/)
-------------------------------------------------------------- */
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
	color: #fff;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 1px solid transparent;
}

.site-header.scrolled {
	position: fixed;
	background: rgba(255, 255, 255, 0.98);
	color: #2c2c2c;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border-bottom-color: #8f7100;
	backdrop-filter: blur(10px);
}

.site-header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.site-header a {
	color: inherit;
}

.site-header a:hover {
	text-decoration: underline;
	opacity: 0.9;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding .custom-logo-link,
.site-branding .site-logo-fallback {
	display: block;
	font-weight: 700;
	font-size: 1.6rem;
	transition: color 0.3s ease;
}

.site-header.scrolled .site-branding .site-logo-fallback {
	color: #2c2c2c;
}

.site-branding .custom-logo-link img {
	height: 50px;
	width: auto;
	max-height: 50px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .site-branding .custom-logo-link img {
	filter: none;
}

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

.nav-menu,
.fallback-nav {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0.5rem 1.5rem;
}

.nav-menu li,
.fallback-nav li {
	margin: 0;
}

.nav-menu a,
.fallback-nav a,
.site-header.scrolled .main-navigation.is-open .nav-menu a, .site-header.scrolled .main-navigation.is-open .fallback-nav a {
	padding: 0.25em 0;
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff;
	transition: color 0.3s ease;
}

.site-header.scrolled .nav-menu a,
.site-header.scrolled .fallback-nav a {
	color: #2c2c2c;
}

.nav-menu a:hover,
.fallback-nav a:hover {
	color: #8f7100;
	text-decoration: none;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
	padding: 0.5em 0.75em;
	font-size: 1.6rem;
	cursor: pointer;
	border-radius: 4px;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.menu-toggle:hover {
	opacity: 1;
	background: rgba(255,255,255,0.1);
}

.site-header.scrolled .menu-toggle:hover {
	background: rgba(0,0,0,0.05);
}

/* --------------------------------------------------------------
   Homepage sections, grids, cards, accordion
-------------------------------------------------------------- */
.homepage-one-page {
	padding-bottom: 0;
}

.home-hero {
	position: relative;
	min-height: 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	background-color: #2c2c2c;
	overflow: hidden;
}

.home-hero::before {
	content: '';
	position: absolute;
	top: -10%;
	left: -10%;
	right: -10%;
	bottom: -10%;
	background-image: inherit;
	background-size: cover;
	background-position: center;
	will-change: transform;
	transform: translateY(var(--parallax-y, 0));
	z-index: 0;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(44,44,44,0.7) 0%, rgba(44,44,44,0.5) 100%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	padding: 3rem 1.5rem;
}

.hero-heading {
	margin: 0 0 1.5rem;
	font-size: clamp(2.5rem, 6vw, 4rem);
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-intro {
	margin: 0 0 2.5rem;
	max-width: 42em;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.85rem;
	opacity: 0.95;
	line-height: 1.7;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.hero-ctas .btn {
	min-width: 160px;
}

.home-section {
	padding: 6rem 4rem;
}

.home-section:nth-child(even) {
	background: #fff;
}

.home-section:nth-child(odd) {
	background: #fafafa;
}

.section-heading {
	margin: 0 0 3rem;
	font-size: 2.25rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}

.section-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #8f7100;
}

/* About / Our Location */
.section-about .section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.about-text {
	line-height: 1.7;
}

.about-text p:first-child {
	margin-top: 0;
}

.about-address {
	margin: 1.5rem 0;
	padding: 1rem 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.about-social {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	max-width: fit-content;
  color: #8f7100;
}

.social-link:hover {
	text-decoration: none;
}

.social-link svg {
	flex-shrink: 0;
}

.about-map {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-map iframe {
	width: 100%;
	height: 450px;
	border: 0;
	display: block;
	filter: grayscale(20%) sepia(10%) hue-rotate(15deg);
}

/* Schedule */
.schedule-content {
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Team */
.team-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.team-content {
	padding-right: 2rem;
}

.team-heading, .video-content-heading {
	margin: 0 0 2rem;
	font-size: 3.2rem;
	font-weight: 800;
	color: #2c2c2c;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.2;
  position: relative;
	padding-bottom: 1rem;
}

.team-heading::after, .video-content-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0%;
	transform: translateX(0%);
	width: 60px;
	height: 3px;
	background: #8f7100;
}

.team-text {
	font-size: 1.6rem;
	line-height: 1.7;
	color: #555;
}

.team-text p:first-child {
	margin-top: 0;
}

.team-figure {
	margin: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-figure img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 70vh;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	display: block;
	object-fit: contain;
}

.team-figure figcaption {
	margin-top: 0.75rem;
	font-size: 1.4rem;
	color: #555;
}

/* Gallery slider - Masonry style */
.gallery-slider {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.gallery-track {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	gap: 1.5rem;
	padding: 1rem 0;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
	display: none;
}

.gallery-slide {
	flex: 0 0 auto;
	scroll-snap-align: start;
	height: 40vh;
  max-height: 700px;
  min-height: 400px;
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {
  .gallery-slide {
    height: 80vh;
    max-height: 700px;
    min-height: 300px;
  }
}

.gallery-slide img {
	height: 100%;
	width: auto;
	max-width: none;
	border-radius: 12px;
	display: block;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	object-fit: cover;
}

.gallery-prev,
.gallery-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(143, 113, 0, 0.9);
	color: #fff;
	border: none;
	padding: 0.75rem 1rem;
	font-size: 1.6rem;
	cursor: pointer;
	border-radius: 50%;
	z-index: 10;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.gallery-prev { left: -25px; }
.gallery-next { right: -25px; }

.gallery-prev:hover,
.gallery-next:hover {
	background: rgba(143, 113, 0, 1);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.gallery-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.gallery-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #ccc;
	cursor: pointer;
	padding: 0;
}

.gallery-dots button.is-active {
	background: #8f7100;
}

.gallery-dots button:hover {
	background: #8f7100;
	opacity: 0.7;
}

/* Services grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.service-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.section-services .service-card {
	background: #fff;
}

.service-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
  border-bottom: 2px solid #8f7100;
  background: #2c2c2c;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.05);
}

.service-content {
	padding: 1.75rem;
	flex: 1;
}

.service-title {
	margin: 0 0 1rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c2c2c;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-desc {
	font-size: 1.6rem;
	line-height: 1.7;
	color: #555;
}

/* Membership cards */
.membership-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.membership-card {
	flex: 0 0 260px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	overflow: hidden;
}

.membership-card:hover {
	border-color: #8f7100;
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(212,165,116,0.15);
}

.section-membership .membership-card {
	background: #fff;
}

.membership-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
  border-bottom: 2px solid #8f7100;
  background: #2c2c2c;
}

.membership-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.membership-card:hover .membership-image img {
	transform: scale(1.05);
}

.membership-content {
	padding: 2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.membership-title {
	margin: 0 0 1rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c2c2c;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.membership-features {
	flex: 1;
	font-size: 1.6rem;
	line-height: 1.7;
	color: #444;
	margin-bottom: 1.5rem;
}

.membership-card .btn {
	align-self: flex-start;
}

/* Workshops */
.workshops-list {
	display: grid;
	gap: 2rem;
	max-width: 100%;
	margin: 0 auto;
}

.workshop-item {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
	overflow: hidden;
	display: grid;
	grid-template-columns: 350px 1fr;
	align-items: stretch;
}

.workshop-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.workshop-image {
	width: 100%;
	height: 100%;
	min-height: 250px;
	overflow: hidden;
}

.workshop-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.workshop-item:hover .workshop-image img {
	transform: scale(1.05);
}

.workshop-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.workshop-title {
	margin: 0 0 1rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: #2c2c2c;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.workshop-desc {
	font-size: 1.6rem;
	line-height: 1.7;
	color: #444;
	margin-bottom: 1.25rem;
}

/* Video Showcase Section - Portrait Layout */
.section-videos {
	background: #fafafa;
}

.section-videos .container {
	max-width: 1400px;
}

.videos-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.video-item {
	position: relative;
}

.video-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 177.78%; /* 9:16 aspect ratio for portrait (720x1280) */
	overflow: hidden;
	cursor: pointer;
	background: #000;
}

.video-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.video-wrapper:hover .video-player {
	transform: scale(1.03);
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.2) 100%
	);
	pointer-events: none;
	transition: opacity 0.3s ease;
	opacity: 1;
}

.video-wrapper:hover .video-overlay {
	opacity: 0.5;
}

.video-wrapper.is-playing .video-overlay {
	opacity: 0;
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
	padding: 0;
	transition: all 0.3s ease;
	opacity: 1;
}

.video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.15);
}

.video-play-btn:focus {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.video-wrapper.is-playing .video-play-btn {
	opacity: 0;
	pointer-events: none;
}

.play-icon {
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
	transition: all 0.3s ease;
}

.video-play-btn:hover .play-icon {
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7));
}

.play-icon circle {
	transition: all 0.3s ease;
}

.video-play-btn:hover .play-icon circle {
	fill: rgba(0, 0, 0, 0.5);
	stroke-width: 3;
}

.video-card-title {
	padding: 1.5rem 2rem;
	margin: 0;
	font-size: 1.6rem;
	font-weight: 600;
	color: #2c2c2c;
	text-align: center;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.video-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	min-height: 400px;
  height: 100%
}

.video-content-heading {
	margin: 0 0 1.5rem;
	font-size: 3rem;
	font-weight: 700;
	color: #2c2c2c;
	line-height: 1.2;
}

.video-content-text {
	font-size: 1.6rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 2rem;
}

.video-content-text p:last-child {
	margin-bottom: 0;
}

.video-content .btn {
	margin-top: auto;
}

/* Video loading state */
.video-player[data-src]:not([src]) {
	background: #000;
}

/* FAQ accordion */
.faq-accordion {
	max-width: 720px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid #eee;
}

.faq-question {
	width: 100%;
	display: block;
	text-align: left;
	background: transparent;
	border: none;
	padding: 1.25rem 0;
	font-size: 1.8rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	padding-right: 2.5rem;
	color: #2c2c2c;
	transition: color 0.3s ease;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: #8f7100;
	font-weight: 300;
	transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
	content: "−";
	transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
	color: #8f7100;
}

.faq-answer {
	padding: 0 0 1.25rem;
	font-size: 1.6rem;
	line-height: 1.7;
	color: #444;
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-image {
	width: 100%;
	max-height: 600px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-image img {
	width: 100%;
	height: 100%;
	max-height: 600px;
	display: block;
	object-fit: cover;
	object-position: center;
}

.contact-intro {
	font-size: 1.6rem;
	line-height: 1.7;
	color: #555;
	margin: 0 0 2rem;
}

.contact-form-wrap {
	background: #fff;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	border: 1px solid #f0f0f0;
}

.section-contact .contact-form-wrap {
	background: #fff;
}

.contact-form-wrap label {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	color: #2c2c2c;
	margin-bottom: 0.5rem;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap textarea,
.contact-form-wrap select {
	width: 100%;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	font-size: 1.6rem;
	transition: all 0.3s ease;
	font-family: inherit;
	background: #fafafa;
	margin-bottom: 1.5rem;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus,
.contact-form-wrap select:focus {
	border-color: #8f7100;
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(143, 113, 0, 0.1);
}

.contact-form-wrap textarea {
	min-height: 140px;
  max-height: 140px;
	resize: none;
	line-height: 1.6;
}

.contact-form-wrap input[type="submit"],
.contact-form-wrap button[type="submit"] {
	background: #8f7100;
	color: #fff;
	border: none;
	padding: 1.1rem 2.5rem;
	border-radius: 8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.6rem;
	margin-top: 0;
	width: auto;
	display: inline-block;
}

.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap button[type="submit"]:hover {
	background: #a68200;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(143, 113, 0, 0.3);
}

.contact-form-wrap .wpcf7-form p {
	margin-bottom: 0;
}

.contact-form-wrap .wpcf7-not-valid-tip {
	font-size: 1.3rem;
	color: #d32f2f;
	margin-top: 0.5rem;
}

/* Footer */
.site-footer {
	background: #2c2c2c;
	color: #fff;
	padding: 4rem 0 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 2rem;
}

.footer-contact {
	text-align: left;
}

.footer-heading {
	margin: 0 0 1.5rem;
	font-size: 2.4rem;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-address,
.footer-phone {
	margin: 0.5rem 0;
	font-size: 1.5rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.footer-phone a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-phone a:hover {
	color: #8f7100;
}

.footer-social {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-end;
	justify-content: center;
}

.footer-social-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1.75rem;
	border: 2px solid #fff;
	border-radius: 50px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	min-width: 160px;
}

.footer-social-btn:hover {
	border-color: #8f7100;
	color: #8f7100;
	transform: translateX(-4px);
}

.footer-social-btn svg {
	flex-shrink: 0;
}

.footer-bottom {
	text-align: center;
}

.footer-copyright {
	margin: 0;
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------
   Mobile
-------------------------------------------------------------- */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

  .home-section {
    padding: 6rem 0;
  }

	.main-navigation {
		display: none;
	}

	.main-navigation.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #2c2c2c;
		padding: 1rem;
	}

	.nav-menu,
	.fallback-nav {
		flex-direction: column;
	}

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

	.about-map {
		order: -1;
	}

	.about-map iframe {
		height: 300px;
	}

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

	.team-content {
		padding-right: 0;
	}

	.team-heading {
		font-size: 2.4rem;
	}

  .service-image {
    height: 300px;
  }

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

	.gallery-prev,
	.gallery-next {
		width: 40px;
		height: 40px;
		padding: 0.5rem;
		font-size: 1.4rem;
	}

	.gallery-prev { left: 10px; }
	.gallery-next { right: 10px; }

	.services-grid {
		grid-template-columns: 1fr;
	}

	.membership-card {
		flex: 0 0 100%;
	}

	.workshop-item {
		grid-template-columns: 1fr;
	}

	.workshop-image {
		height: 250px;
		min-height: 250px;
	}

	/* Video section responsive */
	.videos-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.video-wrapper {
		padding-bottom: 80vh;
		max-height: 80vh;
	}

	.video-card {
		border-radius: 0;
		box-shadow: none;
		border: none;
	}

	.video-content {
		min-height: auto;
		padding: 3rem 0;
	}

	.video-content-heading {
		font-size: 2.4rem;
	}

	.video-content-text {
		font-size: 1.6rem;
	}

	.play-icon {
		width: 60px;
		height: 60px;
	}

	.video-card-title {
		font-size: 1.4rem;
		padding: 1.25rem 1.5rem;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.footer-contact {
		text-align: center;
	}

	.footer-social {
		align-items: center;
	}

	.footer-social-btn {
		width: 100%;
		max-width: 250px;
		justify-content: center;
	}

	.footer-social-btn:hover {
		transform: translateY(-2px);
	}
}
