/* fg-legal.css - Premium Legal & Policies Hub Styling */

.fg-legal-hub {
	background-color: var(--fg-background, #FAFAFA); /* Soft off-white */
	padding: 120px 0;
	min-height: 100vh;
}

.fg-legal-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	gap: 80px;
	position: relative;
	align-items: flex-start;
}

/* Sidebar Styling */
.fg-legal-sidebar {
	width: 25%;
	position: sticky;
	top: 120px; /* Adjust based on header height */
	height: calc(100vh - 140px);
	display: flex;
	flex-direction: column;
}

.fg-legal-sidebar-inner {
	position: relative;
	padding-left: 20px;
}

/* The vertical track line */
.fg-legal-sidebar-inner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: rgba(0, 0, 0, 0.1);
}

/* The sleek pink active indicator */
.fg-legal-indicator {
	position: absolute;
	left: -1px;
	top: 0;
	width: 3px;
	height: 30px;
	background-color: var(--fg-primary, #E8A8B6); /* Signature Pink */
	border-radius: 4px;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform, height;
}

.fg-legal-sidebar-title {
	font-family: 'Jost', sans-serif;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--fg-text-muted, #888);
	margin-bottom: 30px;
	font-weight: 500;
}

.fg-legal-nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.fg-legal-nav a {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--fg-text, #333);
	text-decoration: none;
	opacity: 0.5;
	transition: opacity 0.3s ease, color 0.3s ease;
	display: block;
	position: relative;
}

.fg-legal-nav a:hover {
	opacity: 0.8;
}

.fg-legal-nav a.active {
	opacity: 1;
	color: var(--fg-primary, #E8A8B6);
	font-style: italic;
}

/* Main Content Styling */
.fg-legal-content {
	width: 75%;
	max-width: 800px;
}

.fg-legal-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 4.5rem;
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 60px;
	color: var(--fg-text-dark, #222);
}

.fg-legal-text h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 400;
	margin-top: 80px;
	margin-bottom: 30px;
	color: var(--fg-text-dark, #222);
	scroll-margin-top: 120px; /* Offset for sticky header */
}

.fg-legal-text h2:first-child {
	margin-top: 0;
}

.fg-legal-text h3 {
	font-family: 'Jost', sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 40px;
	margin-bottom: 15px;
	color: var(--fg-text-dark, #222);
}

.fg-legal-text p, 
.fg-legal-text ul, 
.fg-legal-text ol {
	font-family: 'Jost', sans-serif;
	font-size: 1.1rem;
	line-height: 1.8;
	color: #4A4A4A; /* Soft charcoal to reduce eye strain */
	margin-bottom: 25px;
}

.fg-legal-text ul, 
.fg-legal-text ol {
	padding-left: 20px;
}

.fg-legal-text li {
	margin-bottom: 10px;
}

.fg-legal-text a {
	color: var(--fg-primary, #E8A8B6);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease;
}

.fg-legal-text a:hover {
	border-bottom-color: var(--fg-primary, #E8A8B6);
}

/* Responsive */
@media (max-width: 992px) {
	.fg-legal-container {
		flex-direction: column;
		gap: 40px;
	}

	.fg-legal-sidebar {
		width: 100%;
		height: auto;
		position: relative;
		top: 0;
	}

	.fg-legal-sidebar-inner {
		padding-left: 0;
		display: flex;
		flex-direction: column;
	}

	.fg-legal-sidebar-inner::before,
	.fg-legal-indicator {
		display: none; /* Hide vertical track on mobile */
	}
	
	.fg-legal-nav {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		padding-bottom: 20px;
	}
	
	.fg-legal-nav a {
		font-size: 1.2rem;
	}

	.fg-legal-content {
		width: 100%;
	}

	.fg-legal-title {
		font-size: 3rem;
	}
}
