:root {
	/* Color Palette - Old Money Aesthetic */
	--navy-primary: #1a2a3a;
	--navy-dark: #0f1a24;
	--gold-accent: #c5a059;
	--cream-bg: #fdfbf7;
	--white: #ffffff;
	--text-dark: #2c3e50;
	--text-light: #5a6b7c;
	--border-color: #e0e0e0;

	/* Typography */
	--font-heading: 'Cormorant Garamond', serif;
	--font-body: 'Montserrat', sans-serif;

	/* Spacing */
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;
}

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

body {
	font-family: --font-body;
	background-color: var(--cream-bg);
	color: var(--text-dark);
	line-height: 1.6;
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--navy-primary);
	font-weight: 600;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: var(--spacing-xl) 0;
}

/* --- Header & Nav --- */
.main-header {
	background-color: transparent;
	padding: 1.5rem 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.4s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
	background-color: var(--white);
	padding: 0.8rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-bottom: none;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	position: relative;
	height: 80px;
	/* Increased height for better visibility */
	width: auto;
	min-width: 180px;
	display: flex;
	align-items: center;
}

.logo img {
	height: 100%;
	/* Fit container height */
	width: auto;
	max-height: 70px;
	/* Limit actual logo height */
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: opacity 0.3s ease;
}

/* Logic for logo switching */
.logo .logo-dark {
	opacity: 0;
}

.logo .logo-white {
	opacity: 1;
	filter: brightness(0) invert(1);
}

.main-header.scrolled .logo .logo-dark {
	opacity: 1;
}

.main-header.scrolled .logo .logo-white {
	opacity: 0;
}


.main-nav .menu-list {
	display: flex;
	gap: 30px;
}

.main-nav a {
	font-family: var(--font-body);
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: var(--white);
	/* White text initially */
	position: relative;
	padding-bottom: 5px;
}

.main-header.scrolled .main-nav a {
	color: var(--navy-primary);
}

.main-nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--gold-accent);
	transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	width: 100%;
}

/* Dropdown Menu */
.menu-list li {
	position: relative;
	padding-bottom: 20px;
	/* Bridge gap for hover */
	margin-bottom: -20px;
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--white);
	min-width: 240px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	flex-direction: column;
	padding: 15px 0;
	border-top: 3px solid var(--gold-accent);
}

.dropdown::before {
	/* Optional little arrow pointing up */
	content: '';
	position: absolute;
	top: -8px;
	left: 20px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid var(--gold-accent);
}

.main-nav .menu-list li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown li {
	width: 100%;
	padding: 0;
	margin: 0;
	display: block;
}

.dropdown li a {
	display: block;
	padding: 12px 25px;
	color: var(--navy-primary) !important;
	/* Force dark text */
	font-size: 0.85rem;
	text-align: left;
	text-transform: none;
	/* Sentence case for sub-items */
	letter-spacing: 0.5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
	padding-bottom: 12px;
}

.dropdown li:last-child a {
	border-bottom: none;
}

.dropdown li a::after {
	display: none;
	/* No underline anim */
}

.dropdown li a:hover {
	background-color: #f8f9fa;
	color: var(--gold-accent) !important;
	padding-left: 30px;
	/* Slide effect */
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 30px;
	height: 2px;
	background-color: var(--white);
	transition: all 0.3s ease;
}

.main-header.scrolled .mobile-menu-toggle span {
	background-color: var(--navy-primary);
}

/* --- Hero Section (New) --- */
.hero-fullscreen {
	position: relative;
	/* Use min-height to allow content to push it larger, 
       but aim for full viewport height */
	min-height: 100svh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	overflow: hidden;
	/* Remove negative margin since header is fixed */
	margin-top: 0;
	/* Increase padding to push content down below header + extra space */
	padding-top: 160px;
	padding-bottom: 60px;
	/* Space for scroll indicator */
}

/* Static background image */
.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.hero-bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	/* Subtle zoom effect */
	animation: subtleZoom 20s infinite alternate;
}

@keyframes subtleZoom {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.1);
	}
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom,
			rgba(15, 26, 36, 0.7) 0%,
			/* Darker at top for header readability */
			rgba(15, 26, 36, 0.5) 50%,
			rgba(15, 26, 36, 0.8) 100%);
	z-index: -1;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 5vh;
}

