@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Merriweather:300,700,300italic,700italic|Source+Sans+Pro:900");

/* Modern Portfolio CSS - Exact Andrea Lukass Site Match */

/* CSS Variables for the exact color scheme */
:root {
    --background-primary: #F5E6D3;      /* More intense, vibrant peachy background */
    --background-secondary: #F0DCC0;    /* Slightly darker, more saturated beige */
    --text-primary: #1A0F00;            /* Deep, rich dark brown - exact match */
    --text-secondary: #2D1B0A;          /* Medium dark brown */
    --text-light: #4A3C2A;              /* Light brown */
    --accent-primary: #6366F1;          /* Bright blue for interactive elements */
    --accent-secondary: #8B5CF6;        /* Purple accent */
    --accent-warm: #F59E0B;             /* Warm orange */
    --accent-cool: #10B981;             /* Cool green */
    --accent-vibrant: #EC4899;          /* Vibrant pink */
    --white: #FFFFFF;
    --shadow-light: rgba(26, 15, 0, 0.08);
    --shadow-medium: rgba(26, 15, 0, 0.12);
    --shadow-heavy: rgba(26, 15, 0, 0.2);
}

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

	html {
	scroll-behavior: smooth;
		}

	body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--background-primary);
	overflow-x: hidden;
}

/* Typography - Exact Andrea Lukass Style */
h1, h2, h3, h4, h5, h6 {
	font-weight: 900; /* Extra bold like inspiration site */
	line-height: 0.9; /* Tight line height for impact */
	margin-bottom: 1.5rem;
	color: var(--text-primary);
	letter-spacing: -0.03em; /* Tighter letter spacing */
	text-transform: uppercase; /* All caps like inspiration */
}

h1 { 
	font-size: clamp(4rem, 12vw, 8rem); /* Much larger, more impactful */
		font-weight: 900;
	line-height: 0.85;
	letter-spacing: -0.04em;
		text-transform: uppercase;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	/* Adding the exact geometric, bold style */
	font-feature-settings: "liga" 1, "kern" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h2 { 
	font-size: clamp(3rem, 8vw, 5rem); 
	font-weight: 900;
	letter-spacing: -0.03em;
}

h3 { 
	font-size: clamp(2rem, 5vw, 3rem); 
	font-weight: 800;
	letter-spacing: -0.02em;
}

p {
	font-size: 1.3rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
	font-weight: 500;
	letter-spacing: -0.01em;
}

/* Container */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
}

/* Header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(248, 240, 227, 0.98);
	backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(26, 15, 0, 0.08);
	transition: all 0.4s ease;
}

.header-content {
		display: flex;
	justify-content: space-between;
			align-items: center;
	padding: 2rem 3rem;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	font-size: 2rem;
	font-weight: 900;
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.logo:hover {
	color: var(--accent-primary);
}

.main-nav ul {
				display: flex;
	list-style: none;
	gap: 3rem;
}

.main-nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	position: relative;
	font-size: 1.1rem;
	padding: 0.8rem 1.5rem;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.main-nav a:hover {
	color: var(--text-primary);
	background: rgba(26, 15, 0, 0.05);
	transform: translateY(-2px);
}

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

.main-nav a:hover::after {
	width: 80%;
}

/* Hero Section */
.hero-section {
	min-height: 100vh;
				display: flex;
					align-items: center;
					justify-content: center;
	position: relative;
	background: var(--background-primary);
	overflow: hidden;
	padding: 2rem 0;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
					align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
	position: relative;
	z-index: 2;
}

.hero-text {
	max-width: 700px;
}

.hero-title {
	margin-bottom: 0; /* Removed margin completely for tight spacing */
	/* Maximum impact for your name */
	text-align: left;
}

.title-line {
	display: block;
	overflow: hidden;
	margin-bottom: 0; /* Removed margin completely for tight spacing */
	transform: translateY(100%);
	opacity: 0;
	/* MASSIVE Andrea Lukass title style - ABSOLUTELY HUGE */
	font-weight: 900;
	line-height: 0.75; /* Even tighter for maximum impact */
	letter-spacing: -0.06em; /* Tighter letter spacing for that bold look */
	text-transform: uppercase;
	font-size: clamp(8rem, 20vw, 15rem); /* ABSOLUTELY MASSIVE - like inspiration screenshot */
	/* Enhanced text styling */
	font-feature-settings: "liga" 1, "kern" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Text shadow for extra depth */
	text-shadow: 0 6px 30px rgba(26, 15, 0, 0.15);
	/* Ensure maximum visibility */
	color: var(--text-primary);
	/* Make it dominate the entire viewport */
	position: relative;
	z-index: 10;
}

