/* Layout Styles - Header and Footer */

/* Responsive visibility helpers */
.desktop-only {
	display: flex;
}

.mobile-only {
	display: none;
}

@media (max-width: 768px) {
	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: flex;
	}
}

/* Navigation Links (font/color styling for NavLink components) */
.nav-link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 1rem;
	text-decoration: none;
	color: rgb(55, 65, 81);
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.2s ease;
	background: transparent;
}

	.nav-link:hover {
		background: rgba(243, 244, 246, 0.5);
	}

.nav-link-text {
	position: relative;
	z-index: 1;
}

.nav-link-indicator {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	height: 4px;
	width: 0;
	background: linear-gradient(135deg, #0c4a6e 0%, #14b8a6 100%);
	border-radius: 2px;
	transition: width 0.3s ease;
	opacity: 0;
}

.nav-link.active {
	color: rgb(12, 74, 110);
	font-weight: 600;
}

	.nav-link.active .nav-link-indicator {
		width: calc(100% - 2rem);
		opacity: 1;
	}

/* Mobile Navigation Links */
.mobile-nav-link {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0.75rem 1rem;
	text-decoration: none;
	color: rgb(55, 65, 81);
	border-bottom: 1px solid rgb(243, 244, 246);
	transition: all 0.2s ease;
}

	.mobile-nav-link:hover {
		background: rgba(243, 244, 246, 0.5);
	}

.mobile-nav-link-text {
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.mobile-nav-link.active {
	background: rgb(229, 231, 235);
	color: rgb(12, 74, 110);
}

	.mobile-nav-link.active .mobile-nav-link-text {
		font-weight: 600;
	}

/* Menu Navigation */
.menu-nav {
	display: flex;
	gap: 60px;
	justify-content: flex-end;
	align-items: center;
	padding: 20px;
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
}

	.menu-nav a {
		color: #FFFFFF;
		text-decoration: none;
		transition: opacity 0.3s;
	}

		.menu-nav a:hover {
			opacity: 0.8;
		}

/* Footer Section */
.footer-section {
	background: linear-gradient(135deg, #063163 0%, #00BFA5 100%);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	padding: 100px 100px 20px;
	position: relative;
	overflow: hidden;
}

/* Decorative Background Logos */
.footer-bg-logo {
	position: absolute;
	width: 600px;
	height: 600px;
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
}

	.footer-bg-logo img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		filter: brightness(0) invert(1);
	}

.footer-bg-logo-left {
	bottom: -100px;
	right: 78%;
	transform: rotate(90deg);
}

.footer-bg-logo-right {
	bottom: -100px;
	right: 10%;
	transform: rotate(90deg);
}



.footer-content {
	max-width: 1596px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.footer-text h2 {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 70px;
	line-height: 85px;
	color: #FFFFFF;
	margin-bottom: 35px;
}

	.footer-text h2 .highlight {
		color: #00FFDE;
	}

.footer-text p {
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #FFFFFF;
}

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

.footer-links {
	display: flex;
	gap: 60px;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	font-family: 'Nunito', sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
}

	.footer-links a {
		color: #FFFFFF;
		text-decoration: none;
		transition: opacity 0.3s;
	}

		.footer-links a:hover {
			opacity: 0.8;
		}

/* Store Buttons */
.store-buttons {
	display: flex;
	gap: 0;
	flex-direction: column;
}

.store-button {
	width: 246px;
	height: 73px;
	transition: transform 0.3s;
}

	.store-button:hover {
		transform: scale(1.05);
	}

	.store-button img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

.qr-code {
	width: 165px;
	height: 162px;
}

	.qr-code img {
		width: 100%;
		height: 100%;
		border-radius: 20px;
	}

/* Responsive Design - Tablet and Below (1200px) */
@media (max-width: 1200px) {
	/* Footer Section */
	.footer-bg-logo {
		width: 500px;
		height: 500px;
	}

	.footer-bg-logo-left {
		right: 75%;
	}

	.footer-text h2 {
		font-size: 60px;
		line-height: 75px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.footer-download {
		justify-content: center;
	}
}

/* Responsive Design - Mobile (768px) */
@media (max-width: 768px) {
	/* Menu Navigation */
	.menu-nav {
		gap: 30px;
		font-size: 16px;
	}

	/* Footer Section */
	.footer-section {
		padding: 80px 20px 20px;
	}

	.footer-bg-logo {
		width: 400px;
		height: 400px;
	}

	.footer-bg-logo-left {
		display: none;
	}

	.footer-bg-logo-right {
		right: -10%;
		bottom: -80px;
	}

	.footer-text h2 {
		font-size: 32px;
		line-height: 42px;
	}

	.footer-text p {
		font-size: 16px;
	}

	.footer-links {
		flex-direction: column;
		gap: 20px;
	}

	.footer-download {
		flex-direction: column;
	}
}
