@charset "utf-8";
/* CSS Document 
N Club Finland ry. - Eventoo Europe
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #1a202c;
	overflow-x: hidden;
	background: #f8fafc;
}


a {
    font-weight: bold;
    text-decoration: none;
    color: #003366;      /* dark blue */
}

a:visited {
    color: #555555;      /* dark grey */
    text-decoration: none;
}

a:hover {
    color: #008B8B;      /* dark cyan */
    text-decoration: none;
}

p {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

ul.icon-list {
    list-style: none;
    padding-left: 0;
}

ul.icon-list li::before {
    content: "€";        /* replace with any icon character */
    color: #003366;
    font-weight: bold;
    margin-right: 0.5em;
}

#news-container ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}


/* Gallery */
/* Subtitle style (matches neutral subpage tone) */
.subtitle {
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  font-size: 0.95em;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  display: block;
}

.gallery-grid figcaption {
  margin-top: 8px;
  font-size: 0.85em;
  color: #666;
  text-align: center;
	overflow-wrap: anywhere;
	word-break: break-word;
}


/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: #FFFFFF;
	padding: 1.5rem 5%;
	z-index: 1000;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(135deg, #475569, #64748b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.logo-icon {
	width: 64px;
	height: 64px;
	background: url("../images/NCF_logo_256.png") center center / cover no-repeat;
	border-radius: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1rem;
	flex-shrink: 0;
	overflow: hidden;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 3rem;
}

.nav-links a {
	text-decoration: none;
	color: #1a202c;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: #475569;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a.active {
	color: #475569;
	font-weight: 600;
}

.nav-links .more-menu {
	position: relative;
}

.nav-links .more-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	display: none;
	z-index: 1000;
	gap: 0;
}

.nav-links .more-menu:hover .more-submenu {
	display: block;
}

.nav-links .more-submenu a {
	display: block;
	padding: 8px 14px;
	white-space: nowrap;
}

.nav-links .more-submenu a:hover {
	background: #f2f5f8;
}

.nav-links .lang-switch {
	white-space: nowrap;
}

.nav-links .lang-switch span {
	margin: 0 0.25rem;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu span {
	width: 28px;
	height: 3px;
	background: #475569;
	margin: 4px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero Section */
.hero {
	height: 100vh;
	min-height: 600px;
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(71, 85, 105, 0.7) 50%, rgba(100, 116, 139, 0.7) 100%), url("../images/ensc_mid.jpg") center center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 60px 60px;
	background-position: 0 0, 0 0;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(60px, 60px);
	}
}

.hero-content {
	max-width: 900px;
	padding: 0 2rem;
	margin-top: 8rem;
	transform: translateY(50px);
	opacity: 0;
	animation: fadeInUp 1.2s ease forwards;
	z-index: 2;
	position: relative;
}

@keyframes fadeInUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero h1 {
	font-size: clamp(2.8rem, 7vw, 5rem);
	font-weight: 800;
	margin-bottom: 2rem;
	line-height: 1.1;
	letter-spacing: -2px;
}

.hero p {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	margin-bottom: 3rem;
	opacity: 0.95;
	font-weight: 300;
}

/* Add this to your existing CSS */
.hero-content h1,
.hero-content p {
	transition: opacity 0.5s ease-in-out;
}

.text-fade-out {
	opacity: 0;
}

.cta-button {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: rgba(255, 255, 255, 0.95);
	color: #1e293b;
	text-decoration: none;
	font-weight: 700;
	border-radius: 60px;
	transition: all 0.4s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 1);
}

.geometric-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.geo-shape {
	position: absolute;
	opacity: 0.15;
}

