@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');

@font-face {
    font-family: "myFirstFont";
    src:url("Herqin-Elegant-Ligature-Serif-Font/Fonts/Herqin.otf"),
	url("Herqin-Elegant-Ligature-Serif-Font/Fonts/Herqin.ttf"),
	url("Herqin-Elegant-Ligature-Serif-Font/WebFonts/herqin-webfont.woff"),
	url("Herqin-Elegant-Ligature-Serif-Font/WebFonts/herqin-webfont.woff2"),;
}

:root {
	/* --main-font: "Amatic SC", sans-serif; */
	/* --main-font: "Sen", sans-serif; */
	--main-font: "myFirstFont", sans-serif;
	/* --secondary-font: "myFirstFont"; */
	--secondary-font: "Sen", "avenir-lt-w01_35-light1475496", sans-serif;
	--font-weight-normal: 400;
	--font-weight-bold: 700;
	--font-style-normal: normal;
	--font-size-nav: 43px;
	--letter-spacing: 2px;
	--text-outline: 0 0 transparent;
	--text-shadow: 0 0 transparent;
	--text-transform: none;
	--color-white: white;
	/* --color-pink: rgb(255, 61, 129); */
	--color-pink: rgb(0, 255, 255);
	/* --color-lime: rgb(255, 61, 129); */
	--color-lime: rgb(169, 210, 0);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

@font-face {
	font-family: 'avenir-lt-w01_35-light1475496';
	src: url('https://fonts.gstatic.com/s/avenirnext/v7/RgAaAF62xmntdEBToPDrIvWpp8M0JOinX0CwZYHB.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

body {
	background-color: #000000;
}

header {
	padding: 20px;
	background-color: #000000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.site-title {
	margin: 0;
	font-family: var(--main-font);
	font-size: var(--font-size-nav);
	color: var(--color-white);
	letter-spacing: var(--letter-spacing);
	text-shadow: var(--text-outline), var(--text-shadow);
	text-transform: var(--text-transform);
}

nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 20px;
}

nav a {
	text-decoration: none;
	color: var(--color-white);
	font-family: var(--main-font);
	font-size: var(--font-size-nav);
	letter-spacing: var(--letter-spacing);
	text-shadow: var(--text-outline), var(--text-shadow);
	text-transform: var(--text-transform);
}

nav a:hover {
	color: var(--color-pink);
}

ul {
	display: flex;
	gap: 10px;
}

li {
	list-style: none;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--main-font);
	font-weight: var(--font-weight-bold);
	font-style: var(--font-style-normal);
}

a {
	text-decoration: none;
	color: var(--color-white);
	font-size: var(--font-size-nav);
	letter-spacing: var(--letter-spacing);
	text-shadow: var(--text-outline), var(--text-shadow);
	text-transform: var(--text-transform);
}

a[href="about.html"] {
	color: var(--color-pink);
}

/* About page styles */
.about-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 40px 20px;
	background: #000;
	color: white;
	position: relative;
}

.about-content {
	max-width: 800px;
	margin: 60px auto;
	padding: 20px;
	color: var(--color-white);
}

.about-title {
	font-family: var(--main-font);
	font-size: 36px;
	color: var(--color-pink);
	margin-bottom: 30px;
	text-transform: uppercase;
}

.about-text {
	font-family: var(--secondary-font), Arial, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-white);
	margin-bottom: 40px;
}

.about-page .contact-info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
	padding-left: 0;
}

.about-page .contact-info p {
	font-family: var(--main-font);
	font-size: 18px;
	color: rgb(169, 210, 0);
	letter-spacing: 1px;
	margin: 0;
}

.about-page .social-icons {
	display: flex;
	gap: 15px;
}

.about-page .social-icons a {
	color: rgb(169, 210, 0);
	font-size: 20px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.about-page .social-icons a:hover {
	color:rgb(0, 255, 255, 0.7);
}

/* Update navigation for about page */
header nav ul {
	display: flex;
	gap: 20px;
	padding: 20px;
}

header nav ul li {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	list-style: none;
}

header nav ul li a {
	font-family: var(--main-font);
	font-size: 32px;
	text-decoration: none;
	color: white;
	transition: color 0.3s ease;
}

header nav ul li a[href="about.html"] {
	color: rgb(0, 255, 255);
}

/* Mobile styles */
@media (max-width: 768px) {
	html, body {
		overflow-y: auto;
		height: auto;
	}

	.page-container {
		min-height: 100vh;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
	}

	main {
		flex: 1;
		overflow-y: auto;
		position: relative;
	}

	header {
		padding: 10px;
	}

	.header-content {
		padding: 5px;
	}

	.site-title {
		font-size: 24px;
	}
	
	nav ul {
		gap: 8px;
	}

	.slider-container {
		height: calc(100vh - 120px);
		overflow: hidden;
	}

	.gallery {
		display: none;
	}

	footer {
		padding: 10px;
		height: 50px;
	}

	.footer-content {
		padding: 5px;
	}

	.social-icons {
		gap: 10px;
	}

	.social-icons a {
		font-size: 16px;
	}

	.email-icon {
		font-size: 16px;
	}
}

/* Gallery styles */
.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
	position: relative;
	/* margin-bottom: 30px; */
}

