/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #620364; /* Background color for the entire website, including individual sections */
	--default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #620364; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #000000; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #ffffff; /* The default color of the main navmenu links */
	--nav-hover-color: #620364; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #620364; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #232121;
	--surface-color: #000000;
}

.dark-background {
	--background-color: #1c1c1a;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #252525;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: 'Teko', sans-serif;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: 'Teko', sans-serif;
}

/* Pulsating Play Button
------------------------------*/

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: '';
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(0, 0, 0, 0);
	--default-color: #ffffff;
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 10px 0;
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 35px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 16px;
	padding: 8px 26px;
	margin: 0;
	border-radius: 50px;
	transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .logo h1 {
		font-size: 28px;
	}

	.header .cta-btn {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 20px;
	}

	.header .navmenu {
		order: 3;
	}
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: #620364;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu > ul > li {
		white-space: nowrap;
		padding: 15px 14px;
	}

	.navmenu > ul > li:last-child {
		padding-right: 0;
	}

	.navmenu a,
	.navmenu a:focus {
		color: color-mix(in srgb, var(--nav-color), transparent 30%);
		font-size: 21px;
		padding: 0 2px;
		font-family: 'Teko', sans-serif;
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 16px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu > ul > li > a:before {
		content: '';
		position: absolute;
		height: 2px;
		bottom: -27px;
		left: 0;
		background-color: var(--nav-hover-color);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navmenu a:hover:before,
	.navmenu li:hover > a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 17px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 15px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 31px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: 'Teko', sans-serif;
		font-size: 19px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 15px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 34px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: var(--background-color);
	font-size: 17px;
	text-align: center;
	padding: 30px 0;
	position: relative;
}

.footer h3 {
	font-size: 38px;
	font-weight: 700;
	position: relative;
	padding: 0;
	margin: 0 0 15px 0;
}

.footer p {
	font-size: 18px;
	font-style: italic;
	padding: 0;
	margin: 0 0 30px 0;
}

.footer .social-links {
	margin: 0 0 30px 0;
}

.footer .social-links a {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--contrast-color);
	line-height: 1;
	margin: 0 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	text-decoration: none;
}

.footer .copyright {
	padding-top: 25px;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
	font-size: 16px;
	padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: '';
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid var(--accent-color);
	border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 25px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 72px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 57px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2:after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
}

.section-title p {
	margin-bottom: 0;
	color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}
/*--------------------------------------------------------------
# volley-loading Section
--------------------------------------------------------------*/
.volley-loading {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #9600ad;
}

.volley-loading img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.volley-loading:before {
	content: '';
	background: linear-gradient(
		to top,
		rgba(141, 0, 173, 0.6),
		rgba(232, 0, 248, 0.4)
	);
	position: absolute;
	inset: 0;
	z-index: 2;
}

.volley-loading .container {
	position: relative;
	z-index: 3;
}

.volley-loading h2 {
	margin: 0;
	font-size: 49px;
	font-weight: 800;
	color: #2a1a2a;
	font-family: 'Impact', sans-serif;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px #9600ad;
}

.volley-loading p {
	color: #ffffff;
	margin: 15px 0 0;
	font-size: 27px;
	max-width: 800px;
	line-height: 1.6;
	font-family: 'Arial', sans-serif;
	text-shadow: 1px 1px 3px #9600ad;
}

@media (max-width: 768px) {
	.volley-loading h2 {
		font-size: 34px;
		line-height: 38px;
	}

	.volley-loading p {
		font-size: 19px;
		line-height: 26px;
		padding: 0 15px;
	}
}

/*--------------------------------------------------------------
# volley-history Section
--------------------------------------------------------------*/
.volley-history-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	background: linear-gradient(to right, #c19fc1, #c19fc1); /* Blue to Yellow */
	padding: 3rem 1rem;
	color: #fff;
	margin-top: 0;
}

.volley-history-left {
	flex: 1 1 55%;
	min-width: 300px;
	backdrop-filter: blur(4px);
	border-radius: 12px;
	padding: 30px;
	box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.08);
}

