/* ============================================
   domain.com - Modern Design 2024
   Elegant, Stylish, Glassmorphism & Parallax
   ============================================ */

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

:root {
	/* Современная цветовая палитра 2024-2025 */
	--primary-color: #1a1a2e;
	--secondary-color: #ff6b9d;
	--accent-color: #a8e6cf;
	--tertiary-color: #c7ecee;
	--text-dark: #1a1a2e;
	--text-light: #6b7280;
	--text-lighter: #9ca3af;
	--bg-light: #fafafa;
	--bg-white: #ffffff;
	--bg-glass: rgba(255, 255, 255, 0.15);
	--bg-glass-strong: rgba(255, 255, 255, 0.25);
	--border-glass: rgba(255, 255, 255, 0.3);
	
	/* Современные тени */
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.16);
	--shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
	
	/* Градиенты */
	--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-soft: linear-gradient(135deg, rgba(167, 230, 207, 0.8) 0%, rgba(199, 236, 238, 0.8) 100%);
	--gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(102, 123, 234, 0.5) 50%, rgba(118, 75, 162, 0.6) 100%);
	
	--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.2s ease;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.7;
	color: var(--text-dark);
	background-color: var(--bg-white);
	font-size: 16px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Data Collection Notice */
.data-notice {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(26, 26, 46, 0.95);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--bg-white);
	padding: 20px;
	z-index: 10001;
	transform: translateY(-100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.data-notice.show {
	transform: translateY(0);
}

.data-notice-content {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	text-align: center;
}

.data-notice-content p {
	margin: 0;
	flex: 1;
	min-width: 250px;
	opacity: 0.95;
	font-size: 14px;
}

.data-notice-content a {
	color: var(--accent-color);
	text-decoration: underline;
	transition: var(--transition-fast);
}

.data-notice-content a:hover {
	color: var(--tertiary-color);
}

.data-notice-btn {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 107, 157, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--bg-white);
	padding: 12px 28px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 50px;
	transition: var(--transition);
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

.data-notice-btn:hover {
	background: rgba(255, 107, 157, 1);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(255, 107, 157, 0.4);
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(26, 26, 46, 0.85);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--bg-white);
	padding: 24px;
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.cookie-content p {
	margin: 0;
	flex: 1;
	min-width: 250px;
	opacity: 0.95;
}

.cookie-content a {
	color: var(--accent-color);
	text-decoration: underline;
	transition: var(--transition-fast);
}

.cookie-content a:hover {
	color: var(--tertiary-color);
}

.cookie-btn {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 107, 157, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--bg-white);
	padding: 14px 32px;
	cursor: pointer;
	font-size: 15px;
	border-radius: 50px;
	transition: var(--transition);
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

.cookie-btn:hover {
	background: rgba(255, 107, 157, 1);
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(255, 107, 157, 0.4);
}

/* Header - Glassmorphism */
.header {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	font-size: 26px;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: var(--transition);
	letter-spacing: -0.5px;
}

.logo:hover {
	transform: scale(1.05);
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 15px;
	transition: var(--transition);
	position: relative;
	padding: 8px 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-secondary);
	border-radius: 2px;
	transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover,
.nav-link.active {
	color: var(--secondary-color);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	gap: 6px;
	padding: 8px;
}

.mobile-menu-toggle span {
	width: 28px;
	height: 3px;
	background: var(--text-dark);
	border-radius: 3px;
	transition: var(--transition);
}

/* Hero Section - Modern with Parallax */
.hero-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.hero-slide.active {
	opacity: 1;
}

.hero-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.1);
	transition: transform 20s ease-out;
	will-change: transform;
}

.hero-slide.active .hero-image {
	transform: scale(1);
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-hero);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: var(--bg-white);
	z-index: 10;
	max-width: 900px;
	padding: 40px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 32px;
	box-shadow: var(--shadow-glass);
	animation: fadeInUpCentered 1s ease;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	margin-bottom: 24px;
	line-height: 1.1;
	letter-spacing: -1px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	margin-bottom: 48px;
	opacity: 0.95;
	font-weight: 400;
	letter-spacing: 0.3px;
	animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease 0.6s both;
}

