/* CSS Variables - Override these in each HTML page */
:root {
	/* Default colors (semester) */
	--hero-gradient-start: #FF006E;
	--hero-gradient-mid: #FB5607;
	--hero-gradient-end: #FFBE0B;
	--programs-gradient-start: #8338EC;
	--programs-gradient-end: #3A86FF;
	--circle-1: #FF006E;
	--circle-2: #FB5607;
	--circle-3: #FFBE0B;
	--badge-color: #FF006E;
	--badge-featured: #FFBE0B;
	--expand-icon: #FF006E;
	--expand-icon-featured: #FFBE0B;
	--number-opacity: rgba(255, 0, 110, 0.08);
	--number-featured-opacity: rgba(255, 190, 11, 0.15);
	--experience-circle-1: #8338EC;
	--experience-circle-2: #3A86FF;
	--experience-circle-3: #06FFA5;
	--experience-gradient: linear-gradient(90deg, #8338EC, #3A86FF, #06FFA5);
	--label-bg: #FF006E;
	--cta-gradient-end: #FF006E;
	--btn-primary-bg: #FFBE0B;
	--btn-primary-shadow: rgba(255, 190, 11, 0.4);
}

/* 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;
}

/* Navigation */
.main-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0.75rem 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);
}

.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;
}

/* Position last two menu dropdowns to the right to prevent cutoff */
.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: 360px;
	padding: 0.5rem;
}

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

.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;
}

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

/* Mobile toggle 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;
	background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-mid) 50%, var(--hero-gradient-end) 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* For semester-year page with floating shapes */
.hero-bg-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
}

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

.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);
	}
}

/* For summer page with particle canvas */
#particleCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.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 {
	to {
		opacity: 1;
		transform: translateY(0);
	}
	from {
		opacity: 0;
		transform: translateY(100px);
	}
}

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

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

/* Gap Year hero rotating typography */
.hero-static-title {
	font-size: 6vw;
	font-weight: 900;
	letter-spacing: -0.05em;
	margin-bottom: 1rem;
}

.rotating-text-container {
	height: 12vw;
	overflow: hidden;
	position: relative;
	margin-bottom: 2rem;
	perspective: 1000px;
}

.rotating-text {
	font-size: 12vw;
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
	position: absolute;
	width: 100%;
	text-align: center;
	opacity: 0;
	transform: translateY(100%) rotateX(-90deg);
}

.rotating-text:nth-child(1) {
	animation: rotateWords 9s infinite;
}

.rotating-text:nth-child(2) {
	animation: rotateWords 9s infinite;
	animation-delay: 3s;
}

.rotating-text:nth-child(3) {
	animation: rotateWords 9s infinite;
	animation-delay: 6s;
}

@keyframes rotateWords {
	0% {
		opacity: 0;
		transform: translateY(100%) rotateX(-90deg);
	}
	8% {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
	25% {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
	33% {
		opacity: 0;
		transform: translateY(-100%) rotateX(90deg);
	}
	100% {
		opacity: 0;
		transform: translateY(-100%) rotateX(90deg);
	}
}

/* Programs Section */
.programs-section {
	background: linear-gradient(180deg, var(--programs-gradient-start) 0%, var(--programs-gradient-end) 100%);
	padding: 8rem 2rem;
	position: relative;
}

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

.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;
}

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

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

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

.program-expand-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: transform 0.3s ease;
	color: var(--expand-icon);
}

.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: var(--number-opacity);
	line-height: 1;
	pointer-events: none;
}

.program-badge {
	display: inline-block;
	background: transparent;
	color: var(--badge-color);
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	border: 2px solid var(--badge-color);
	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: var(--badge-featured);
	color: var(--badge-featured);
}

@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: var(--number-featured-opacity);
}

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

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

.program-card.featured .program-expand-icon {
	color: var(--expand-icon-featured);
}

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

.experience-title,
.highlights-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,
.highlights-title.visible {
	opacity: 1;
	transform: translateY(0);
}

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

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

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

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

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

.experience-item:nth-child(1),
.highlight-item:nth-child(1) { transition-delay: 0.2s; }
.experience-item:nth-child(2),
.highlight-item:nth-child(2) { transition-delay: 0.4s; }
.experience-item:nth-child(3),
.highlight-item:nth-child(3) { transition-delay: 0.6s; }

.experience-circle,
.highlight-circle {
	min-width: 200px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	transition: transform 0.4s ease;
}

.experience-circle:hover,
.highlight-circle:hover {
	transform: scale(1.1);
}

.experience-item:nth-child(1) .experience-circle,
.highlight-item:nth-child(1) .highlight-circle {
	background: var(--experience-circle-1);
}

.experience-item:nth-child(2) .experience-circle,
.highlight-item:nth-child(2) .highlight-circle {
	background: var(--experience-circle-2);
}

