/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
	color: #ffffff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	min-height: 100vh;
}

#container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation Tabs */
.main-nav {
	display: flex;
	justify-content: center;
	gap: 0;
	padding: 40px 0 0 0;
	margin-bottom: 0;
}

.nav-tab {
	padding: 18px 50px;
	background: rgba(255, 255, 255, 0.05);
	color: #aaa;
	border: none;
	border-bottom: 3px solid transparent;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.nav-tab:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.nav-tab.active {
	background: rgba(102, 126, 234, 0.1);
	color: #667eea;
	border-bottom-color: #667eea;
}

/* Tab Content */
.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

/* Hero/Welcome Section */
#welcome {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.welcome-content {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: center;
	width: 100%;
	max-width: 1200px;
}

#aboutme h1 {
	font-size: 3.5rem;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.intro-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #e0e0e0;
	margin-bottom: 30px;
}

.secret-text {
	font-size: 1.3rem;
	color: #ffd700;
	animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
	0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
	50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
}

/* Contact Buttons */
#contact {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}

.contact-link {
	transition: transform 0.3s ease;
	display: inline-block;
}

.contact-link:hover {
	transform: translateY(-5px);
}

.contactbutton {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	transition: all 0.3s ease;
	filter: brightness(0.9);
}

.contactbutton:hover {
	filter: brightness(1.2);
	box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Profile Picture */
.picture {
	text-align: center;
	position: relative;
}

.pic {
	width: 100%;
	max-width: 350px;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: all 0.4s ease;
	border: 3px solid rgba(102, 126, 234, 0.3);
}

.pic:hover {
	transform: scale(1.05) rotate(2deg);
	box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
	border-color: rgba(102, 126, 234, 0.6);
}

.easter-egg-hint {
	margin-top: 15px;
	font-size: 0.9rem;
	color: #888;
	font-style: italic;
}

/* Tools Section */
#tools {
	padding: 80px 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 20px;
	text-align: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-subtitle {
	text-align: center;
	color: #aaa;
	margin-bottom: 40px;
	font-size: 1.1rem;
}

.button-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.tool-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(102, 126, 234, 0.2);
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	text-decoration: none;
	color: white;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.tool-card:hover {
	transform: translateY(-10px);
	border-color: rgba(102, 126, 234, 0.6);
	background: rgba(102, 126, 234, 0.1);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.tool-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.tool-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: #667eea;
}

.tool-card p {
	color: #ccc;
	font-size: 0.95rem;
}

/* Experience Section */
#experience-section {
	padding: 80px 0;
}

#experience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin: 60px 0;
}

.company-card {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.company-card:hover {
	transform: translateY(-10px);
	border-color: rgba(102, 126, 234, 0.6);
	background: rgba(102, 126, 234, 0.1);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.company-card.featured {
	grid-column: 1 / -1;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	border: 2px solid rgba(102, 126, 234, 0.4);
}

.company-logo {
	width: 100%;
	max-width: 180px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 20px;
	filter: brightness(0.9);
	transition: all 0.3s ease;
	pointer-events: none;
}

.company-card:hover .company-logo {
	filter: brightness(1.1);
	transform: scale(1.05);
}

.company-info h3 {
	font-size: 1.3rem;
	margin-bottom: 8px;
	color: #667eea;
}

.company-info p {
	color: #aaa;
	font-size: 0.95rem;
}

/* Duties Display */
#dutiestext {
	margin-top: 60px;
	min-height: 400px;
}

.duties-placeholder {
	background: rgba(255, 255, 255, 0.03);
	border: 2px dashed rgba(255, 255, 255, 0.2);
	border-radius: 15px;
	padding: 60px;
	text-align: center;
}

.duties-placeholder p {
	color: #888;
	font-size: 1.2rem;
}

.duties-content {
	background: rgba(255, 255, 255, 0.05);
	border: 2px solid rgba(102, 126, 234, 0.3);
	border-radius: 15px;
	padding: 50px;
	backdrop-filter: blur(10px);
	animation: fadeIn 0.5s ease;
}

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

.duties-content h2 {
	font-size: 2.2rem;
	color: #667eea;
	margin-bottom: 15px;
}

.duties-content h3 {
	font-size: 1.4rem;
	color: #aaa;
	margin-bottom: 30px;
	font-weight: 400;
}

.duties-list {
	list-style: none;
	padding: 0;
}

.duties-list li {
	padding: 15px 0;
	padding-left: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	line-height: 1.8;
}

.duties-list li:last-child {
	border-bottom: none;
}

.duties-list li:before {
	content: "▸";
	position: absolute;
	left: 0;
	color: #667eea;
	font-size: 1.2rem;
}

/* Footer */
footer {
	padding: 40px 0;
	text-align: center;
	border-top: 2px solid rgba(255, 255, 255, 0.1);
	margin-top: 80px;
	color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.welcome-content {
		grid-template-columns: 1fr;
		gap: 50px;
		text-align: center;
	}

	#aboutme h1 {
		font-size: 2.8rem;
	}

	#contact {
		justify-content: center;
	}

	.pic {
		max-width: 300px;
	}
}

@media (max-width: 768px) {
	#aboutme h1 {
		font-size: 2.2rem;
	}

	.intro-text {
		font-size: 1rem;
	}

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

	.button-container {
		grid-template-columns: 1fr;
	}

	#experience-grid {
		grid-template-columns: 1fr;
	}

	.company-card.featured {
		grid-column: 1;
	}

	.duties-content {
		padding: 30px 20px;
	}

	.duties-content h2 {
		font-size: 1.8rem;
	}

	.duties-content h3 {
		font-size: 1.2rem;
	}

	.contactbutton {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {
	#aboutme h1 {
		font-size: 1.8rem;
	}

	.tool-card {
		padding: 25px;
	}

	.pic {
		max-width: 250px;
	}
}