/* Art Categories Accordion - Glassmorphism */
.art-categories {
	padding: 100px 0;
	background: linear-gradient(to bottom, var(--bg-light) 0%, rgba(247, 250, 252, 0.5) 100%);
	position: relative;
}

.art-categories::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
	pointer-events: none;
}

.accordion {
	max-width: 1000px;
	margin: 0 auto;
}

.accordion-item {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.5);
	margin-bottom: 20px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.accordion-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	background: rgba(255, 255, 255, 0.85);
}

.accordion-header {
	width: 100%;
	padding: 28px 32px;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
	transition: var(--transition);
	font-family: inherit;
}

.accordion-header:hover {
	color: var(--secondary-color);
}

.accordion-icon {
	font-size: 1.8rem;
	transition: var(--transition);
	font-weight: 300;
	color: var(--secondary-color);
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 107, 157, 0.1);
}

.accordion-item.active .accordion-icon {
	transform: rotate(45deg);
	background: rgba(255, 107, 157, 0.2);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 32px;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
	padding: 0 32px 32px;
}

.accordion-content p {
	margin-bottom: 20px;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
}

.accordion-link {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
}

.accordion-link:hover {
	gap: 12px;
	text-decoration: underline;
}

/* Buttons - Modern Rounded */
.btn {
	display: inline-block;
	padding: 16px 40px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	font-size: 15px;
	text-align: center;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary {
	background: var(--gradient-secondary);
	color: var(--bg-white);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: var(--bg-white);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: var(--bg-white);
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
	padding: 100px 0;
	position: relative;
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 24px;
	letter-spacing: -1px;
	line-height: 1.2;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient-secondary);
	border-radius: 4px;
}

.section-subtitle {
	text-align: center;
	color: var(--text-light);
	font-size: 1.125rem;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	line-height: 1.7;
}

.lead {
	font-size: 1.25rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 24px;
	font-weight: 400;
}

/* About Section */
.about-section {
	background: var(--bg-white);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-text p {
	margin-bottom: 24px;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 16px;
}

.about-image {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.about-image::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: var(--gradient-soft);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition);
}

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

/* Artists Section */
.artists-section {
	background: linear-gradient(to bottom, rgba(247, 250, 252, 0.5) 0%, var(--bg-light) 100%);
	position: relative;
}

.artists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.artist-card {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.artist-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.artist-image {
	width: 100%;
	height: 350px;
	overflow: hidden;
	position: relative;
}

.artist-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
	opacity: 0;
	transition: var(--transition);
}

.artist-card:hover .artist-image::after {
	opacity: 1;
}

.artist-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.artist-card:hover .artist-image img {
	transform: scale(1.1);
}

.artist-info {
	padding: 32px;
}

.artist-info h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
	color: var(--primary-color);
	font-weight: 700;
}

.artist-specialty {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 16px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.artist-bio {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 15px;
}

.artist-link {
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
}

.artist-link:hover {
	gap: 12px;
	text-decoration: underline;
}

/* Gallery Preview */
.gallery-preview-section {
	background: var(--bg-white);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.gallery-item {
	position: relative;
	height: 450px;
	border-radius: 32px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 70%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px;
	opacity: 0;
	transition: var(--transition);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

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

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

.gallery-overlay h3 {
	color: var(--bg-white);
	font-size: 1.75rem;
	margin-bottom: 12px;
	font-weight: 700;
}

.gallery-overlay p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	font-size: 15px;
}

.gallery-link {
	color: var(--bg-white);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid var(--bg-white);
	padding-bottom: 4px;
	width: fit-content;
	transition: var(--transition);
}

.gallery-link:hover {
	color: var(--accent-color);
	border-bottom-color: var(--accent-color);
}

/* Workshops Section */
.workshops-section {
	background: linear-gradient(135deg, rgba(167, 230, 207, 0.1) 0%, rgba(199, 236, 238, 0.1) 100%);
	position: relative;
}

.workshops-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.workshops-image {
	position: relative;
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.workshops-image::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 150px;
	height: 150px;
	background: var(--gradient-soft);
	border-radius: 50%;
	opacity: 0.4;
	z-index: -1;
}

.workshops-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition);
}

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