.hero-suptitle {
	display: block;
	font-family: var(--font-body);
	font-size: 0.9rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--gold-accent);
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 5rem;
	line-height: 1.1;
	margin-bottom: 2rem;
	color: var(--white);
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-lead {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-style: italic;
	opacity: 0.9;
	margin-bottom: 3rem;
	font-weight: 400;
}

/* Hero Buttons */
.hero-buttons {
	display: flex;
	gap: 20px;
}

/* Additional Button Styles */
.btn-gold {
	background-color: var(--gold-accent);
	color: var(--navy-dark);
	border: 1px solid var(--gold-accent);
}

.btn-gold:hover {
	background-color: #b08d4b;
	color: var(--white);
}

.btn-outline-light {
	background-color: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}

.btn-outline-light:hover {
	background-color: var(--white);
	color: var(--navy-primary);
}


/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
}

.mouse-icon {
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 20px;
	display: block;
	position: relative;
}

.wheel {
	position: absolute;
	top: 10px;
	left: 50%;
	width: 4px;
	height: 8px;
	background-color: var(--gold-accent);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
	0% {
		top: 10px;
		opacity: 1;
	}

	100% {
		top: 30px;
		opacity: 0;
	}
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Animations */
.fade-in-up {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 {
	animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.4s;
}

.delay-3 {
	animation-delay: 0.6s;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- Typography Helpers --- */
.section-header {
	margin-bottom: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.suptitle {
	font-family: var(--font-body);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--gold-accent);
	margin-bottom: 1rem;
	display: block;
}

.section-title {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.divider {
	width: 60px;
	height: 1px;
	background-color: var(--navy-primary);
	margin: 0 auto;
}

.text-center {
	text-align: center;
}

.mt-large {
	margin-top: var(--spacing-lg);
}

.max-800 {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* --- Buttons --- */
.btn {
	display: inline-block;
	padding: 12px 30px;
	font-family: var(--font-body);
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 500;
	border: 1px solid transparent;
	margin-top: 2rem;
	cursor: pointer;
}

.btn-primary {
	background-color: var(--navy-primary);
	color: var(--white);
}

.btn-primary:hover {
	background-color: var(--navy-dark);
}

.btn-outline {
	background-color: transparent;
	border-color: var(--navy-primary);
	color: var(--navy-primary);
}

.btn-outline:hover {
	background-color: var(--navy-primary);
	color: var(--white);
}

/* --- Content Layouts --- */
.content-wrapper {
	display: grid;
	gap: var(--spacing-lg);
	align-items: center;
}

.two-column {
	grid-template-columns: 1fr 1fr;
}

.two-column.reverse .text-column {
	order: 2;
	/* Default order handled by grid usually, but explicit for clarity */
}

.text-column {
	padding: 0 var(--spacing-sm);
}

.text-column p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
}

.text-column .lead-text {
	font-size: 1.4rem;
	color: var(--navy-primary);
	font-weight: 500;
}

/* --- Images --- */
.image-column {
	display: flex;
	justify-content: center;
}

.image-frame {
	position: relative;
	padding: 10px;
	border: 1px solid rgba(26, 42, 58, 0.1);
	background-color: var(--white);
}

.image-frame img {
	display: block;
	width: 100%;
	height: auto;
	filter: sepia(10%) contrast(90%);
	/* Vintage feel */
}

/* --- Prestige / About Section Custom --- */
.prestige-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cream-bg) 0%, #ffffff 100%);
}

.prestige-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 80px;
	align-items: center;
}

/* Visual Stack Left */
.visual-stack {
	position: relative;
	width: 100%;
	min-height: 500px;
	/* Ensure space for absolute positioning */
}

.gold-frame-bg {
	position: absolute;
	top: -30px;
	left: -30px;
	width: 70%;
	height: 80%;
	border: 2px solid var(--gold-accent);
	z-index: 1;
	opacity: 0.4;
	transition: transform 0.6s ease;
}

.visual-stack:hover .gold-frame-bg {
	transform: translate(10px, 10px);
}

.visual-stack .main-img {
	width: 85%;
	position: relative;
	z-index: 2;
	box-shadow: 0 20px 50px rgba(26, 42, 58, 0.15);
	display: block;
	border-radius: 2px;
	transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.visual-stack:hover .main-img {
	transform: scale(1.02);
}

.visual-stack .accent-img {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 45%;
	z-index: 3;
	border: 12px solid #ffffff;
	/* White border to separate */
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-radius: 2px;
	transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
}

.visual-stack:hover .accent-img {
	transform: translate(-10px, -10px);
}

/* Content Right */
.prestige-content {
	padding-left: 20px;
}

.section-label {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--gold-accent);
	margin-bottom: 2rem;
	display: block;
	position: relative;
	padding-left: 50px;
}

.section-label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 35px;
	height: 1px;
	background-color: var(--gold-accent);
}

