body {
	margin: 0;
	font-family: 'Playfair Display', serif; /* Elegant serif font */
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	color: #f0f0f0;												 /* White/light text */
	z-index: 1;
}

body.home-body {
	background: url('/assets/images/bg-home.jpg');
}

body.content-body {
	background: url('/assets/images/bg-home.jpg');
}

body.list-body {
	background: url('/assets/images/bg-home.jpg');
}

body.gallery-body {
	background-color: black;
	background-image: none;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6); /* adjust for darkness */
	z-index: -1;
}

body.content-body::before {
	background-color: rgba(0, 0, 0, 0.75);
}

a {
	color: #00cccc;												 /* Cyan links */
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #000;
	padding: 0.8rem 2rem;
	border-bottom: 2px solid #111;
}

.header-left {
	flex-shrink: 0;
}

.banner-image {
	height: 7vw;
	width: auto;
	border-radius: 8px;
}

.header-right .nav-links {
	list-style: none;
	display: flex;
	gap: 1.2vw;
	margin: 0;
	padding: 0;
}

.header-right .nav-links li a {
	color: #ffffff;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}

.header-right .nav-links li a:hover {
	color: #00cccc;
}

.card-grid-section {
	padding: 2rem;
	text-align: center;
}

.card-grid-section h2 {
	font-size: 2.6rem;
	margin-bottom: 2rem;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.card {
	background-color: #111;
	border: 1px solid #222;
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
	transition: transform 0.2s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.card img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.card h3 {
	font-size: 1.5rem;
	margin: 0.5rem 0;
}

.card p {
	font-size: 1.2rem;
	line-height: 1.4rem;
	color: #ccc;
}

.card-button {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	background-color: #004d4d;
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

.card-button:hover {
	background-color: #00cccc;
	color: #000;
}

.site-footer {
	position: relative;
	background-image: url('/assets/images/footer-banner.png');
	background-size: cover;
	background-position: center;
	color: white;
}

.footer-overlay {
	background-color: rgba(0, 0, 0, 0.4); /* Darken image */
	padding: 7rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	font-size: 1.5rem;
}

.footer-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.footer-links li a {
	color: #00cccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links li a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.content-main {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	color: white;
}

.content-main h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: white;
}

.content-section img {
	max-width: 100%;
	max-height: 60vh;
	width: auto;
	height: auto;
	display: block;
	margin-bottom: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
	break-inside: avoid;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
}

.video-section {
	position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-section iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
}

p {
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.download-section {
	margin-top: 2rem;
	text-align: center;
}

.list-main {
	max-width: 900px;
	margin: 4rem auto;
	padding: 0 1rem;
}

.link-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.list-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.75rem;
	background-color: rgba(0, 0, 0, 0.5);
	text-decoration: none;
	transition: transform 0.2s, background-color 0.3s;
	gap: 1rem;
}

.list-link:hover {
	background-color: rgba(0, 0, 0, 0.7);
	transform: scale(1.02);
}

.list-text {
	flex: 1;
}

.list-link h2 {
	margin: 0 0 0.5rem;
	color: #0ff;
}

.list-link p {
	margin: 0;
	color: #eee;
}

.list-thumbnail {
	width: 8rem;
	height: 8rem;
	object-fit: cover;
	border-radius: 0.5rem;
	border: 1px solid #444;
}

@media (max-width: 600px) {
	.list-link {
		flex-direction: column;
		align-items: flex-start;
	}

	.list-thumbnail {
		margin-top: 1rem;
	}
}

.button {
	display: inline-block;
	background-color: #8c0808;
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: bold;
	transition: background-color 0.3s ease;
	margin-bottom: 1rem;
	margin-top: 1rem;
	font-size: 1.3rem;
}

.button:hover {
	background-color: #cd0505;
}

/* Page container */
.gallery-main {
	padding: 2rem;
	max-width: 1500px;
	margin: 0 auto;
}

.gallery-main h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: white;
}

/* Image layout */
.gallery-grid {
	column-count: 2;
	column-gap: 1.5rem;
}

.gallery-grid img {
	width: 100%;
	display: block;
	margin-bottom: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
	cursor: pointer;
	break-inside: avoid;
}

.gallery-grid img:hover {
	transform: scale(1.01);
}

.image-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	cursor: zoom-out;
	text-align: center;
}

.image-overlay .overlay-content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.image-overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 0.5rem;
}

.section-divider {
	border: none;
	height: 2px;
	width: 100%;
	max-width: min(100vw, 1600px);
	margin: 1rem auto 2rem;
	background: white;
	border-radius: 1px;
}