.experience-item:nth-child(3) .experience-circle,
.highlight-item:nth-child(3) .highlight-circle {
	background: var(--experience-circle-3);
}

.experience-connector,
.highlight-connector {
	flex: 1;
	height: 3px;
	background: #ddd;
	position: relative;
	margin: 0 2rem;
}

.experience-connector::before,
.highlight-connector::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--experience-gradient);
	width: 0%;
	transition: width 1.5s ease;
}

.experience-item.visible .experience-connector::before,
.highlight-item.visible .highlight-connector::before {
	width: 100%;
}

.experience-content,
.highlight-content {
	flex: 1;
	padding: 2rem;
}

.experience-label,
.highlight-label {
	display: inline-block;
	background: var(--label-bg);
	color: #fff;
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.experience-content h3,
.highlight-content h3 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.experience-content p,
.highlight-content p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: #555;
}

.experience-image,
.highlight-image {
	width: 100%;
	max-width: 400px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-image img,
.highlight-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Living Section */
.living-section {
	background: #000;
	padding: 8rem 2rem;
	position: relative;
	color: #fff;
	overflow: hidden;
}

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

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

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

.living-circle {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem;
	position: relative;
	opacity: 0;
	transform: scale(0.3) rotate(-180deg);
	transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
}

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

.living-circle:nth-child(1) { 
	background: var(--circle-1);
	transition-delay: 0.2s; 
}

.living-circle:nth-child(2) { 
	background: var(--circle-2);
	transition-delay: 0.4s; 
}

.living-circle:nth-child(3) { 
	background: var(--circle-3);
	transition-delay: 0.6s; 
}

.living-circle:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 30px 80px rgba(255, 255, 255, 0.2);
}

.living-circle-content h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 800;
	line-height: 1.2;
}

.living-circle-content p {
	font-size: 1.05rem;
	line-height: 1.5;
	font-weight: 400;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #000 0%, var(--cta-gradient-end) 100%);
	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;
}

.btn-primary {
	background: var(--btn-primary-bg);
	color: #000;
}

.btn-primary:hover {
	background: #fff;
	transform: translateY(-5px);
	box-shadow: 0 20px 40px var(--btn-primary-shadow);
}

.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;
}

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

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

/* Bubble Bath Footer */
.bubble-footer {
	background: linear-gradient(180deg, #1a1a2e 0%, #0f3460 50%, #16537e 100%);
	padding: 0;
	position: relative;
	overflow: hidden;
	min-height: 500px;
	cursor: crosshair;
}

.bubble-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: auto;
}

.bubble-message {
	position: relative;
	z-index: 10;
	text-align: center;
	padding: 8rem 2rem 4rem;
	pointer-events: none;
}

.bubble-title {
	font-size: 5rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	text-shadow: 
		0 0 20px rgba(78, 205, 196, 0.6),
		0 0 40px rgba(78, 205, 196, 0.4),
		0 5px 10px rgba(0, 0, 0, 0.5);
	animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.bubble-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 300;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	animation: subtitlePulse 3s ease-in-out infinite;
}

@keyframes subtitlePulse {
	0%, 100% {
		opacity: 0.7;
	}
	50% {
		opacity: 1;
	}
}

/* Bubble styling handled by JS, but add hover effect */
.bubble:hover {
	transform: scale(1.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 15vw;
	}

	/* Gap Year hero responsiveness */
	.hero-static-title {
		font-size: 9vw;
	}

	.rotating-text-container {
		height: 18vw;
	}

	.rotating-text {
		font-size: 18vw;
	}

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

	.experience-title,
	.highlights-title {
		font-size: 2.5rem;
	}

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

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

	.experience-connector,
	.highlight-connector {
		display: none;
	}

	.experience-circle,
	.highlight-circle {
		margin-bottom: 1.5rem;
	}

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

	.experience-image,
	.highlight-image {
		max-width: 100%;
		margin-bottom: 2rem;
	}

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

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

	.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: 2rem;
	}

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

	.program-header {
		padding: 2rem;
	}

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

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

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

	.mobile-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: rgba(44, 44, 44, 0.98);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 1rem 0;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-radius: 0;
	}

	.nav-menu.active {
		max-height: 80vh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

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

	/* 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: 1000px;
		padding-top: 0.5rem;
		pointer-events: auto;
	}

	.dropdown-content {
		box-shadow: none;
		margin: 0 1rem;
		border-radius: 8px;
		background: rgba(0, 0, 0, 0.3);
		pointer-events: auto;
	}

	.dropdown-content a {
		pointer-events: auto;
		touch-action: auto;
		-webkit-tap-highlight-color: rgba(78, 205, 196, 0.2);
		color: #FFFFFF !important;
		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;
	}

	/* 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);
	}

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

	.bubble-title {
		font-size: 3rem;
	}

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

	.bubble-message {
		padding: 6rem 2rem 3rem;
	}

	.bubble-footer {
		min-height: 400px;
	}
}