.prestige-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1.1;
	color: var(--navy-primary);
	margin-bottom: 2.5rem;
}

.text-gold {
	color: var(--gold-accent);
	font-style: italic;
}

.text-navy {
	color: var(--navy-primary);
}

.prestige-lead {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	line-height: 1.6;
	color: var(--navy-dark);
	margin-bottom: 2rem;
}

.text-block p {
	font-size: 1.05rem;
	color: rgba(26, 42, 58, 0.75);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.text-block strong {
	font-weight: 600;
}

/* Signature / Stats */
.signature-block {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(26, 42, 58, 0.08);
}

.stats-row {
	display: flex;
	gap: 4rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 3.5rem;
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--navy-primary);
	line-height: 1;
}

.stat-desc {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--gold-accent);
	margin-top: 0.8rem;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
	.prestige-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.visual-stack {
		min-height: 0;
		/* margin-bottom: 20px; Removed to fix overlap issues */
		width: 90%;
		margin: 0 auto 30px;
	}

	.gold-frame-bg {
		width: 100%;
		left: 15px;
		top: -15px;
	}

	.prestige-title {
		font-size: 2.5rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.section-label {
		padding-left: 0;
	}

	.section-label::before {
		display: none;
	}

	.prestige-content {
		padding-left: 0;
		text-align: left;
	}
}

/* --- Specific Sections --- */

/* Hero / O Klubie */
.hero-section {
	background-color: var(--white);
}

/* Misja */
.mission-section {
	background-color: #f4f1ea;
	/* Slightly darker cream */
}

.features-list li {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--navy-primary);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.features-list li::before {
	content: '•';
	/* Simple bullet to fit style */
	color: var(--gold-accent);
	font-size: 2rem;
	line-height: 0;
}

/* Czlonkowie Grid */
.members-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 3rem;
}

.member-card {
	background-color: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.member-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background-color: #f0f0f0;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(15%);
	transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
	transform: scale(1.05);
	filter: sepia(0%);
}

.member-info {
	padding: 1.5rem;
	text-align: center;
}

.member-info h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	color: var(--navy-primary);
}

.member-role {
	font-size: 0.9rem;
	color: var(--gold-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

.mb-large {
	margin-bottom: var(--spacing-lg);
}

.mt-large {
	margin-top: var(--spacing-lg);
}


/* Board Section */
.board-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.board-group-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--gold-accent);
	text-align: center;
}

.board-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	font-family: var(--font-body);
}

.board-list li .name {
	font-weight: 600;
	color: var(--navy-primary);
	font-size: 1.1rem;
}

.board-list li .role {
	color: var(--text-light);
	font-style: italic;
	font-family: var(--font-heading);
}

/* News Section */
.news-section {
	background-color: var(--white);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
}

.news-card {
	display: flex;
	gap: 20px;
	padding: 20px;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.news-card:hover {
	border-color: rgba(197, 160, 89, 0.3);
	background-color: #fafafa;
}

.news-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	height: 100px;
	border: 1px solid var(--gold-accent);
	color: var(--navy-primary);
	padding: 10px;
}

.news-date .day {
	font-size: 2rem;
	font-weight: 700;
	font-family: var(--font-heading);
	line-height: 1;
}

.news-date .month {
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: 600;
	margin: 5px 0;
}

.news-date .year {
	font-size: 0.8rem;
	color: var(--text-light);
}