.workshops-list {
	list-style: none;
	margin: 28px 0;
}

.workshops-list li {
	padding: 14px 0;
	padding-left: 36px;
	position: relative;
	color: var(--text-light);
	font-size: 16px;
	line-height: 1.7;
}

.workshops-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--secondary-color);
	font-weight: bold;
	font-size: 18px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 107, 157, 0.1);
	border-radius: 50%;
}

/* Statistics Section */
.stats-section {
	background: var(--gradient-primary);
	color: var(--bg-white);
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 20s infinite ease-in-out;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 60px;
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 40px 20px;
	border-radius: 24px;
	transition: var(--transition);
}

.stat-item:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-number {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	margin-bottom: 16px;
	color: var(--bg-white);
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
	font-size: 1.125rem;
	opacity: 0.95;
	font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #2d3561 100%);
	color: var(--bg-white);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.newsletter-section::before {
	content: '';
	position: absolute;
	top: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
	border-radius: 50%;
}

.newsletter-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.newsletter-content .section-title {
	color: var(--bg-white);
}

.newsletter-content .section-title::after {
	background: var(--gradient-secondary);
}

.newsletter-form {
	display: flex;
	gap: 16px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.newsletter-form input {
	flex: 1;
	min-width: 280px;
	padding: 18px 24px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	font-size: 16px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--bg-white);
	transition: var(--transition);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
	flex-shrink: 0;
}

/* Page Header */
.page-header {
	background: var(--gradient-primary);
	color: var(--bg-white);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
	opacity: 0.5;
}

.page-header h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	margin-bottom: 20px;
	font-weight: 800;
	letter-spacing: -1px;
	position: relative;
	z-index: 1;
}

.page-header p {
	font-size: 1.25rem;
	opacity: 0.95;
	position: relative;
	z-index: 1;
}

/* Gallery Filters */
.gallery-filters-section {
	padding: 60px 0;
	background: var(--bg-light);
}

.gallery-filters {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 14px 28px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.8);
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-radius: 50px;
	cursor: pointer;
	font-size: 15px;
	transition: var(--transition);
	color: var(--text-dark);
	font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--gradient-secondary);
	color: var(--bg-white);
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

/* Gallery Grid Large */
.main-gallery-section {
	padding: 80px 0;
}

.gallery-grid-large {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 40px;
}

.gallery-item-large {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.gallery-item-large:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.gallery-item-large img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-item-large:hover img {
	transform: scale(1.08);
}

.gallery-info {
	padding: 32px;
}

.gallery-info h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--primary-color);
	font-weight: 700;
}

.gallery-info p {
	color: var(--text-light);
	margin-bottom: 6px;
	font-size: 15px;
}

.gallery-medium {
	font-style: italic;
	font-size: 14px;
	color: var(--text-lighter);
}

/* Current Exhibitions */
.current-exhibitions-section {
	padding: 100px 0;
	background: var(--bg-light);
}

.exhibitions-list {
	display: grid;
	gap: 50px;
	margin-top: 60px;
}

.exhibition-card {
	display: grid;
	grid-template-columns: 450px 1fr;
	gap: 50px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.exhibition-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.exhibition-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.exhibition-card:hover img {
	transform: scale(1.1);
}

.exhibition-details {
	padding: 50px;
}

.exhibition-details h3 {
	font-size: 2rem;
	margin-bottom: 16px;
	color: var(--primary-color);
	font-weight: 700;
}

.exhibition-date {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 15px;
}

.exhibition-details p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 32px;
	font-size: 16px;
}

