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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: #000;
	color: #fff;
	overflow-x: hidden;
	margin-top: 0;

	
}

/* Navigation */
.main-nav {
	position: sticky;
	top: 0;
	z-index: 1000;
	margin-top: 0;
	background: #000;  /* ADD THIS - matches your body background */
	padding: 1rem 0;   /* ADD THIS - gives some vertical spacing */
}

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

.logo a {
	display: block;
	background: #fff;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: background 0.3s ease;
}

.logo a:hover {
	background: #FF6B9D;
}

.logo img {
	height: 50px;
	width: auto;
	display: block;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
	background: rgba(44, 44, 44, 0.95);
	border-radius: 15px;
	padding: 0.5rem 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	z-index: 1001;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: bold;
	padding: 0.6rem 1rem;
	display: block;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.nav-link:hover {
	color: #2C2C2C;
	background: #4ECDC4;
	transform: translateY(-2px);
}

.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding-top: 1rem;
	z-index: 1001;
}

/* Prevent dropdown cutoff on right side */
.nav-item:nth-last-child(1) .dropdown,
.nav-item:nth-last-child(2) .dropdown {
	left: auto;
	right: 0;
}

.dropdown-content {
	background: #FFFFFF;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 1rem 0;
	min-width: 220px;
	border: 3px solid #FF6B9D;
}

.dropdown-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-width: 440px;
	padding: 0.5rem;
}

.dropdown-two-col a {
	margin: 0.25rem;
}

.dropdown-content a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #2C2C2C;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	border-radius: 6px;
	font-weight: 500;
}

.dropdown-content a:hover {
	background: #4ECDC4;
	color: #FFFFFF;
	transform: translateX(5px);
}

.has-dropdown:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	touch-action: manipulation;
	z-index: 1002;
}

.mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #fff;
	transition: all 0.3s ease;
	display: block;
	transform-origin: center;
}

/* Hamburger to X animation */
.mobile-toggle.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
	height: 100vh;
	min-height: 600px;
	background: linear-gradient(135deg, #FF006E 0%, #FB5607 50%, #FFBE0B 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

.shape {
	position: absolute;
	border-radius: 50%;
	animation: float 20s infinite ease-in-out;
	will-change: transform;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.1);
	top: -10%;
	left: -10%;
	animation-delay: 0s;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.15);
	bottom: -5%;
	right: -5%;
	animation-delay: 2s;
}

.shape-3 {
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.2);
	top: 50%;
	right: 20%;
	animation-delay: 4s;
}

.shape-4 {
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.12);
	bottom: 30%;
	left: 25%;
	animation-delay: 6s;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(50px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-30px, 30px) scale(0.9);
	}
}

.hero-content {
	text-align: center;
	z-index: 10;
	position: relative;
	padding: 0 1.5rem;
}

.hero-title {
	font-size: 12vw;
	font-weight: 900;
	line-height: 0.9;
	margin-bottom: 2rem;
	letter-spacing: -0.05em;
}

.hero-title span {
	display: inline-block;
	animation: slideUp 1s ease-out forwards;
	opacity: 0;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.3s; }
.hero-title span:nth-child(3) { animation-delay: 0.5s; }

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

.hero-subtitle {
	font-size: 2rem;
	font-weight: 300;
	opacity: 0;
	animation: fadeIn 1s ease-out 0.8s forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Programs Section */
.programs-section {
	background: linear-gradient(180deg, #8338EC 0%, #3A86FF 100%);
	padding: 8rem 2rem;
	position: relative;
}

.section-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 4rem;
	text-align: center;
	letter-spacing: -0.02em;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
	color: #fff;
	font-family: Georgia, 'Times New Roman', serif;
}

.section-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.programs-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.program-card {
	background: rgba(255, 255, 255, 0.95);
	color: #000;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
}

/* Keyboard focus styles for accordion cards */
.program-card:focus {
	outline: none;
}

.program-card:focus-visible {
	outline: 3px solid #FFBE0B;
	outline-offset: 4px;
}

.program-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.program-header {
	padding: 3rem 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	gap: 2rem;
}

.program-header-content {
	flex: 1;
}

.program-expand-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: transform 0.3s ease;
	color: #FF006E;
	flex-shrink: 0;
}

.program-card.expanded .program-expand-icon {
	transform: rotate(45deg);
}

.program-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
	padding: 0 4rem;
}

