/* Additional Custom Styles for Component Library Theme */

/* Custom Fonts */
@font-face {
	font-family: 'Alex Brush';
	src: url('../fonts/Alex_Brush/AlexBrush-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('../fonts/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('../fonts/Noto_Sans/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Quinzey';
	src: url('../fonts/quinzey/Quinzey.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Quinzey';
	src: url('../fonts/quinzey/Quinzey_Medium.otf') format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Quinzey';
	src: url('../fonts/quinzey/Quinzey_Bold.otf') format('opentype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Custom Font Utility Classes */
.font-alex-brush,
.font-alex-brush * {
	font-family: 'Alex Brush', cursive, serif !important;
}

.font-noto-sans,
.font-noto-sans * {
	font-family: 'Noto Sans', sans-serif !important;
}

.font-quinzey,
.font-quinzey * {
	font-family: 'Quinzey', sans-serif !important;
}

.font-quinzey-medium,
.font-quinzey-medium * {
	font-family: 'Quinzey', sans-serif !important;
	font-weight: 500 !important;
}

.font-quinzey-bold,
.font-quinzey-bold * {
	font-family: 'Quinzey', sans-serif !important;
	font-weight: bold !important;
}

/* Accessibility Utilities */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Variables */
:root {
	--primary-color: #3498db;
	--secondary-color: #2c3e50;
	--text-color: #333;
	--light-bg: #f8f9fa;
	--border-color: #dee2e6;
}

/* Header Styles */
.site-header {
	padding: 20px 0;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 15px;
}

.site-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
}

.site-title a {
	color: var(--secondary-color);
	text-decoration: none;
}

.site-description {
	margin: 0;
	font-size: 14px;
	color: #666;
}

/* Navigation */
.main-navigation {
	position: relative;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 25px;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

/* Footer */
.site-footer {
	margin-top: 60px;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.footer-widget-area h3 {
	margin-bottom: 15px;
	font-size: 18px;
}

.site-info {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
}

.footer-menu {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 0 0 15px;
	padding: 0;
}

.footer-menu a {
	color: #fff;
	text-decoration: none;
}

/* Content Styles */
.entry-header {
	margin-bottom: 30px;
}

.entry-title {
	margin: 0 0 15px;
	font-size: 36px;
	line-height: 1.2;
}

.entry-meta {
	color: #666;
	font-size: 14px;
}

.entry-meta > span {
	margin-right: 15px;
}

.entry-content {
	line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 30px;
	margin-bottom: 15px;
}

.entry-content p {
	margin-bottom: 20px;
}

.post-thumbnail {
	margin-bottom: 30px;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

/* Widgets */
.widget {
	margin-bottom: 30px;
}

.widget-title {
	margin-bottom: 15px;
	font-size: 18px;
}

/* Buttons */
.button,
button,
input[type="submit"] {
	background: var(--primary-color);
	color: #fff;
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.3s;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		right: 0;
		background: #fff;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		flex-direction: column;
		padding: 20px;
		min-width: 200px;
	}

	.nav-menu.active {
		display: flex;
	}

	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.entry-title {
		font-size: 28px;
	}
}

/* Site Footer Disclaimer */
.site-footer-disclaimer {
	width: 100%;
	border-top: 1px solid #ddd;
	margin-bottom: 0;
	background-color: yellow;
}

.site-footer-disclaimer .disclaimer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.site-footer-disclaimer p {
	margin: 0 0 10px 0;
	font-size: 12px;
	line-height: 1.5;
	color: #666;
	margin-block-end: 0px !important;
	
}

.site-footer-disclaimer p:last-child {
	margin-bottom: 0;
}

.site-footer-disclaimer a {
	color: #666;
	text-decoration: underline;
}

.site-footer-disclaimer a:hover {
	color: #333;
}

/* Mobile specific padding */
@media (max-width: 768px) {
	.site-footer-disclaimer .disclaimer-container {
		padding: 20px;
	}
}

/* Age Gate Popup */
.age-gate-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 99999;
	justify-content: center;
	align-items: center;
}

.age-gate-overlay.active {
	display: flex;
}

.age-gate-modal {
	background: #fff;
	padding: 40px;
	border-radius: 8px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-gate-content h2 {
	margin: 0 0 20px 0;
	font-size: 28px;
	color: #333;
}

.age-gate-content p {
	margin: 0 0 15px 0;
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

.age-gate-question {
	font-size: 18px !important;
	font-weight: 600;
	color: #333 !important;
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}

.age-gate-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 30px;
}

.age-gate-btn {
	padding: 15px 40px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 150px;
}

.age-gate-yes {
	background: #28a745;
	color: #fff;
}

.age-gate-yes:hover {
	background: #218838;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.age-gate-no {
	background: #dc3545;
	color: #fff;
}

.age-gate-no:hover {
	background: #c82333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.age-gate-modal {
		padding: 30px 20px;
	}

	.age-gate-content h2 {
		font-size: 24px;
	}

	.age-gate-buttons {
		flex-direction: column;
	}

	.age-gate-btn {
		width: 100%;
	}
}

/* Signup Form Popup */
.signup-form-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 99998;
	justify-content: center;
	align-items: center;
}

.signup-form-overlay.active {
	display: flex;
}

.signup-form-modal {
	position: relative;
	background: #fff;
	border-radius: 8px;
	max-width: 520px;
	width: 90%;
	max-height: 90vh;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.signup-form-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	border: none;
	width: 44px;
	height:48px;
	border-radius: 50%;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.signup-form-close:hover {
	/* background: rgba(0, 0, 0, 0.9); */
	transform: rotate(90deg);
}

.signup-form-content {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.signup-form-content iframe {
	width: 100%;
	height: 820px;
	border: none;
	display: block;
}

/* Mobile responsive for signup form */
@media (max-width: 768px) {
	.signup-form-modal {
		width: 95%;
		max-height: 95vh;
	}

	.signup-form-content iframe {
		height: 100vh;
		max-height: 90vh;
	}
}


.pc-mobile-menu-toggle-container {
	display: flex;
    justify-content: flex-end;
}