/* Gallery Info */
.gallery-info-section {
	padding: 80px 0;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.info-card {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 50px;
	border-radius: 32px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.info-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	background: rgba(255, 255, 255, 0.85);
}

.info-card h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--primary-color);
	font-weight: 700;
}

.info-card p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
}

/* Artists Detailed */
.artists-detailed-section {
	padding: 100px 0;
	background: var(--bg-white);
}

.artists-detailed-section:nth-child(even) {
	background: linear-gradient(to bottom, rgba(247, 250, 252, 0.5) 0%, var(--bg-light) 100%);
}

.artist-profile {
	display: grid;
	grid-template-columns: 450px 1fr;
	gap: 80px;
	align-items: start;
}

.artist-profile-image {
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	position: relative;
}

.artist-profile-image::after {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 200px;
	height: 200px;
	background: var(--gradient-soft);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
}

.artist-profile-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: var(--transition);
}

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

.artist-profile-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 16px;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -1px;
}

.artist-title {
	color: var(--secondary-color);
	font-weight: 600;
	font-size: 1.125rem;
	margin-bottom: 32px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.artist-bio-full p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 16px;
}

.artist-details {
	margin: 40px 0;
	padding: 32px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 24px;
	box-shadow: var(--shadow-md);
}

.detail-item {
	margin-bottom: 16px;
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.7;
}

.detail-item strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* All Artists */
.all-artists-section {
	padding: 100px 0;
	background: var(--bg-white);
}

.artists-grid-extended {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.artist-card-small {
	text-align: center;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.artist-card-small:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.artist-card-small img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: var(--transition);
}

.artist-card-small:hover img {
	transform: scale(1.1);
}

.artist-card-small h3 {
	padding: 28px 24px 8px;
	font-size: 1.25rem;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-weight: 700;
}

.artist-card-small p {
	padding: 0 24px 28px;
	color: var(--text-light);
	font-size: 14px;
}

.artists-cta {
	text-align: center;
	margin-top: 80px;
	padding: 60px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	box-shadow: var(--shadow-md);
}

.artists-cta p {
	color: var(--text-light);
	margin-bottom: 32px;
	font-size: 1.125rem;
	line-height: 1.8;
}

/* Artist Benefits */
.artist-benefits-section {
	padding: 100px 0;
	background: linear-gradient(to bottom, rgba(247, 250, 252, 0.5) 0%, var(--bg-light) 100%);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.benefit-card {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 50px;
	border-radius: 32px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.benefit-card h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--primary-color);
	font-weight: 700;
}

.benefit-card p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
}

/* Events */
.events-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.events-timeline {
	margin-top: 60px;
	position: relative;
}

.event-item {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 50px;
	margin-bottom: 80px;
	position: relative;
}

.event-item::after {
	content: '';
	position: absolute;
	left: 90px;
	top: 120px;
	bottom: -80px;
	width: 2px;
	background: linear-gradient(to bottom, var(--secondary-color), transparent);
	opacity: 0.3;
}

.event-item:last-child::after {
	display: none;
}

.event-date {
	text-align: center;
	padding: 24px;
	background: var(--gradient-secondary);
	color: var(--bg-white);
	border-radius: 24px;
	height: fit-content;
	box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
	position: relative;
	z-index: 1;
}

.event-day {
	display: block;
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
}

.event-month {
	display: block;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 8px;
	opacity: 0.95;
}

.event-content {
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 40px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 40px;
	border-radius: 32px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.event-content:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.event-content img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: var(--shadow-md);
}

.event-details h3 {
	font-size: 2rem;
	margin-bottom: 12px;
	color: var(--primary-color);
	font-weight: 700;
}

.event-time {
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 20px;
	font-size: 15px;
}

.event-details p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 16px;
}

.event-features {
	list-style: none;
	margin: 24px 0;
}

.event-features li {
	padding: 10px 0;
	padding-left: 32px;
	position: relative;
	color: var(--text-light);
	font-size: 15px;
}

.event-features li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--secondary-color);
	font-size: 2rem;
	line-height: 1;
}