.hero-subtitle {
	font-size: 1.5rem;
	color: var(--text-light);
	margin-bottom: 4rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: -0.01em;
}

/* Big Subtitle Title - Really Big Font */
.hero-subtitle-title {
	font-size: clamp(3rem, 8vw, 6rem);
		font-weight: 900;
	line-height: 0.9;
	letter-spacing: -0.03em;
		text-transform: uppercase;
	color: var(--text-primary);
	margin-bottom: 2rem;
	/* Enhanced styling for maximum impact */
	font-feature-settings: "liga" 1, "kern" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Text shadow for depth */
	text-shadow: 0 4px 20px rgba(26, 15, 0, 0.1);
}

/* Education & Experience Section */
.education-experience {
	margin-bottom: 4rem;
}

.subsection-title {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
			position: relative;
}

.subsection-title::after {
	content: '';
				position: absolute;
	bottom: -8px;
				left: 0;
	width: 60px;
	height: 3px;
	background: var(--accent-primary);
	border-radius: 2px;
}

.education-item, .experience-item {
	background: var(--white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px var(--shadow-light);
	border: 1px solid rgba(26, 15, 0, 0.05);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.education-item:hover, .experience-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px var(--shadow-medium);
}

.education-item h4, .experience-item h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.degree, .company {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--accent-primary);
	margin-bottom: 0.5rem;
}

.timeline {
				font-size: 0.9rem;
	color: var(--text-light);
	margin-bottom: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.description {
					font-size: 1rem;
	color: var(--text-secondary);
	line-height: 1.6;
			margin-bottom: 0;
		}

.hero-cta {
			display: flex;
	gap: 1.5rem;
			flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
	display: inline-block;
	padding: 1.3rem 2.8rem;
	border-radius: 16px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.4s ease;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 24px var(--shadow-light);
		text-transform: uppercase;
	position: relative;
	overflow: hidden;
}

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

.btn-primary:hover {
	background: var(--accent-primary);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
		width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 3px solid var(--text-primary);
}

.btn-secondary:hover {
	background: var(--text-primary);
	color: var(--white);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px var(--shadow-medium);
}

.hero-visual {
	position: relative;
	height: 500px;
}

.floating-elements {
			position: relative;
	width: 100%;
	height: 100%;
}

.floating-element {
				position: absolute;
	width: 140px;
	height: 140px;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	border-radius: 28px;
	opacity: 0.95;
	box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25);
	/* Adding subtle rotation for more dynamic feel */
	transform: rotate(15deg);
}

.floating-element:nth-child(1) {
	top: 15%;
	left: 15%;
	animation: float 8s ease-in-out infinite;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-vibrant));
}

.floating-element:nth-child(2) {
	top: 55%;
	right: 25%;
	animation: float 10s ease-in-out infinite reverse;
	background: linear-gradient(135deg, var(--accent-secondary), var(--accent-warm));
	transform: rotate(-20deg);
}

.floating-element:nth-child(3) {
	bottom: 15%;
	left: 35%;
	animation: float 9s ease-in-out infinite;
	background: linear-gradient(135deg, var(--accent-warm), var(--accent-cool));
	transform: rotate(25deg);
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(15deg); }
	50% { transform: translateY(-40px) rotate(195deg); }
}

.floating-element:nth-child(2) {
	animation: float 10s ease-in-out infinite reverse;
}

.floating-element:nth-child(3) {
	animation: float 9s ease-in-out infinite;
}

.scroll-indicator {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2.5s infinite;
}

/* Floating decorative squares in About section (reuse hero animation) */
.about-image { position: relative; }

.about-floaters {
	position: absolute;
	top: -20px;
	right: -40px;
	width: 260px;
	height: 260px;
	pointer-events: none;
}

.about-floaters .floating-element {
	width: 110px;
	height: 110px;
	border-radius: 24px;
}

.about-floaters .floating-element:nth-child(1) { top: 0; right: 40px; }
.about-floaters .floating-element:nth-child(2) { top: 90px; right: 0; transform: rotate(-20deg); }
.about-floaters .floating-element:nth-child(3) { top: 150px; right: 110px; }

