@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@400;700&display=swap');

@font-face {
	font-family: 'League Gothic';
	src: url('leaguegothic/leaguegothic-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

:root {
	/* Pantone palette */
	--lemon-icing:   #F3EEC3; /* 11-0515 */
	--nimbus-cloud:  #C4C4C4; /* 13-4108 */
	--roses:         #E0CBCB; /* 11-1400 Raindrops on Roses */
	--cloud-dancer:  #F0EEE9; /* 11-4201 */
	--ice-melt:      #ACCFE0; /* 13-4306 */
	--peach-dust:    #E3BEA8; /* 12-1107 */
	--almost-aqua:   #ACC4AA; /* 13-6006 */
	--orchid-tint:   #C7C4CA; /* 13-3802 */

	/* Semantic tokens */
	--bg-color:       var(--cloud-dancer);
	--text-primary:   #2C2926;
	--text-secondary: #7A736E;
	--accent-color:   #8EB08C;         /* slightly deepened Almost Aqua */
	--accent-glow:    rgba(172, 196, 170, 0.35);
	--card-bg:        rgba(255, 255, 255, 0.62);
	--border-color:   rgba(199, 196, 202, 0.55);  /* Orchid Tint */
}

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

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-primary);
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image:
		radial-gradient(at 0%   0%,   rgba(172, 207, 224, 0.45) 0px, transparent 55%),
		radial-gradient(at 100% 0%,   rgba(243, 238, 195, 0.55) 0px, transparent 55%),
		radial-gradient(at 100% 100%, rgba(227, 190, 168, 0.40) 0px, transparent 55%),
		radial-gradient(at 0%   100%, rgba(172, 196, 170, 0.35) 0px, transparent 55%);
}

.container {
	padding: 2rem;
	width: 100%;
	max-width: 800px;
}

.lang-switch {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
}

.switch-btn {
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.85rem;
	font-family: 'Inter', sans-serif;
	transition: all 0.2s ease;
}

.switch-btn:hover {
	background: rgba(255, 255, 255, 0.75);
	color: var(--text-primary);
	border-color: var(--accent-color);
}

.card {
	position: relative;
	background: var(--card-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 3.5rem 2rem;
	text-align: center;
	box-shadow:
		0 4px 24px -4px rgba(172, 196, 170, 0.18),
		0 25px 50px -12px rgba(172, 196, 202, 0.15);
	animation: fadeIn 0.8s ease-out;
	z-index: 1;
	overflow: hidden;
}

.card::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background: url('favicon.ico') no-repeat center center;
	background-size: contain;
	opacity: 0.05;
	z-index: -1;
	pointer-events: none;
	filter: grayscale(100%) brightness(0.4);
}

header {
	margin-bottom: 3rem;
}

h1 {
	font-family: 'League Gothic', sans-serif;
	font-size: 4rem;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, #7AAFC0 0%, #8EB08C 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 0.05em;
}

h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
	color: var(--text-secondary);
}

.highlight {
	color: #7AAFC0;  /* Ice Melt deepened */
	font-weight: 500;
}

/* Intro Section */
.intro {
	margin-top: 2.5rem;
	padding: 0 1rem;
}

.intro p {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	font-size: 1.25rem;
	line-height: 1.7;
	color: var(--text-primary);
	max-width: 650px;
	margin: 0 auto;
	letter-spacing: 0.01em;
}

/* Skills Layout */
.skills-layout {
	display: grid;
	gap: 3rem;
	margin-bottom: 3rem;
	text-align: left;
	padding: 0 1rem;
}

.skill-group h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-secondary);
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 0.5rem;
	display: inline-block;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tag {
	padding: 0.5rem 1rem;
	background: rgba(243, 238, 195, 0.45);   /* Lemon Icing tint */
	border: 1px solid rgba(199, 196, 202, 0.5);
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	color: var(--text-primary);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag:hover {
	background: rgba(172, 196, 170, 0.25);   /* Almost Aqua tint */
	border-color: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px var(--accent-glow);
}

.tag.highlight-tag {
	background: rgba(227, 190, 168, 0.35);   /* Peach Dust */
	border-color: rgba(227, 190, 168, 0.6);
	color: #7A5040;
}

.tag.highlight-tag:hover {
	background: rgba(172, 207, 224, 0.35);   /* Ice Melt */
	border-color: #7AAFC0;
	color: #2C4A5A;
}

/* Services Section */
.services {
	margin-bottom: 4rem;
	text-align: left;
}

.services h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 0.5rem;
	display: inline-block;
}

.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.service-item {
	background: rgba(255, 255, 255, 0.45);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 1.5rem;
	transition: all 0.3s ease;
}

.service-item:hover {
	background: rgba(255, 255, 255, 0.72);
	border-color: var(--accent-color);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px -10px rgba(172, 196, 170, 0.25);
}

.service-item h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.2rem;
	color: #5A8070;   /* dark Almost Aqua */
	margin-bottom: 1rem;
	font-weight: 600;
}

.service-item p {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	color: var(--text-primary);
	line-height: 1.6;
	opacity: 0.88;
}

/* Footer & CTA */
footer {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--border-color);
	text-align: center;
	display: flex;
	justify-content: center;
}

.cta-section {
	width: 100%;
	max-width: 600px;
}

.cta-section h3 {
	font-family: 'League Gothic', sans-serif;
	font-size: 2.5rem;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.cta-section p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	font-family: 'Inter', sans-serif;
}

.contact-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	align-items: center;
}

.contact-link {
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
}

.contact-link.primary {
	background: var(--accent-color);
	color: #fff;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	border: none;
}

.contact-link.primary:hover {
	background: #7AAFC0;   /* Ice Melt deepened */
	color: #fff;
	box-shadow: 0 0 18px rgba(172, 207, 224, 0.45);
	transform: translateY(-2px);
}

.contact-link.secondary {
	color: var(--text-secondary);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
}

.contact-link.secondary:hover {
	color: #C49080;   /* deepened Peach Dust */
	border-bottom-color: #C49080;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: 3rem;
	}

	.card {
		padding: 2.5rem 1.5rem;
	}

	.skills-layout {
		gap: 2rem;
		padding: 0;
	}
}

.lotus-icon {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 60px;
	height: auto;
	opacity: 0.35;
	transition: opacity 0.3s ease, transform 0.3s ease;
	z-index: 10;
	filter:
		sepia(30%) saturate(80%) hue-rotate(330deg)
		drop-shadow(0 0 5px rgba(199, 196, 202, 0.5));
}

.lotus-icon:hover {
	opacity: 0.7;
	transform: scale(1.05);
}