/* Workshops Schedule */
.workshops-schedule-section {
	padding: 100px 0;
	background: linear-gradient(135deg, rgba(167, 230, 207, 0.1) 0%, rgba(199, 236, 238, 0.1) 100%);
}

.workshops-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.workshop-card {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 50px;
	border-radius: 32px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.workshop-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.workshop-card h3 {
	font-size: 1.75rem;
	margin-bottom: 20px;
	color: var(--primary-color);
	font-weight: 700;
}

.workshop-day {
	color: var(--secondary-color);
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
}

.workshop-time {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 15px;
}

.workshop-card p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 24px;
	font-size: 15px;
}

.workshop-price {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--primary-color);
	margin: 32px 0;
}

/* Past Events */
.past-events-section {
	padding: 100px 0;
	background: var(--bg-white);
}

.past-events-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-top: 60px;
}

.past-event-card {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.past-event-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.past-event-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: var(--transition);
}

.past-event-card:hover img {
	transform: scale(1.1);
}

.past-event-card h3 {
	padding: 32px 32px 12px;
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: 700;
}

.past-event-date {
	padding: 0 32px;
	color: var(--secondary-color);
	font-weight: 600;
	margin-bottom: 16px;
	font-size: 14px;
}

.past-event-card p {
	padding: 0 32px 32px;
	color: var(--text-light);
	line-height: 1.8;
	font-size: 15px;
}

/* Contact Section */
.contact-section {
	padding: 100px 0;
	background: linear-gradient(to bottom, rgba(247, 250, 252, 0.5) 0%, var(--bg-light) 100%);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
}

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 50px;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -1px;
}

.contact-item {
	margin-bottom: 50px;
}

.contact-item h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--primary-color);
	font-weight: 700;
}

.contact-item p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 16px;
}

.contact-form-wrapper {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 60px;
	border-radius: 32px;
	box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h2 {
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -1px;
}

.form-group {
	margin-bottom: 28px;
}

.form-group label {
	display: block;
	margin-bottom: 10px;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	font-size: 16px;
	font-family: inherit;
	transition: var(--transition);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--secondary-color);
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.checkbox-label input {
	width: auto;
	margin-top: 4px;
}

.checkbox-label span {
	font-weight: normal;
	font-size: 14px;
	line-height: 1.6;
}

.checkbox-label a {
	color: var(--secondary-color);
	text-decoration: underline;
}

/* Map Section */
.map-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.map-placeholder {
	height: 500px;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	box-shadow: var(--shadow-md);
}

.map-placeholder p {
	color: var(--text-light);
	font-size: 1.125rem;
}

.map-note {
	margin-top: 12px;
	font-size: 16px;
}

/* Service Description Section */
.service-description-section {
	padding: 100px 0;
	background: var(--bg-white);
}

.service-description-content {
	max-width: 1200px;
	margin: 0 auto;
}

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

.service-item {
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 50px;
	border-radius: 32px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.service-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	background: rgba(255, 255, 255, 0.95);
}

.service-item h3 {
	font-size: 1.75rem;
	margin-bottom: 24px;
	color: var(--primary-color);
	font-weight: 700;
}

.service-item p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 16px;
}

/* Thank You Page */
.thankyou-section {
	padding: 150px 0;
	background: linear-gradient(135deg, rgba(167, 230, 207, 0.1) 0%, rgba(199, 236, 238, 0.1) 100%);
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.thankyou-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 80px 60px;
	border-radius: 32px;
	box-shadow: var(--shadow-xl);
}

.thankyou-icon {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--gradient-secondary);
	color: var(--bg-white);
	font-size: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
	font-weight: 300;
	box-shadow: 0 8px 32px rgba(255, 107, 157, 0.3);
	animation: scaleIn 0.6s ease;
}

.thankyou-content h1 {
	font-size: 3rem;
	margin-bottom: 24px;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -1px;
}

.thankyou-content .lead {
	font-size: 1.375rem;
	margin-bottom: 24px;
}

.thankyou-content p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 50px;
	font-size: 16px;
}