.scroll-arrow {
	width: 28px;
	height: 28px;
	border-right: 4px solid var(--accent-primary);
	border-bottom: 4px solid var(--accent-primary);
	transform: rotate(45deg);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-20px); }
	60% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
.work-section, .about-section, .contact-section {
	padding: 8rem 0;
	background: var(--background-primary);
}

.section-header {
	text-align: center;
	margin-bottom: 6rem;
}

.section-title {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
		position: relative;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--accent-primary);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.4rem;
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
	font-weight: 500;
	letter-spacing: -0.01em;
}

/* Work Grid */
.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 3rem;
}

/* Center the fourth (purple) project card on its row */
.work-grid > .work-item:nth-child(4) {
	justify-self: center;
}

/* Place the 4th card in the middle column on wide (3-col) layouts */
@media (min-width: 1200px) {
	.work-grid > .work-item:nth-child(4) {
		grid-column: 2;
	}
}

/* On medium (2-col) layouts, span the full row and center */
@media (min-width: 820px) and (max-width: 1199px) {
	.work-grid > .work-item:nth-child(4) {
		grid-column: 1 / -1;
		justify-self: center;
		max-width: 500px;
	}
}

/* Work item content styling for bright backgrounds */
.work-item {
		position: relative;
	border-radius: 24px;
		overflow: hidden;
	box-shadow: 0 12px 40px var(--shadow-light);
	transition: all 0.5s ease;
	border: 1px solid rgba(26, 15, 0, 0.05);
	/* Add padding for content */
	padding: 2rem;
		display: flex;
	flex-direction: column;
			justify-content: center;
	min-height: 300px;
}

/* Project number styling like inspiration screenshots */
.work-item::before {
	content: attr(data-number, '01');
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Work item title styling for bright backgrounds */
.work-item h3 {
	color: var(--text-primary);
	font-size: 1.8rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
	line-height: 1.1;
}

/* Work item description styling */
.work-item p {
	color: var(--text-primary);
			font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	opacity: 0.9;
}

/* Work item button styling */
.work-item .btn-view {
	align-self: flex-start;
	background: var(--text-primary);
	color: var(--white);
	border: 2px solid var(--text-primary);
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: all 0.3s ease;
}

.work-item .btn-view:hover {
	background: transparent;
	color: var(--text-primary);
	transform: translateY(-2px);
}

/* Icon strip styling inside work items */
.work-item .icon-strip {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 0.75rem;
}

.work-item .icon-strip i {
	font-size: 1.1rem;
	color: rgba(0,0,0,0.65);
	background: rgba(255,255,255,0.6);
	border: 1px solid rgba(0,0,0,0.06);
	padding: 8px;
	border-radius: 10px;
	box-shadow: 0 2px 8px var(--shadow-light);
}

/* Individual work item colors matching inspiration screenshots */
.work-item:nth-child(1) {
	background: #00C0C0; /* Bright teal/cyan like "HOVER STATES" */
}

.work-item:nth-child(2) {
	background: #FF8000; /* Bright saturated orange like "RESIZING ELEMENTS" */
}

.work-item:nth-child(3) {
	background: #FFD700; /* Bright sunny yellow like "TIMELINE CONTROL" */
}

.work-item:nth-child(4) {
	background: #A080FF; /* Soft light lavender/purple like "SHUFFLING POSITIONS" */
}

.work-item:nth-child(5) {
	background: #80FF00; /* Vibrant neon lime green like "SEQUENCED MOTION" */
}

.work-item:nth-child(6) {
	background: #FF69B4; /* Cheerful bright pink like "FLEXIBLE LAYOUTS" */
}

.work-item:hover {
	transform: translateY(-16px);
	box-shadow: 0 32px 64px var(--shadow-heavy);
}

/* Project Video Section */
.project-video-section {
	margin: 20px 0;
	padding: 20px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.project-video-section:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	transform: translateY(-2px);
}

.project-video-section h4 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}

.project-video-section video {
	width: 100%;
	max-width: 600px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
	display: block;
	margin: 0 auto;
}

.project-video-section video:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
	transform: scale(1.02);
}

.project-video-section p {
	margin: 10px 0 0 0;
	font-size: 14px;
	color: #666;
	font-style: italic;
	text-align: center;
}

/* Responsive video sizing */
@media (max-width: 768px) {
	.project-video-section {
		padding: 15px;
	}
	
	.project-video-section video {
		max-width: 100%;
	}
}