.fx-logo {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.fx-logo img {
	max-width: 350px;
	height: auto;
}

.play-button {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: var(--color-white);
	font-family: var(--secondary-font), Arial, sans-serif;
	font-size: 14px;
	padding: 8px 15px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.play-button:hover {
	background-color: rgba(255, 61, 129, 0.3);
	border-color: var(--color-pink);
}

.gallery {
	width: 100%;
	max-width: 100vw;
	overflow: hidden;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	max-width: 100%;
}

.gallery-item {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.02);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.gallery-media {
	width: 100%;
	height: 100%;
}

.gallery-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-item .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.gallery-item:hover .play-icon {
	opacity: 1;
}

.gallery-item .video-title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

.gallery-item:hover .video-title-overlay {
	opacity: 1;
}

.gallery-item .video-title {
	color: white;
	text-align: center;
	padding: 3px 6px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	transform: translateY(-25px);
}

/* Responsive gallery */
@media (max-width: 1200px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.fx-logo img {
		max-width: 250px;
	}

	.gallery-item .play-icon {
		width: 32px;
		height: 32px;
	}
	
	.gallery-item .play-icon i {
		font-size: 14px;
	}
	
	.gallery-item .video-title {
		font-size: 12px;
		padding: 3px 8px;
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		display: none;
		/* Hide gallery on mobile */
	}

	header {
		padding: 8px;
	}

	.header-content {
		padding: 3px;
	}

	.site-title {
		font-size: 20px;
	}

	nav ul {
		gap: 5px;
	}

	nav a {
		font-size: 20px;
	}

	main {
		padding: 0;
		overflow-y: hidden;
		/* Prevent vertical scrolling on mobile */
		width: 100%;
	}

	.gallery {
		padding: 0;
		width: 100%;
	}

	/* Add more spacing to the bottom of slider on mobile */
	.slider-container {
		position: relative;
		width: 100%;
		height: calc(100vh - 100px); /* Further reduced for very small screens */
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	/* Make footer appear right after slider */
	footer {
		margin-top: 20px;
		width: 100%;
		padding: 8px;
		height: 40px;
	}

	.footer-content {
		padding: 3px;
	}

	.video-wrapper iframe {
		height: calc(100% - 30px);
		/* Smaller header on mobile */
	}

	.page-container {
		max-width: 100vw;
	}

	.slider {
		width: 100%;
		height: 300px;
		position: relative;
		margin-bottom: 20px;
	}

	.slider-dots {
		position: static;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
		padding: 15px 0;
		transform: none;
		margin: 0;
	}

	.dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.3);
		cursor: pointer;
		transition: all 0.3s ease;
		border: none;
		display: block;
	}

	.dot.active {
		background-color: rgba(255, 255, 255, 0.9);
		transform: scale(1.2);
	}

	.slide-content h2 {
		font-size: 24px;
	}

	.slider-nav {
		display: none;
	}

	.social-icons {
		gap: 8px;
	}

	.social-icons a {
		font-size: 14px;
	}

	.email-icon {
		font-size: 14px;
	}
}

/* Slider styles */
.slider-container {
	position: relative;
	width: 100%;
	height: 85vh;
	overflow: hidden;
}

.slider {
	width: 100%;
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	z-index: 1;
	overflow: hidden;
}

.slide.active {
	opacity: 1;
	z-index: 2;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: var(--color-white);
	z-index: 3;
}

.slide-content h2 {
	font-family: var(--main-font);
	font-weight: var(--font-weight-bold);
	font-size: 120px;
	letter-spacing: 5px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s ease;
}

.slider-nav:hover {
	background: rgb(0, 255, 255, 0.7);
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

/* Slider dots - Hide on desktop/laptop */
.slider-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 15px 0;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	display: block;
}

.dot.active {
	background-color: rgba(255, 255, 255, 0.9);
	transform: scale(1.2);
}

/* Show dots only on mobile */
@media (max-width: 768px) {
	.slider-dots {
		display: flex;
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		gap: 10px;
		z-index: 10;
	}

	.slider-container {
		height: 400px;
	}

	.slide-content h2 {
		font-size: 80px;
	}

	.slider-nav {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.slider-container {
		position: relative;
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.slider {
		width: 100%;
		height: 300px;
		position: relative;
		margin-bottom: 20px;
	}

	.slider-dots {
		position: static;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
		padding: 15px 0;
		transform: none;
		margin: 0;
	}

	.dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.3);
		cursor: pointer;
		transition: all 0.3s ease;
		border: none;
		display: block;
	}

	.dot.active {
		background-color: rgba(255, 255, 255, 0.9);
		transform: scale(1.2);
	}

	.slide-content h2 {
		font-size: 24px;
	}

	.slider-nav {
		display: none;
	}
}

/* Video player styles */
.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.3s ease;
	z-index: 5;
}