.volley-history-right {
	flex: 1 1 35%;
	min-width: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.volley-history-right img {
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	transform: scale(1.05);
	transition: transform 0.4s ease-in-out;
}

.volley-history-right img:hover {
	transform: scale(1.1);
}

.volley-history .section-title h2 {
	font-size: 44px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 800;
	text-shadow: 0px 0px 10px #2a1a2a;
}

.volley-history .section-title p {
	font-size: 19px;
	color: #fffbea;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.volley-history ul li i {
	color: #2a1a2a;
	font-size: 24px;
	margin-right: 8px;
}

.volley-history ul li span {
	font-size: 18px;
	font-weight: 600;
	color: #f2f2f2;
}

.volley-history ul li:hover {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 5px;
	transition: 0.3s;
}

.volley-history .content p {
	line-height: 1.8;
	font-size: 19px;
	margin-bottom: 30px;
}

.volley-history .container {
	animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*--------------------------------------------------------------
# volley-services Section
--------------------------------------------------------------*/
.volley-services {
	position: relative;
	background: linear-gradient(to right, #b891b9, #620364);
	color: #fff;
	padding: 80px 0;
	overflow: hidden;
	box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.15);
}

.volley-services .section-title {
	text-align: center;
	margin-bottom: 50px;
}

.volley-services .section-title h2 {
	font-weight: 800;
	font-size: 37px;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 2px 2px #003481;
}

.volley-services .section-title p {
	font-size: 18px;
	color: #fefefe;
	max-width: 600px;
	margin: 0 auto;
	text-shadow: 1px 1px #9600ad;
}

.service-item {
	background: #ffffff;
	border-radius: 18px;
	padding: 50px 30px;
	transition: all ease-in-out 0.3s;
	border-bottom: 5px solid #2a1a2a;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.service-item h3 {
	font-weight: 700;
	margin: 10px 0 15px 0;
	font-size: 25px;
	transition: ease-in-out 0.3s;
	color: #9600ad;
}

.service-item p {
	line-height: 24px;
	font-size: 16px;
	margin-bottom: 0;
	color: #333;
}

.service-item:hover {
	transform: translateY(-10px);

	border-color: #9600ad;
}

.service-item:hover h3 {
	color: #2a1a2a;
}

.volley-effect::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/volleyball-texture.png');
	background-size: cover;
	opacity: 0.08;
	z-index: 1;
}

@media (max-width: 768px) {
	.volley-services .section-title h2 {
		font-size: 32px;
	}

	.volley-services .section-title p {
		font-size: 16px;
	}

	.service-item h3 {
		font-size: 25px;
	}

	.service-item p {
		font-size: 15px;
	}
}

/*--------------------------------------------------------------
# volley-impact Section
--------------------------------------------------------------*/
.volley-impact {
	position: relative;
	background: linear-gradient(to right, #620364, #c69fc7);
	color: #fff;
	padding: 80px 0;
	overflow: hidden;
	z-index: 1;
}

.volley-impact .subheading {
	text-align: center;
	margin-bottom: 50px;
}

.volley-impact .subheading h3 {
	font-weight: 800;
	font-size: 39px;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 2px 2px #003481;
}

.volley-impact .subheading p {
	font-size: 17px;
	color: #fefefe;
	max-width: 640px;
	margin: 0 auto;
	text-shadow: 1px 1px #002f6d;
}

.volley-impact-item {
	background: #ffffff;
	border: 4px solid #2a1a2a;
	border-radius: 16px;
	padding: 30px 20px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;

	position: relative;
	z-index: 2;
}

.volley-impact-item:hover {
	transform: translateY(-8px);
}

.volley-impact-item span {
	display: block;
	font-size: 57px;
	font-weight: 900;
	color: #9600ad;
	margin-bottom: 10px;
	text-shadow:
		0 0 10px #2a1a2a,
		0 0 20px #2a1a2a;
}

.volley-impact-item p {
	font-size: 15px;
	font-weight: 700;
	color: #9600ad;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.volley-impact .subheading h3 {
		font-size: 27px;
	}

	.volley-impact .subheading p {
		font-size: 14px;
	}

	.volley-impact-item span {
		font-size: 41px;
	}

	.volley-impact-item p {
		font-size: 13px;
	}
}

/*--------------------------------------------------------------
# val-answers Section (Volleyball Theme)
--------------------------------------------------------------*/
.val-answers {
	background: linear-gradient(135deg, #620364 0%, #c19fc1 100%);
	color: #fff;
	padding: 60px 0;
	overflow: hidden;
}

.val-answers .content h3 {
	font-weight: 800;
	font-size: 37px;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 1px;
	text-shadow: 2px 2px #003481;
	animation: none;
}

.val-answers .content p {
	color: #fffdf5;
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.val-answers .val-answers-container {
	margin-top: 15px;
}

.val-answers .val-answers-container .val-answers-item {
	background-color: #ffffff;
	border-left: 5px solid #2a1a2a;
	position: relative;
	padding: 25px 20px 25px 55px;
	margin-bottom: 18px;
	box-shadow: 0px 8px 20px rgba(0, 70, 173, 0.2);
	border-radius: 6px;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.val-answers .val-answers-container .val-answers-item:hover {
	transform: translateY(-3px);
	box-shadow: 0px 10px 30px rgba(0, 70, 173, 0.35);
}

.val-answers .val-answers-container .val-answers-item h3 {
	font-weight: 700;
	font-size: 19px;
	line-height: 24px;
	color: #9600ad;
	margin: 0 30px 0 0;
	cursor: pointer;
}

.val-answers .val-answers-container .val-answers-item h3:hover {
	color: #2a1a2a;
}

.val-answers .val-answers-container .val-answers-item .val-answers-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.4s ease;
	visibility: hidden;
	opacity: 0;
	padding-left: 5px;
}

.val-answers .val-answers-container .val-answers-item .val-answers-content p {
	margin: 10px 0 0;
	color: #444;
	font-size: 16px;
	line-height: 1.5;
	overflow: hidden;
}

.val-answers .val-answers-container .val-answers-item .val-answers-icon {
	position: absolute;
	top: 28px;
	left: 20px;
	font-size: 26px;
	line-height: 0;
	color: #2a1a2a;
}

.val-answers .val-answers-container .val-answers-item .val-answers-toggle {
	position: absolute;
	top: 25px;
	right: 20px;
	font-size: 19px;
	color: #9600ad;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.val-answers
	.val-answers-container
	.val-answers-item
	.val-answers-toggle:hover {
	color: #2a1a2a;
}

.val-answers .val-answers-container .val-answers-active h3 {
	color: #2a1a2a;
}

.val-answers .val-answers-container .val-answers-active .val-answers-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
}

.val-answers .val-answers-container .val-answers-active .val-answers-toggle {
	transform: rotate(90deg);
	color: #2a1a2a;
}

/*--------------------------------------------------------------
# val-contact Section (Volleyball Theme)
--------------------------------------------------------------*/
.val-contact {
	background: linear-gradient(to right, #c19fc1, #c19fc1);
	color: #fff;
	padding: 60px 0;
}

.val-contact .section-title {
	text-align: center;
	margin-bottom: 50px;
}

.val-contact .section-title h2 {
	font-size: 43px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 800;
	text-shadow: 0 0 10px #2a1a2a;
}

.val-contact .section-title p {
	font-size: 19px;
	color: #fffdee;
}

.val-contact .php-email-form {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 8px 24px rgba(0, 70, 173, 0.2);
	backdrop-filter: blur(4px);
}

.val-contact .form-control {
	background-color: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 1px solid #2a1a2a;
	border-radius: 8px;
	padding: 15px;
	font-size: 18px;
	transition: 0.3s ease-in-out;
}

.val-contact .form-control::placeholder {
	color: #fefefe;
	opacity: 0.7;
}

.val-contact .form-control:focus {
	border-color: #9600ad;
	background-color: rgba(255, 255, 255, 0.2);
	outline: none;
}

.val-contact button {
	background: #2a1a2a;
	color: #9600ad;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 19px;
	font-weight: 600;
	cursor: pointer;
	transition:
		background 0.3s ease,
		transform 0.2s ease;
}

.val-contact button:hover {
	background: #2a1a2a;
	transform: scale(1.05);
}

.val-contact .form-control,
.val-contact button {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
	.val-contact .section-title h2 {
		font-size: 33px;
	}

	.val-contact .section-title p {
		font-size: 16px;
	}

	.val-contact .form-control {
		font-size: 16px;
		padding: 12px;
	}

	.val-contact button {
		font-size: 18px;
		padding: 10px 18px;
	}
}

.footer-48201 {
	padding: 7rem 0;
	background-color: #620364;
	color: #fff;
}
.footer-48201 .footer-site-logo {
	font-size: 1.5rem;
	color: #fff;
}
.footer-48201 .nav-links li {
	margin-bottom: 10px;
}
.footer-48201 .nav-links li a {
	color: #fff;
}
.footer-48201 .nav-links li a:hover {
	color: #fff;
}
.footer-48201 .btn.btn-tertiary {
	background-color: #e42c64;
	color: #fff;
	border-radius: 30px;
	border: none;
	padding: 10px 20px;
}
.footer-48201 .social li {
	display: inline-block;
}
.footer-48201 .social li a {
	color: gray;
	padding: 7px;
}
.footer-48201 .social li a:hover {
	color: #fff;
}
.footer-48201 .copyright {
	border-top: 1px solid #404040;
}

#cookie-popup {
	position: fixed;
	bottom: 30px;

	transform: translateX(-50%);
	background: #ffffff;
	color: #333;
	padding: 20px 30px;
	font-family: 'Teko', sans-serif;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	display: none;
	opacity: 0; /* Initially invisible */
	transform: translateY(50px); /* Slide up effect */
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
	max-width: 450px;
	z-index: 9999;
}

#cookie-popup.show {
	opacity: 1;
	transform: translateY(0);
}

#cookie-popup p {
	margin: 0;
	padding: 0;
}

#cookie-popup .popup-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-popup button {
	background: #28a745;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 16px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

#cookie-popup button:hover {
	background: #218838;
	transform: scale(1.05);
}

#cookie-popup .popup-message {
	max-width: 80%;
}

#cookie-popup .popup-message a {
	color: #28a745;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
	color: #218838;
}