/* Project Images Section */
.project-images-section {
	margin: 15px 0;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	transition: all 0.3s ease;
	backdrop-filter: blur(15px);
	overflow: visible;
	max-width: 100%;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-images-section:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.6);
}

.project-images-section h4 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}

.image-grid {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	margin: 25px auto;
	max-width: 100%;
	width: 100%;
	text-align: center;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding: 10px 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(0,0,0,0.3) transparent;
}

/* Custom scrollbar for webkit browsers */
.image-grid::-webkit-scrollbar {
	height: 8px;
}

.image-grid::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 4px;
}

.image-grid::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.3);
	border-radius: 4px;
}

.image-grid::-webkit-scrollbar-thumb:hover {
	background: rgba(0,0,0,0.5);
}

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

/* Override any global image styles for project screenshots */
.work-item .project-images-section .image-grid img,
.work-item[data-category="branding"] .project-images-section .image-grid img,
.work-item[data-category="web"] .project-images-section .image-grid img,
.work-item[data-category="mobile"] .project-images-section .image-grid img,
.work-item[data-category="branding"] .project-images-section .image-grid img[src*="block_summary"],
.work-item[data-category="branding"] .project-images-section .image-grid img[src*="block_title"],
.work-item[data-category="branding"] .project-images-section .image-grid img[src*="block_who"],
.work-item[data-category="web"] .project-images-section .image-grid img[src*="google"] {
	width: 150px !important;
	height: 150px !important;
	max-width: 150px !important;
	max-height: 150px !important;
	min-width: 150px !important;
	min-height: 150px !important;
	object-fit: cover !important;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
	display: block !important;
	flex-shrink: 0;
	box-sizing: border-box;
	cursor: pointer;
	user-select: none;
}

.work-item .project-images-section .image-grid img:hover {
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.image-item img:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.25);
	transform: scale(1.05);
}

.image-item p {
	margin: 8px 0 0 0;
	font-size: 12px;
	color: #666;
	text-align: center;
}

.project-images-section p:last-child {
	margin: 10px 0 0 0;
	font-size: 14px;
	color: #666;
	font-style: italic;
	text-align: center;
}

/* Responsive image grid */
@media (max-width: 768px) {
	.project-images-section {
		padding: 15px;
	}
	
	.image-grid {
		gap: 15px;
		padding: 5px 0;
	}
	
	.work-item .project-images-section .image-grid img {
		width: 100px !important;
		height: 100px !important;
		max-width: 100px !important;
		max-height: 100px !important;
		min-width: 100px !important;
		min-height: 100px !important;
	}
}

/* Ensure horizontal scroll works on touch devices */
@media (hover: none) and (pointer: coarse) {
	.image-grid {
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}
	
	.image-grid img {
		scroll-snap-align: start;
	}
}

.work-image {
			position: relative;
	overflow: hidden;
}

.work-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.work-item:hover .work-image img {
	transform: scale(1.15);
}