.program-card.expanded .program-body {
	max-height: 500px;
	padding: 2rem 4rem 3rem 4rem;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-number {
	position: absolute;
	top: -20px;
	right: 20px;
	font-size: 12rem;
	font-weight: 900;
	color: rgba(255, 0, 110, 0.08);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.program-badge {
	display: inline-block;
	background: transparent;
	color: #FF006E;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	border: 2px solid #FF006E;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeSlideIn 0.8s ease-out forwards;
}

.program-card:nth-child(1) .program-badge {
	animation-delay: 0.3s;
}

.program-card:nth-child(2) .program-badge {
	animation-delay: 0.5s;
}

.program-card.featured .program-badge {
	animation-delay: 0.7s;
	border-color: #FFBE0B;
	color: #FFBE0B;
}

@keyframes fadeSlideIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.program-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.program-meta {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 0;
}

.program-desc {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin: 0;
	padding: 1rem 0 0 0;
}

/* Featured Card */
.program-card.featured {
	background: #000;
	color: #fff;
}

.program-card.featured .program-number {
	color: rgba(255, 190, 11, 0.15);
}

.program-card.featured .program-meta {
	color: #999;
}

.program-card.featured .program-desc {
	color: #ddd;
}

.program-card.featured .program-expand-icon {
	color: #FFBE0B;
}

/* Experience Section */
.experience-section {
	background: #fff;
	padding: 8rem 2rem;
	position: relative;
	color: #000;
}

.experience-title {
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 6rem;
	letter-spacing: -0.02em;
	opacity: 0;
	transform: translateY(30px);
	transition: all 1s ease;
}

.experience-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.experience-flow {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.experience-item {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 4rem;
	opacity: 0;
	transform: translateX(-100px);
	transition: all 1s ease;
	gap: 3rem;
}

.experience-item.visible {
	opacity: 1;
	transform: translateX(0);
}

.experience-item:nth-child(even) {
	flex-direction: row-reverse;
	transform: translateX(100px);
}

.experience-item:nth-child(even).visible {
	transform: translateX(0);
}

.experience-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FF006E, #FB5607);
	flex-shrink: 0;
	box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
	position: relative;
	z-index: 10;
}

.experience-item:nth-child(2) .experience-circle {
	background: linear-gradient(135deg, #FB5607, #FFBE0B);
}

.experience-item:nth-child(3) .experience-circle {
	background: linear-gradient(135deg, #8338EC, #3A86FF);
}

.experience-connector {
	position: absolute;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg, #FF006E, #FB5607, #FFBE0B);
	left: 39px;
	top: 80px;
	z-index: 1;
}

.experience-item:last-child .experience-connector {
	display: none;
}

.experience-content {
	flex: 1;
	max-width: 600px;
}

.experience-label {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: #FF006E;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 50px;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.experience-item:nth-child(2) .experience-label {
	background: #FB5607;
}

.experience-item:nth-child(3) .experience-label {
	background: #8338EC;
}

.experience-content h3 {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	color: #000;
}

.experience-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #333;
}

.experience-image {
	flex: 1;
	max-width: 500px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.experience-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.experience-image:hover img {
	transform: scale(1.05);
}

/* Living Section */
.living-section {
	background: linear-gradient(180deg, #3A86FF, #8338EC);
	padding: 8rem 2rem;
	position: relative;
}

.living-title {
	font-size: 4rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 5rem;
	letter-spacing: -0.03em;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease;
}

.living-title.visible {
	opacity: 1;
	transform: translateY(0);
}

.living-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.living-circle {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem;
	transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
	transform: scale(0.8);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.living-circle.visible {
	opacity: 1;
	transform: scale(1);
}

.living-circle:hover {
	transform: scale(1.05);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.living-circle-content {
	text-align: center;
	color: #000;
}

.living-circle-content h3 {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	color: #FF006E;
}

.living-circle-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

/* Also style .living-content (used in semester/ayear pages) */
.living-content {
	text-align: center;
	color: #000;
}

.living-content h3 {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	color: #FF006E;
}

.living-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(180deg, #8338EC, #000);
	padding: 8rem 2rem;
	text-align: center;
}

.cta-title {
	font-size: 5rem;
	font-weight: 900;
	margin-bottom: 2rem;
	letter-spacing: -0.03em;
}

.cta-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1.5rem 3rem;
	font-size: 1.2rem;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.btn-primary {
	background: #FFBE0B;
	color: #000;
}

.btn-primary:hover {
	background: #fff;
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(255, 190, 11, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #fff;
	border: 3px solid #fff;
}

.btn-secondary:hover {
	background: #fff;
	color: #000;
	transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	animation: bounce 2s infinite;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

/* focus style since we made it keyboard-activatable */
.scroll-indicator:focus {
	outline: none;
}

.scroll-indicator:focus-visible {
	outline: 3px solid #FFBE0B;
	outline-offset: 6px;
	border-radius: 50%;
}

.scroll-indicator::before {
	content: '↓';
	font-size: 3rem;
	color: #fff;
}

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


/* Responsive */
@media (max-width: 1024px) {
	.section-title {
		font-size: 5rem;
	}

	.cta-title {
		font-size: 3.5rem;
	}

	.program-header {
		padding: 2.5rem 3rem;
	}

	.program-body {
		padding: 0 3rem;
	}

	.program-card.expanded .program-body {
		padding: 1.75rem 3rem 2.5rem 3rem;
	}

	.experience-title {
		font-size: 3.5rem;
	}

	.living-title {
		font-size: 3.5rem;
	}
}

@media (max-width: 768px) {
	.main-nav {
		top: 0;
		position: fixed;
		background: rgba(0, 0, 0, 0.95);
		left: 0;
		right: 0;
		z-index: 1000;
	}

	.nav-container {
		padding: 0.75rem 1rem;
	}

	.mobile-toggle {
		display: flex;
	}

	/* Hide nav menu by default on mobile */
	.nav-menu {
		display: none;
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(44, 44, 44, 0.98);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 0;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
		max-height: calc(100vh - 70px);
		overflow-y: auto;
		border-radius: 0;
		z-index: 999;
	}

	/* Show menu when active */
	.nav-menu.active {
		display: flex;
		padding: 1rem 0;
	}

	.nav-item {
		width: 100%;
	}

	.nav-link {
		padding: 1rem 1.5rem;
		border-radius: 0;
		width: 100%;
	}

	/* Mobile dropdown styles - hidden by default */
	.dropdown {
		position: static;
		opacity: 0;
		visibility: hidden;
		max-height: 0;
		overflow: hidden;
		padding-top: 0;
		transition: all 0.3s ease;
		pointer-events: none;
	}

	/* Show dropdown when parent has active class */
	.has-dropdown.active .dropdown {
		opacity: 1;
		visibility: visible;
		max-height: 800px;
		padding-top: 0.5rem;
		pointer-events: auto;
	}

	.dropdown-content {
		box-shadow: none;
		margin: 0 1rem;
		border-radius: 8px;
		border-width: 2px;
		background: rgba(44, 44, 44, 0.95);
		backdrop-filter: blur(10px);
		pointer-events: auto;
		border: 2px solid rgba(78, 205, 196, 0.5);
	}

	.dropdown-content a {
		pointer-events: auto;
		touch-action: auto;
		-webkit-tap-highlight-color: rgba(78, 205, 196, 0.2);
		color: #FFFFFF !important;
		opacity: 1;
		font-weight: 600;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
	}

	.dropdown-content a:hover,
	.dropdown-content a:active {
		background: rgba(78, 205, 196, 0.3);
		color: #4ECDC4 !important;
	}

	.dropdown-two-col {
		grid-template-columns: 1fr;
		min-width: auto;
	}

	/* Add visual indicator for dropdowns */
	.has-dropdown > .nav-link::after {
		content: ' ▼';
		font-size: 0.7em;
		opacity: 0.6;
		margin-left: 0.5rem;
		transition: transform 0.3s ease;
		pointer-events: none;
	}

	.has-dropdown.active > .nav-link::after {
		transform: rotate(180deg);
	}

	.hero {
		padding: 70px 1rem 0;
		min-height: 500px;
	}

	.hero-title {
		font-size: 15vw;
	}

	.hero-subtitle {
		font-size: 1.25rem;
		padding: 0 1rem;
	}

	.programs-section,
	.experience-section,
	.living-section,
	.cta-section {
		padding: 4rem 1.5rem;
	}

	.section-title {
		font-size: 3rem;
		margin-bottom: 2.5rem;
	}

	.experience-title {
		font-size: 2.5rem;
		margin-bottom: 3rem;
	}

	.experience-item {
		flex-direction: column !important;
		text-align: center;
		transform: translateY(50px) !important;
		gap: 1.5rem;
	}

	.experience-item.visible {
		transform: translateY(0) !important;
	}

	.experience-connector {
		display: none;
	}

	.experience-circle {
		margin: 0 auto 1rem;
	}

	.experience-content {
		padding: 0;
		max-width: 100%;
	}

	.experience-content h3 {
		font-size: 2rem;
	}

	.experience-content p {
		font-size: 1rem;
	}

	.experience-image {
		max-width: 100%;
		margin: 0 auto 2rem;
		height: auto;
	}

	.living-title {
		font-size: 2.5rem;
		margin-bottom: 3rem;
	}

	.living-grid {
		flex-direction: column;
		gap: 2.5rem;
	}

	.living-circle {
		width: 280px;
		height: 280px;
		padding: 2rem;
	}

	.living-circle-content h3 {
		font-size: 1.5rem;
	}

	.living-circle-content p {
		font-size: 0.95rem;
	}

	.program-title {
		font-size: 1.8rem;
	}

	.program-number {
		font-size: 6rem;
		top: 0;
		right: 1rem;
	}

	.program-header {
		padding: 2rem 1.5rem;
	}

	.program-body {
		padding: 0 1.5rem;
	}

	.program-card.expanded .program-body {
		padding: 1.5rem 1.5rem 2rem 1.5rem;
	}

	.program-meta {
		font-size: 0.95rem;
	}

	.program-desc {
		font-size: 1rem;
	}

	.cta-title {
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}

	.btn {
		padding: 1.25rem 2.5rem;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 16vw;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

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

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

	.program-header {
		padding: 1.5rem 1rem;
	}

	.program-body,
	.program-card.expanded .program-body {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.program-card.expanded .program-body {
		padding: 1rem 1rem 1.5rem 1rem;
	}

	.program-title {
		font-size: 1.5rem;
	}

	.program-number {
		font-size: 5rem;
	}

	.experience-content h3 {
		font-size: 1.6rem;
	}

	.living-circle {
		width: 260px;
		height: 260px;
		padding: 1.5rem;
	}

	.logo img {
		height: 40px;
	}
}