.play-icon i {
	color: white;
	font-size: 24px;
}

.slide:hover .play-icon,
.gallery-item:hover .play-icon {
	opacity: 1;
}

/* Embedded Video Styles */
.slide-media,
.gallery-media {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.video-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: none;
	flex-direction: column;
	z-index: 10;
	overflow: hidden;
}

.slide-media.video-active .video-wrapper,
.gallery-media.video-active .video-wrapper {
	display: flex;
}

.slide-media.video-active img,
.gallery-media.video-active img {
	display: none;
}

.video-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	background-color: #1a1a1a;
	color: white;
	width: 100%;
}

.video-title {
	font-family: var(--secondary-font), Arial, sans-serif;
	font-size: 14px;
}

.close-video {
	background: none;
	border: none;
	font-size: 24px;
	color: white;
	cursor: pointer;
}

.video-wrapper iframe {
	flex-grow: 1;
	width: 100%;
	height: calc(100% - 40px);
	/* Account for header height */
	border: none;
	display: block;
}

@media (max-width: 768px) {
	.play-icon {
		width: 50px;
		height: 50px;
	}

	.play-icon i {
		font-size: 20px;
	}

	.video-title {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.play-icon {
		width: 40px;
		height: 40px;
		opacity: 1;
		/* Always visible on mobile */
	}

	.play-icon i {
		font-size: 16px;
	}

	.video-header {
		padding: 5px 10px;
	}

	.video-title {
		font-size: 10px;
	}

	.close-video {
		font-size: 18px;
	}
}

.page-container {
	width: 100%;
	overflow-x: hidden;
	position: relative;
}

/* Three-dot menu and video list panel */
.three-dots-menu {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: white;
	transition: background-color 0.3s ease;
}

.three-dots-menu:hover {
	background: rgba(0, 0, 0, 0.7);
}

.three-dots-menu i {
	font-size: 20px;
}

.video-list-panel {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.95);
	z-index: 1001;
	transition: right 0.3s ease;
	padding: 20px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.video-list-panel.active {
	right: 0;
}

.video-list-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	color: white;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.video-list-header h3 {
	font-size: 20px;
	margin: 0;
}

.close-video-list {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
}

.video-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 15px;
}

.video-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 60px;
	position: relative;
}

.video-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(5px);
}

.video-item-thumbnail {
	width: 100px;
	height: 65px;
	flex-shrink: 0;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.video-item-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-item .play-icon {
	position: relative;
	width: 32px;
	height: 32px;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	transform: translateY(0);
}

.video-item:hover .play-icon {
	opacity: 1;
}

.video-item .play-icon i {
	color: white;
	font-size: 16px;
}

.video-item .video-title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

.video-item:hover .video-title-overlay {
	opacity: 1;
}

.video-item .video-title {
	color: white;
	text-align: center;
	padding: 3px 6px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: var(--secondary-font), Arial, sans-serif;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	transform: translateY(-25px);
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
	.three-dots-menu {
		display: flex;
	}
	
	.video-list-panel {
		padding: 15px;
		height: 100vh;
		overflow-y: auto;
	}
	
	.video-list {
		gap: 10px;
		height: auto;
		overflow-y: visible;
		padding-bottom: 50px; /* Add more padding at bottom for better scrolling */
	}
	
	.video-item {
		padding: 6px;
		min-height: 50px;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	
	.video-item-thumbnail {
		width: 80px;
		height: 50px;
		flex-shrink: 0;
	}
	
	.video-item .play-icon {
		width: 28px;
		height: 28px;
	}
	
	.video-item .play-icon i {
		font-size: 12px;
	}
	
	.video-item .video-title {
		font-size: 11px;
		padding: 2px 4px;
		display: block;
		opacity: 1;
		transform: none;
		position: static;
		text-align: right;
		margin-left: 10px;
	}
	
	.video-item .video-title-overlay {
		position: static;
		opacity: 1;
		background: none;
		pointer-events: auto;
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
	}
}

@media (min-width: 769px) {
	.three-dots-menu {
		display: none;
	}
}

/* Footer styles */
footer {
	width: 100%;
	padding: 20px 0;
	background-color: rgba(0, 0, 0, 0.8);
	margin-top: 40px;
}

.footer-content {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.email-icon {
	color: var(--color-pink);
	font-size: 20px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.email-icon:hover {
	color:  rgb(0, 255, 255, 0.7);
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	color: var(--color-pink);
	font-size: 20px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-icons a:hover {
	color:  rgb(0, 255, 255, 0.7);
}

/* Remove duplicate styles */
.email-section {
	display: none;
}

/* Mobile styles for header */
@media (max-width: 768px) {
	.site-title {
		font-size: 28px; /* Smaller font size for mobile */
	}
	
	.header-content {
		padding: 10px; /* Reduce padding on mobile */
	}
	
	nav ul {
		gap: 10px; /* Reduce gap between nav items on mobile */
	}
}