.work-overlay {
					position: absolute;
	top: 0;
					left: 0;
					right: 0;
	bottom: 0;
	background: rgba(26, 15, 0, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.work-item:hover .work-overlay {
	opacity: 1;
}

.work-details {
	text-align: center;
	color: var(--white);
	padding: 3rem;
}

.work-details h3 {
	color: var(--white);
	margin-bottom: 1rem;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.work-details p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	font-size: 1.2rem;
}

.btn-view {
	color: var(--white);
	text-decoration: none;
	border: 2px solid var(--white);
	padding: 1.2rem 2.5rem;
	border-radius: 12px;
	transition: all 0.3s ease;
	font-weight: 700;
	font-size: 1rem;
			text-transform: uppercase;
	letter-spacing: 0.02em;
}

.btn-view:hover {
	background: var(--white);
	color: var(--text-primary);
	transform: scale(1.05);
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 6rem;
	align-items: center;
}

.about-description {
	font-size: 1.4rem;
	margin-bottom: 4rem;
	color: var(--text-secondary);
	line-height: 1.8;
	letter-spacing: -0.01em;
}

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

.skill-category {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 8px 32px var(--shadow-light);
	border: 1px solid rgba(26, 15, 0, 0.05);
	transition: all 0.3s ease;
}

.skill-category:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 48px var(--shadow-medium);
}

.skill-category h3 {
	color: var(--accent-primary);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
			text-align: center;
			text-transform: uppercase;
	letter-spacing: 0.02em;
}

.skill-category ul {
	list-style: none;
}

.skill-category li {
	padding: 1rem 0;
	color: var(--text-secondary);
		position: relative;
	padding-left: 2.5rem;
	font-weight: 500;
	font-size: 1.1rem;
	}

.skill-category li::before {
	content: '▸';
			position: absolute;
			left: 0;
	color: var(--accent-primary);
	font-weight: bold;
	font-size: 1.4rem;
}

.about-image img {
			width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 20px 48px var(--shadow-medium);
	border: 1px solid rgba(26, 15, 0, 0.05);
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
}

.contact-info {
		display: flex;
		flex-direction: column;
	gap: 3rem;
}

.contact-item h3 {
	color: var(--accent-primary);
					margin-bottom: 1rem;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.contact-item a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
	font-size: 1.1rem;
}

.contact-item a:hover {
	color: var(--accent-primary);
}

.social-links {
		display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-link {
	color: var(--accent-primary);
	text-decoration: none;
	padding: 1rem 2rem;
	border: 2px solid var(--accent-primary);
	border-radius: 12px;
	transition: all 0.3s ease;
	font-weight: 700;
	background: transparent;
			text-transform: uppercase;
	letter-spacing: 0.02em;
}

.social-link:hover {
	background: var(--accent-primary);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* Contact Form */
.contact-form {
	background: var(--white);
	padding: 3.5rem;
	border-radius: 24px;
	border: 1px solid rgba(26, 15, 0, 0.05);
	box-shadow: 0 12px 40px var(--shadow-light);
}

.form-group {
	margin-bottom: 2.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 700;
	color: var(--text-primary);
	font-size: 1.2rem;
			text-transform: uppercase;
	letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1.5rem;
	border: 2px solid rgba(26, 15, 0, 0.1);
	border-radius: 16px;
	font-size: 1.1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background: var(--background-secondary);
	color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
					outline: none;
	border-color: var(--accent-primary);
	background: var(--white);
	box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 160px;
}

/* Footer */
#footer {
	background: var(--text-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
}

.footer-content p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.container {
		padding: 0 2rem;
	}
	
	.hero-content {
		gap: 4rem;
		padding: 0 2rem;
	}
	
	.about-content {
		gap: 4rem;
	}
	
	.contact-content {
		gap: 4rem;
	}
	
	/* Ensure hero title remains MASSIVE on tablets */
	.hero-title .title-line {
		font-size: clamp(6rem, 18vw, 12rem);
	}
	
	/* Ensure subtitle title remains big on tablets */
	.hero-subtitle-title {
		font-size: clamp(2.5rem, 7vw, 5rem);
	}
}

@media (max-width: 768px) {
	.hero-content {
		grid-template-columns: 1fr;
			text-align: center;
		gap: 3rem;
	}
	
	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.contact-content {
		grid-template-columns: 1fr;
	}
	
	.hero-cta {
		justify-content: center;
	}
	
	.main-nav {
		display: none;
	}
	
	.container {
		padding: 0 1.5rem;
	}
	
	.work-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.skills-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.hero-section, .work-section, .about-section, .contact-section {
		padding: 4rem 0;
	}
	
	/* Hero title on mobile - STILL MASSIVE and impactful */
	h1 {
		font-size: clamp(6rem, 20vw, 8rem);
	}
	
	.hero-title .title-line {
		font-size: clamp(6rem, 20vw, 8rem);
			text-align: center;
	}
	
	/* Subtitle title on mobile - still big and impactful */
	.hero-subtitle-title {
		font-size: clamp(2rem, 6vw, 4rem);
				text-align: center;
			}
}

@media (max-width: 480px) {
	.hero-cta {
				flex-direction: column;
					align-items: center;
	}
	
	.btn-primary, .btn-secondary {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
	
	.container {
		padding: 0 1rem;
	}
	
	.header-content {
		padding: 1.5rem 1rem;
	}
	
	.hero-content {
		padding: 0 1rem;
	}
	
	/* Hero title on small mobile - STILL MASSIVE impact */
	h1 {
		font-size: clamp(5rem, 18vw, 6rem);
	}
	
	.hero-title .title-line {
		font-size: clamp(5rem, 18vw, 6rem);
		text-align: center;
	}
	
	/* Subtitle title on small mobile - still impactful */
	.hero-subtitle-title {
		font-size: clamp(1.8rem, 5vw, 3rem);
		text-align: center;
	}
}

/* GSAP Animation Classes */
.fade-in {
	opacity: 0;
	transform: translateY(50px);
}

.fade-in.animated {
	opacity: 1;
	transform: translateY(0);
}

.slide-in-left {
	opacity: 0;
	transform: translateX(-80px);
}

.slide-in-left.animated {
	opacity: 1;
	transform: translateX(0);
}

.slide-in-right {
	opacity: 0;
	transform: translateX(80px);
}

.slide-in-right.animated {
	opacity: 1;
	transform: translateX(0);
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* Enhanced hover effects */
.work-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: -1;
	border-radius: 24px;
}

.work-item:hover::before {
	opacity: 0.08;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--background-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-primary);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--accent-secondary);
}

/* Text reveal animation for hero title */
.hero-title .title-line {
			display: inline-block;
	overflow: hidden;
	position: relative;
}

.hero-title .title-line::after {
	content: '';
			position: absolute;
			top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--background-primary);
	animation: revealText 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealText {
	0% {
			transform: translateX(0);
		}
	100% {
		transform: translateX(100%);
	}
	}

/* Image Gallery Section with Rotating Prism */
.gallery-section {
	padding: 8rem 0;
	background: var(--background-primary);
}

.prism-showcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	margin-top: 8rem;
}