.geo-shape:nth-child(1) {
	top: 20%;
	left: 15%;
	width: 120px;
	height: 120px;
	background: linear-gradient(45deg, #fff, transparent);
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	animation: float 12s ease-in-out infinite;
}

.geo-shape:nth-child(2) {
	top: 15%;
	right: 20%;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #fff, transparent);
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	animation: float 10s ease-in-out infinite reverse;
}

.geo-shape:nth-child(3) {
	top: 60%;
	left: 10%;
	width: 80px;
	height: 80px;
	background: linear-gradient(90deg, #fff, transparent);
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	animation: float 8s ease-in-out infinite;
}

.geo-shape:nth-child(4) {
	top: 70%;
	right: 15%;
	width: 90px;
	height: 90px;
	background: linear-gradient(180deg, #fff, transparent);
	clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
	animation: float 14s ease-in-out infinite;
}

.geo-shape:nth-child(5) {
	top: 35%;
	left: 50%;
	transform: translateX(-50%);
	width: 110px;
	height: 110px;
	background: linear-gradient(270deg, #fff, transparent);
	clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
	animation: float 9s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

/* Section Styles */
.section {
	padding: 8rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 4rem;
	color: #1e293b;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	letter-spacing: -1px;
}

.section-title.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Services Section - Tab Layout */
.services {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
	position: relative;
}

.services::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonals" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(71,85,105,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonals)"/></svg>');
}

.services-container {
	position: relative;
	z-index: 2;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 4rem;
	margin-top: 4rem;
	align-items: start;
}

.services-content {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 25px;
	padding: 2.5rem;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(71, 85, 105, 0.1);
	min-height: 400px;
	transition: all 0.5s ease;
}

.service-details {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	display: none;
}

.service-details.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.service-details h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #1e293b;
}

.service-details .service-subtitle {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.service-details p {
	color: #64748b;
	line-height: 1.7;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.service-features {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.service-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(159, 212, 44, 0.08);
}

.service-features li:last-child {
	border-bottom: none;
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #1d66ed, #64748b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.services-tabs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-tab {
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid rgba(71, 85, 105, 0.1);
	border-radius: 18px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.service-tab:hover,
.service-tab.active {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(71, 85, 105, 0.3);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(71, 85, 105, 0.15);
}

.service-tab.active {
	background: rgba(71, 85, 105, 0.1);
	border-color: rgba(71, 85, 105, 0.4);
}

.service-tab::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.service-tab.active::before {
	width: 4px;
}

.tab-icon {
	font-size: 2rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(71, 85, 105, 0.1), rgba(100, 116, 139, 0.1));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.tab-content {
	flex: 1;
	min-width: 0;
}

.service-tab h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.3rem;
	position: relative;
	z-index: 2;
}

.service-tab p {
	color: #64748b;
	font-size: 0.8rem;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.service-tab:hover .tab-icon,
.service-tab.active .tab-icon {
	background: linear-gradient(135deg, #475569, #64748b);
	color: white;
	transform: scale(1.05);
}

/* Template1 Section - Fullpage Layout */
.template1 {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
	position: relative;
}

.template1::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonals" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(71,85,105,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonals)"/></svg>');
}

.template1-container {
	position: relative;
	z-index: 2;
}

.template1-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	margin-top: 4rem;
	align-items: start;
}

.template1-panel {
	background: #ffffff;
	border-radius: 25px;
	padding: 2.5rem;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(71, 85, 105, 0.1);
	min-height: 400px;
	box-shadow: 0 20px 40px rgba(71, 85, 105, 0.08);
	transition: all 0.5s ease;
}

.template1-content {
	background: rgba(144, 71, 71, 0.8);
	border-radius: 25px;
	padding: 2.5rem;
	backdrop-filter: blur(15px);
	border: 2px solid rgba(71, 85, 105, 0.1);
	min-height: 400px;
	transition: all 0.5s ease;
}

.template1-hero-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	object-fit: cover;
	opacity: 0.9;
}

.template1-details {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	display: none;
}

.template1-details.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.template1-details h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #1e293b;
}

.template1-details .template1-subtitle {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.template1-details p {
	color: #64748b;
	line-height: 1.7;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.template1-features {
	list-style: none;
	padding: 0;
	margin-top: 1.5rem;
}

.template1-features li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(71, 85, 105, 0.08);
	min-width: 0;
}

.template1-features li a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.template1-features li:last-child {
	border-bottom: none;
}

.links-category-list > li {
	display: block;
	padding: 0.6rem 0;
	border-bottom: none;
}

.links-category-list > li + li {
	border-top: 1.5px solid #7f7d86;
	margin-top: 0.8rem;
	padding-top: 1.2rem;
}

.template1-tabs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.template1-tab {
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid rgba(71, 85, 105, 0.1);
	border-radius: 18px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.template1-tab:hover,
.template1-tab.active {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(71, 85, 105, 0.3);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(71, 85, 105, 0.15);
}

.template1-tab.active {
	background: rgba(71, 85, 105, 0.1);
	border-color: rgba(71, 85, 105, 0.4);
}

.template1-tab::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: linear-gradient(135deg, #475569, #64748b);
	transition: width 0.3s ease;
}

.template1-tab.active::before {
	width: 4px;
}

.template1-tab h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.3rem;
	position: relative;
	z-index: 2;
}

.template1-tab p {
	color: #64748b;
	font-size: 0.8rem;
	line-height: 1.3;
	position: relative;
	z-index: 2;
}

.template1-tab:hover .tab-icon,
.template1-tab.active .tab-icon {
	background: linear-gradient(135deg, #475569, #64748b);
	color: white;
	transform: scale(1.05);
}


/* Contact Section - Futuristic Form */
.contact {
	background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 80px 80px;
	background-position: 0 0, 0 0;
	animation: contactGridMove 30s linear infinite;
}

@keyframes contactGridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(80px, 80px);
	}
}

@keyframes zigzagMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(40px, 40px);
	}
}

.contact .section-title {
	color: white;
}

.contact-content {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.contact p {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	opacity: 0.95;
	text-align: center;
}

.contact-form {
	display: grid;
	gap: 2rem;
	margin-top: 4rem;
}

.form-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

/* Mobile Styles */
@media (max-width: 1000px) {
	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
}

@media (max-width: 900px) {}


@media (max-width: 940px) {
	.nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(248, 250, 252, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 2rem 5%;
		box-shadow: 0 10px 30px rgba(71, 85, 105, 0.1);
		border-radius: 0 0 20px 20px;
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-menu {
		display: flex;
	}

	.about {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 4rem;
	}

	.about-features {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.form-group {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 5rem 5%;
	}

	.services-tabs {
		flex-direction: column;
		gap: 1rem;
	}

	.service-tab {
		width: 100%;
		flex-shrink: 0;
		flex-direction: column;
		text-align: center;
		gap: 0.8rem;
	}

	.tab-content {
		text-align: center;
	}

	.services-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.services-tabs {
		order: -1;
	}

	.service-tab:hover,
	.service-tab.active {
		transform: translateY(-2px);
	}

	.team-grid {
		flex-direction: column;
		align-items: center;
	}

	.testimonials-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.testimonial-content {
		padding: 1.5rem;
	}

	.testimonial,
	.testimonial:nth-child(even) {
		transform: translateY(30px);
		margin: 0;
	}

	.testimonial.animate,
	.testimonial:nth-child(even).animate {
		transform: translateY(0);
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.stat:first-child {
		grid-column: 1;
	}

	.service-item {
		padding: 2rem;
	}

	.member-card {
		padding: 2rem;
	}
}

@media (max-width: 900px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

@media (max-width: 480px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

.loading {
	animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
	background: #0f172a;
	color: white;
	padding: 3rem 5% 2rem;
	text-align: center;
	border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 400;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #64748b;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.footer-design {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.footer-design a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-design a:hover {
	color: #64748b;
}

.partner-logo {
    background: #fff;
    padding: 4px 6px;
    border-radius: 6px;
    display: inline-block;
}