.news-content h3 {
	font-size: 1.5rem;
	margin-bottom: 0.8rem;
}

.news-content p {
	color: var(--text-light);
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.read-more {
	font-size: 0.85rem;
	text-transform: uppercase;
	color: var(--gold-accent);
	font-weight: 600;
	letter-spacing: 1px;
}

/* --- Cinematic Quote Section --- */
.cinematic-quote-section {
	position: relative;
	padding: 180px 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--navy-dark);
}

.cinematic-quote-section .parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	/* Simple parallax */
	opacity: 0.2;
	z-index: 1;
	filter: grayscale(100%) contrast(120%);
	/* Artistic touch */
}

/* Fallback for mobile where fixed bg might be janky */
@media (hover: none) {
	.cinematic-quote-section .parallax-bg {
		background-attachment: scroll;
	}
}

.cinematic-quote-section .overlay-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(16, 24, 32, 0.4) 0%, rgba(16, 24, 32, 0.95) 100%);
	z-index: 2;
}

.quote-container {
	position: relative;
	z-index: 3;
	text-align: center;
	max-width: 900px;
}

.quote-decoration {
	font-family: 'Times New Roman', serif;
	font-size: 12rem;
	line-height: 0;
	color: var(--gold-accent);
	opacity: 0.15;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.cinematic-text {
	font-family: var(--font-heading);
	font-size: 3rem;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.9);
	font-style: italic;
	margin: 0;
	padding: 0 20px;
	text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cinematic-text .text-gold {
	color: var(--gold-accent);
	font-weight: 400;
	/* Let the sparkle do the work */
}

.cinematic-text .text-white {
	color: #fff;
	font-weight: 600;
}

.quote-line-anim {
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
	margin: 40px auto 0;
	animation: expandLine 1.5s ease-out forwards;
	animation-delay: 0.5s;
	/* Wait for scroll reveal if implemented, currently hardcoded delay */
}

@keyframes expandLine {
	to {
		width: 150px;
	}
}

@media (max-width: 768px) {
	.cinematic-text {
		font-size: 1.8rem;
	}

	.quote-decoration {
		font-size: 8rem;
		top: -20px;
	}
}

/* Footer Details */
.main-footer {
	padding: 5rem 0 2rem;
	background-color: var(--navy-dark);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin-top: auto;
	font-family: var(--font-body);
	/* Force sans-serif */
}

.footer-logo {
	height: 60px;
	width: auto;
	margin-bottom: 1.5rem;
	filter: brightness(0) invert(1);
	/* Ensure logo is white */
	opacity: 0.9;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 4rem;
}

.footer-col h4 {
	color: var(--white);
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: var(--font-body);
	/* Force sans-serif headings */
	font-weight: 600;
}

.footer-col p {
	margin-bottom: 0.8rem;
}

.footer-col a {
	color: var(--gold-accent);
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--gold-accent);
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	font-size: 0.8rem;
}

/* --- Responsive Updates --- */
@media (max-width: 1024px) {
	.board-layout {
		gap: 2rem;
	}
}

@media (max-width: 900px) {
	.hero-title {
		font-size: 3.5rem;
	}

	.board-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.news-grid {
		grid-template-columns: 1fr;
	}

	.news-card {
		flex-direction: column;
	}

	.news-date {
		flex-direction: row;
		width: 100%;
		height: auto;
		justify-content: flex-start;
		gap: 10px;
		padding: 5px 10px;
		background-color: rgba(197, 160, 89, 0.1);
		border: none;
	}

	.news-date .day,
	.news-date .month,
	.news-date .year {
		margin: 0;
		font-size: 1rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		/* Always white background for dropdown */
		padding: 20px;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		border-top: 1px solid var(--border-color);
	}

	.main-nav.open {
		display: block;
		animation: slideDown 0.3s ease-out;
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.main-nav .menu-list {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	/* Force dark links in mobile menu */
	.main-nav a {
		color: var(--navy-primary);
		font-size: 1rem;
	}

	.two-column {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 2.2rem;
	}

	/* Hero Adjustments */
	.hero-title {
		font-size: 2.8rem;
	}

	.hero-lead {
		font-size: 1.1rem;
		padding: 0 10px;
	}

	.logo img {
		height: 40px;
	}
}