:root {
	--color-background: hsl(0, 0%, 100%);
	--color-foreground: hsl(0, 0%, 10%);
	--color-primary: hsl(352, 76%, 45%);
	--color-primary-foreground: hsl(0, 0%, 100%);
	--color-card: hsl(0, 0%, 99%);
	--color-card-foreground: hsl(0, 0%, 10%);
	--color-secondary: hsl(0, 0%, 96%);
	--color-secondary-foreground: hsl(0, 0%, 15%);
	--color-muted: hsl(0, 0%, 95%);
	--color-muted-foreground: hsl(0, 0%, 45%);
	--color-accent: hsl(352, 20%, 96%);
	--color-accent-foreground: hsl(352, 76%, 40%);
	--color-border: hsl(0, 0%, 90%);
	--color-input: hsl(0, 0%, 90%);
	--color-ring: hsl(352, 76%, 45%);
	--color-hero-overlay: hsla(0, 0%, 0%, 0.5);
	--radius: 0.5rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: var(--color-background);
	color: var(--color-foreground);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-foreground);
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.container-wide {
	max-width: 1152px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: hsla(0, 0%, 100%, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--color-border);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.logo-link {
	display: flex;
	align-items: center;
}

.logo {
	height: 3rem;
	width: auto;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-muted-foreground);
	transition: color 0.2s;
}

.nav-link:hover {
	color: var(--color-foreground);
}

.nav-link-cta {
	font-size: 0.875rem;
	font-weight: 500;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 0.625rem 1.25rem;
	border-radius: var(--radius);
	transition: background-color 0.2s;
}

.nav-link-cta:hover {
	background-color: hsl(352, 76%, 40%);
}

.nav-mobile-cta {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
}

.hero {
	position: relative;
	height: 85vh;
	min-height: 600px;
	overflow: hidden;
	padding-top: 5rem;
}

.hero-carousel {
	position: absolute;
	inset: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		hsla(0, 0%, 0%, 0.3) 0%,
		hsla(0, 0%, 0%, 0.5) 100%
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	align-items: center;
}

.hero-text {
	max-width: 42rem;
	animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-primary-foreground);
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-description {
	font-size: 1.125rem;
	color: hsla(0, 0%, 100%, 0.9);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: var(--radius);
	font-weight: 500;
	transition: all 0.2s;
	text-align: center;
}

.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
}

.btn-primary:hover {
	background-color: hsl(352, 76%, 40%);
}

.btn-secondary {
	background-color: hsla(0, 0%, 100%, 0.1);
	backdrop-filter: blur(8px);
	color: var(--color-primary-foreground);
	border: 1px solid hsla(0, 0%, 100%, 0.3);
}

.btn-secondary:hover {
	background-color: hsla(0, 0%, 100%, 0.2);
}

.carousel-indicators {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 0.5rem;
}

.indicator {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background-color: hsla(0, 0%, 100%, 0.5);
	transition: all 0.3s;
}

.indicator:hover {
	background-color: hsla(0, 0%, 100%, 0.7);
}

.indicator.active {
	width: 2rem;
	background-color: var(--color-primary-foreground);
}

.section {
	padding: 2.5rem 0;
}

.section-bg-white {
	background-color: var(--color-background);
}

.section-bg-gray {
	background-color: var(--color-secondary);
}

.section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-divider {
	width: 4rem;
	height: 0.25rem;
	background-color: var(--color-primary);
	margin: 0 auto 1.5rem;
}

.section-description {
	font-size: 1.125rem;
	color: var(--color-muted-foreground);
	max-width: 42rem;
	margin: 0 auto;
	line-height: 1.6;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 1.5rem;
	border-radius: var(--radius);
	background-color: var(--color-card);
	border: 1px solid var(--color-border);
	transition: all 0.3s;
}

.feature-card:hover {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 9999px;
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
	margin-bottom: 1.25rem;
}

.feature-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.feature-description {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	line-height: 1.5;
}

.events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.event-card {
	display: flex;
	flex-direction: column;
	background-color: var(--color-background);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	transition: all 0.3s;
	overflow: hidden;
}

.event-card:hover {
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.event-card-image {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background-color: var(--color-muted);
	display: flex;
	align-items: center;
	justify-content: center;
}

.event-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.event-card:hover .event-card-image img {
	transform: scale(1.05);
}

.event-card-content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 1rem 1.25rem;
}

.event-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	transition: color 0.2s;
}

.event-card:hover .event-title {
	color: var(--color-primary);
}

.event-date {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	margin-bottom: 0.125rem;
}

.event-location {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
}

.event-icon {
	color: var(--color-muted-foreground);
	transition: color 0.2s;
	flex-shrink: 0;
}

.event-card:hover .event-icon {
	color: var(--color-primary);
}

.gallery-footer {
	text-align: center;
}

.gallery-footer-text {
	color: var(--color-muted-foreground);
	margin-bottom: 1rem;
}

.gallery-footer-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-primary);
	font-weight: 500;
}

.gallery-footer-link:hover {
	text-decoration: underline;
}