.thankyou-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Policy Section */
.policy-section {
	padding: 80px 0;
	background: var(--bg-white);
	min-height: 70vh;
}

.policy-content {
	max-width: 1000px;
	margin: 0 auto;
	line-height: 1.8;
}

.policy-content h1 {
	font-size: 3rem;
	margin-bottom: 40px;
	color: var(--primary-color);
	font-weight: 800;
	letter-spacing: -1px;
}

.policy-content h3 {
	font-size: 1.75rem;
	margin: 50px 0 24px;
	color: var(--primary-color);
	font-weight: 700;
}

.policy-content h4 {
	font-size: 1.25rem;
	margin: 32px 0 16px;
	color: var(--primary-color);
	font-weight: 600;
}

.policy-content p {
	color: var(--text-light);
	margin-bottom: 24px;
	font-size: 16px;
}

.policy-content ul {
	margin: 24px 0;
	padding-left: 32px;
}

.policy-content li {
	color: var(--text-light);
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 1.8;
}

.policy-content a {
	color: var(--secondary-color);
	text-decoration: underline;
	transition: var(--transition-fast);
}

.policy-content a:hover {
	color: var(--primary-color);
}

/* Footer */
.footer {
	background: linear-gradient(135deg, var(--primary-color) 0%, #2d3561 100%);
	color: var(--bg-white);
	padding: 80px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
}

.footer-section h3 {
	font-size: 1.5rem;
	margin-bottom: 28px;
	color: var(--bg-white);
	font-weight: 700;
}

.footer-section p {
	opacity: 0.85;
	line-height: 1.8;
	margin-bottom: 12px;
	font-size: 15px;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	transition: var(--transition);
	font-size: 15px;
}

.footer-links a:hover {
	opacity: 1;
	color: var(--accent-color);
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.8;
	position: relative;
	z-index: 1;
	font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUpCentered {
	from {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 40px));
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(30px, -30px) rotate(120deg);
	}
	66% {
		transform: translate(-20px, 20px) rotate(240deg);
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.about-content,
	.workshops-content,
	.contact-wrapper,
	.artist-profile {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	
	.event-content {
		grid-template-columns: 1fr;
	}
	
	.exhibition-card {
		grid-template-columns: 1fr;
	}
	
	.artist-profile-image,
	.event-date {
		max-width: 100%;
		margin: 0 auto;
	}
	
	.hero-content {
		padding: 32px;
	}
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}
	
	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		backdrop-filter: blur(20px) saturate(180%);
		-webkit-backdrop-filter: blur(20px) saturate(180%);
		background: rgba(255, 255, 255, 0.95);
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
		box-shadow: var(--shadow-lg);
		padding: 24px;
	}
	
	.nav.active {
		display: block;
	}
	
	.nav-list {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
	
	.stat-number {
		font-size: 3rem;
	}
	
	.event-item {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.event-item::after {
		display: none;
	}
	
	.event-date {
		width: 100%;
		max-width: 250px;
		margin: 0 auto 30px;
	}
	
	.newsletter-form {
		flex-direction: column;
	}
	
	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
	}
	
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}
	
	.cookie-btn {
		width: 100%;
	}
	
	section {
		padding: 60px 0;
	}
	
	.contact-form-wrapper {
		padding: 40px 24px;
	}
	
	.thankyou-content {
		padding: 50px 32px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.hero-buttons .btn {
		width: 100%;
	}
	
	.btn {
		width: 100%;
	}
	
	section {
		padding: 50px 0;
	}
	
	.page-header {
		padding: 80px 0 60px;
	}
	
	.page-header h1 {
		font-size: 2rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.gallery-grid,
	.artists-grid,
	.gallery-grid-large {
		grid-template-columns: 1fr;
	}
	
	.gallery-item {
		height: 350px;
	}
	
	.accordion-header {
		padding: 20px 24px;
		font-size: 1.1rem;
	}
}

/* Utility Classes */
.hidden {
	display: none;
}

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

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}