.prism-container {
	perspective: 1200px;
	width: 600px;
	height: 600px;
	position: relative;
}

.prism {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	animation: rotatePrism 20s infinite linear;
	transform-origin: center center;
}


.prism-face {
	position: absolute;
	width: 550px;
 	height: 500px;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 8px 32px var(--shadow-medium);
	border: 1px solid rgba(26, 15, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	backface-visibility: hidden;
}

/* Position each face of the prism */
.prism-face:nth-child(1) {
	transform: rotateY(0deg) translateZ(275px);
}

.prism-face:nth-child(2) {
	transform: rotateY(90deg) translateZ(275px);
}

.prism-face:nth-child(3) {
	transform: rotateY(180deg) translateZ(275px);
}

.prism-face:nth-child(4) {
	transform: rotateY(270deg) translateZ(275px);
}

.image-content {
	text-align: center;
	padding: 1.5rem;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.image-number {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--accent-primary);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.image-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.4rem;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.image-content p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 0.75rem;
	font-weight: 500;
	line-height: 1.3;
}

.image-display {
	width: 100%;
	height: 320px;
	overflow: hidden;
	border-radius: 8px;
	margin: 0.5rem 0;
}

.image-display img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.prism-face:hover .image-display img {
	transform: scale(1.1);
}

/* Prism Controls */
.prism-controls {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	background: var(--white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px var(--shadow-light);
	border: 1px solid rgba(26, 15, 0, 0.05);
}

.control-btn {
	background: var(--accent-primary);
	color: var(--white);
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all 0.3s ease;
}

.control-btn:hover {
	background: var(--accent-secondary);
	transform: translateY(-2px);
}

.control-btn.active {
	background: var(--text-primary);
}

.rotation-speed {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.rotation-speed label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
}

.rotation-speed input[type="range"] {
	width: 100px;
	height: 4px;
	background: var(--background-secondary);
	border-radius: 2px;
	outline: none;
}

.rotation-speed input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 16px;
	height: 16px;
	background: var(--accent-primary);
	border-radius: 50%;
	cursor: pointer;
}

/* Prism Animation */
@keyframes rotatePrism {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

.prism.paused {
	animation-play-state: paused;
}

/* Responsive Design for Prism */
@media (max-width: 768px) {
	.prism-container {
		width: 500px;
		height: 500px;
	}
	
	.prism-face {
		width: 375px;
		height: 375px;
	}
	
	.prism-face:nth-child(1) {
		transform: rotateY(0deg) translateZ(187.5px);
	}
	
	.prism-face:nth-child(2) {
		transform: rotateY(90deg) translateZ(187.5px);
	}
	
	.prism-face:nth-child(3) {
		transform: rotateY(180deg) translateZ(187.5px);
	}
	
	.prism-face:nth-child(4) {
		transform: rotateY(270deg) translateZ(187.5px);
	}
	
	.image-content {
		padding: 1.5rem;
	}
	
	.image-content h3 {
		font-size: 1.2rem;
	}
	
	.image-display {
		height: 120px;
	}
}

/* Project Modal Styles */
.project-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(26, 15, 0, 0.8);
	backdrop-filter: blur(10px);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
}

.modal-content {
	background: var(--white);
	border-radius: 24px;
	width: 90%;
	max-width: 1000px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.7);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 60px var(--shadow-dark);
	border: 1px solid rgba(26, 15, 0, 0.05);
}