.testimonials-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.testimonials-carousel {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.testimonials-track {
	display: flex;
	gap: 2rem;
	transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.testimonials-track.fade-transition {
	opacity: 0;
}

.carousel-nav {
	display: none;
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	cursor: pointer;
	transition: all 0.2s;
	align-items: center;
	justify-content: center;
}

.carousel-nav:hover {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}

.carousel-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.carousel-nav:disabled:hover {
	background-color: var(--color-background);
	color: var(--color-foreground);
	border-color: var(--color-border);
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 3rem;
}

.carousel-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: var(--color-border);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.carousel-dot:hover {
	background-color: var(--color-muted-foreground);
}

.carousel-dot.active {
	width: 2rem;
	border-radius: 0.25rem;
	background-color: var(--color-primary);
}

.testimonial-card {
	position: relative;
	padding: 2rem;
	background-color: var(--color-card);
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
	flex: 0 0 100%;
	min-width: 0;
}

.quote-icon {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: var(--color-accent-foreground);
	opacity: 0.3;
}

.testimonial-quote {
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	margin-top: 1.5rem;
}

.author-name {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.author-role {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
}

.client-logos {
	border-top: 1px solid var(--color-border);
	padding-top: 3rem;
}

.client-logos-label {
	text-align: center;
	color: var(--color-muted-foreground);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 2rem;
}

.logos-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

.logo-item {
	color: hsla(0, 0%, 45%, 0.6);
	font-weight: 600;
	font-size: 1.125rem;
	transition: color 0.2s;
}

.logo-item:hover {
	color: var(--color-muted-foreground);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-info-card {
	background-color: var(--color-background);
	padding: 1.5rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.contact-info-content {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-info-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background-color: var(--color-accent);
	color: var(--color-accent-foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-label {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	margin-bottom: 0.25rem;
}

.contact-info-value {
	font-weight: 600;
	color: var(--color-foreground);
	transition: color 0.2s;
}

.contact-info-value:hover {
	color: var(--color-primary);
}

.contact-info-note {
	font-size: 0.875rem;
	color: var(--color-muted-foreground);
	line-height: 1.5;
}

.contact-form-container {
	background-color: var(--color-background);
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-border);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--color-foreground);
}

.form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--color-input);
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.2s;
}

.form-input:focus {
	outline: none;
	border-color: var(--color-ring);
	box-shadow: 0 0 0 2px hsla(352, 76%, 45%, 0.1);
}

.form-textarea {
	resize: none;
}

.btn-form {
	width: 100%;
}

.footer {
	background-color: var(--color-foreground);
	color: var(--color-background);
	padding: 2rem 0;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.footer-text {
	font-size: 0.875rem;
	color: hsla(0, 0%, 100%, 0.7);
}

.footer-links {
	display: flex;
	gap: 1.5rem;
}

.footer-link {
	font-size: 0.875rem;
	color: hsla(0, 0%, 100%, 0.7);
	transition: color 0.2s;
}

.footer-link:hover {
	color: var(--color-background);
}

@media (min-width: 768px) {
	.logo {
		height: 3.5rem;
	}

	.nav-desktop {
		display: flex;
	}

	.nav-mobile-cta {
		display: none;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-description {
		font-size: 1.25rem;
	}

	.hero-buttons {
		flex-direction: row;
	}

	.section {
		padding: 3.5rem 0;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.events-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.carousel-nav {
		display: flex;
	}

	.testimonial-card {
		flex: 0 0 calc(50% - 1rem);
	}

	.contact-grid {
		grid-template-columns: 1fr 2fr;
	}

	.form-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.btn-form {
		width: auto;
	}

	.footer-content {
		flex-direction: row;
		justify-content: space-between;
	}

	.logos-container {
		gap: 3rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3.75rem;
	}

	.features-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Events Page Styles */
.events-page {
	padding: 6rem 1.5rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.events-header {
	text-align: center;
	margin-bottom: 3rem;
}

.events-header h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--color-foreground);
}

.events-header p {
	font-size: 1.1rem;
	color: #475569;
	max-width: 600px;
	margin: 0 auto;
}

.events-section {
	margin-bottom: 4rem;
}

.events-section-title {
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 2rem;
	color: var(--color-foreground);
	border-bottom: 2px solid var(--color-border);
	padding-bottom: 0.5rem;
}

.events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.event-tile {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}

.event-tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.event-tile-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	background: linear-gradient(135deg, #64748b 0%, #475569 100%);
	display: block;
	min-height: 200px;
	max-height: 250px;
}

.event-tile-image.placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: white;
}

.event-tile-content {
	padding: 1.25rem;
}

.event-tile-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--color-foreground);
}

.event-tile-meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 0.9rem;
	color: #64748b;
}

.event-tile-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.event-tile-location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.event-tile-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.75rem;
	background: #fef3c7;
	color: #92400e;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 0.5rem;
}

.archive-section {
	margin-top: 3rem;
}

.archive-list {
	display: none;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.archive-list.show {
	display: grid;
}

.archive-item {
	padding: 1rem;
	background: white;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	text-decoration: none;
	color: inherit;
	transition: background 0.2s, border-color 0.2s;
}

.archive-item:hover {
	background: #f9fafb;
	border-color: var(--color-primary);
}

.archive-item-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--color-foreground);
}

.archive-item-date {
	font-size: 0.85rem;
	color: #64748b;
}

.show-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: white;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	margin-top: 1rem;
}

.show-more-btn:hover {
	background: var(--color-primary);
	color: white;
}

.show-more-btn svg {
	transition: transform 0.2s;
}

.show-more-btn.expanded svg {
	transform: rotate(180deg);
}

@media (max-width: 768px) {
	.events-page {
		padding: 5rem 1rem 3rem;
	}
	
	.events-header h1 {
		font-size: 2rem;
	}
	
	.events-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.archive-list {
		grid-template-columns: 1fr;
	}
}

/* Privacy Page Styles */
.privacy-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 6rem 1.5rem 4rem;
	line-height: 1.8;
}

.privacy-content h1 {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
	color: var(--color-foreground);
}

.privacy-content p {
	margin-bottom: 1.5rem;
	color: var(--color-foreground);
}

.privacy-content h2 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--color-foreground);
}

.privacy-content ul {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.privacy-content li {
	margin-bottom: 0.5rem;
}