.project-modal.show .modal-content {
	transform: scale(1);
}

.close-modal {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 2rem;
	font-weight: 300;
	color: var(--text-light);
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.close-modal:hover {
	color: var(--text-primary);
	background: var(--background-secondary);
}

.modal-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.project-gallery {
	background: var(--background-primary);
	padding: 2rem;
	border-radius: 24px 0 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.gallery-main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.gallery-main img, .gallery-main video {
	max-width: 100%;
	max-height: 400px;
	border-radius: 16px;
	box-shadow: 0 8px 32px var(--shadow-medium);
	transition: all 0.3s ease;
}

.gallery-main video {
	background: var(--background-secondary);
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	width: 100%;
	pointer-events: none;
}

.gallery-prev, .gallery-next {
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--text-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: auto;
	box-shadow: 0 4px 16px var(--shadow-medium);
}

.gallery-prev:hover, .gallery-next:hover {
	background: var(--white);
	transform: scale(1.1);
}

.gallery-thumbnails {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.thumbnail-container {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	border-radius: 8px;
	overflow: hidden;
}

.thumbnail-container:hover {
	transform: scale(1.1);
	border-color: var(--accent-primary);
}

.thumbnail-container.active {
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--accent-primary);
}

.thumbnail {
	width: 60px;
	height: 60px;
	border-radius: 6px;
	object-fit: cover;
	display: block;
}

.video-indicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: var(--white);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	backdrop-filter: blur(4px);
}

.project-info {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	overflow-y: auto;
	max-height: 80vh;
}

.project-header {
	border-bottom: 2px solid var(--background-secondary);
	padding-bottom: 1rem;
}

.project-subtitle {
	font-size: 1.1rem;
	color: var(--accent-primary);
	font-weight: 600;
	margin: 0.5rem 0;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.project-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.project-status, .project-timeline, .project-team {
	background: var(--background-secondary);
	color: var(--text-secondary);
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.project-status {
	background: var(--accent-primary);
	color: var(--white);
}

.project-description {
	border-bottom: 1px solid var(--background-secondary);
	padding-bottom: 1rem;
}

.long-description {
	margin-top: 1rem;
	font-style: italic;
	color: var(--text-light);
}

.project-features {
	border-bottom: 1px solid var(--background-secondary);
	padding-bottom: 1rem;
}

.project-features h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.project-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-features li {
	background: var(--background-secondary);
	padding: 0.6rem 1rem;
	margin: 0.5rem 0;
	border-radius: 8px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	position: relative;
	padding-left: 2rem;
}

.project-features li::before {
	content: '✓';
	position: absolute;
	left: 0.8rem;
	color: var(--accent-primary);
	font-weight: bold;
}

.project-challenges {
	border-bottom: 1px solid var(--background-secondary);
	padding-bottom: 1rem;
}

.project-challenges h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.challenge-item, .solution-item {
	margin: 1rem 0;
}

.challenge-item h4, .solution-item h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.challenge-item h4 {
	color: #e74c3c;
}

.solution-item h4 {
	color: #27ae60;
}

.challenge-item p, .solution-item p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
	margin: 0;
}

.project-info h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.project-info p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

.project-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tech-stack h3, .project-links h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

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

.tech-tag {
	background: var(--accent-primary);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.link-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.link-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--text-primary);
	color: var(--white);
	padding: 0.8rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: all 0.3s ease;
	border: 2px solid var(--text-primary);
}

.link-btn:hover {
	background: var(--white);
	color: var(--text-primary);
	transform: translateY(-2px);
}

.link-btn.secondary {
	background: var(--white);
	color: var(--text-primary);
	border-color: var(--accent-primary);
}

.link-btn.secondary:hover {
	background: var(--accent-primary);
	color: var(--white);
}

/* Responsive Modal */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		max-height: 95vh;
	}
	
	.modal-body {
		grid-template-columns: 1fr;
	}
	
	.project-gallery {
		border-radius: 24px 24px 0 0;
		padding: 1.5rem;
	}
	
	.project-info {
		padding: 1.5rem;
	}
	
	.project-info h2 {
		font-size: 1.6rem;
	}
}