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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2C3E50;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2C3E50 0%, #8B6F47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #8B6F47 0%, #E8DCC4 100%);
  border-radius: 3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #555;
}

strong {
  color: #2C3E50;
  font-weight: 600;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8DCC4 0%, #8B6F47 100%);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #8B6F47 0%, #2C3E50 100%);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C3E50 0%, #1a252f 100%);
  z-index: 1200;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E8DCC4;
  color: #E8DCC4;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #E8DCC4;
  color: #2C3E50;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #8B6F47 0%, #E8DCC4 100%);
  color: #2C3E50;
  transform: translateX(8px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #8B6F47 0%, #A68B5B 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

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

.btn-secondary:hover {
  background: #E8DCC4;
  color: #2C3E50;
  transform: translateY(-2px);
}

.btn-link {
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(139, 111, 71, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C3E50" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 220, 196, 0.1) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #fff;
}

.hero-subtitle {
  font-size: 20px;
  color: #E8DCC4;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(139, 111, 71, 0.9) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  color: #fff;
}

.breadcrumb {
  font-size: 14px;
  color: #E8DCC4;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #E8DCC4;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-intro {
  font-size: 18px;
  color: #E8DCC4;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.section-intro {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B6F47 0%, #E8DCC4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.15);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Grid Layouts with Flexbox */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.stat-card {
  background: linear-gradient(135deg, #8B6F47 0%, #A68B5B 100%);
  color: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.3);
}

.stat-card h3 {
  font-size: 48px;
  color: #E8DCC4;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

.exhibition-grid,
.exhibitions-grid,
.services-grid,
.card-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.exhibition-card,
.service-card,
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exhibition-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.15);
}

.exhibition-date,
.exhibition-meta {
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #8B6F47;
  margin-top: auto;
}

.service-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
}

.testimonial-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #8B6F47;
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.8;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  color: #2C3E50;
  font-size: 16px;
}

.testimonial-author span {
  color: #8B6F47;
  font-size: 14px;
}

/* Featured Exhibition */
.exhibition-featured {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(232, 220, 196, 0.2) 100%);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  border-left: 5px solid #8B6F47;
}

/* Info Grid */
.info-grid,
.highlights-grid,
.programs-grid,
.contact-cards,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.info-card,
.artwork-card,
.program-card,
.contact-card,
.action-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover,
.artwork-card:hover,
.program-card:hover,
.contact-card:hover,
.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.12);
}

.contact-card img,
.action-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.milestone-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(232, 220, 196, 0.1) 100%);
  border-radius: 12px;
  position: relative;
}

.milestone-item h3 {
  font-size: 36px;
  color: #8B6F47;
  margin-bottom: 12px;
}

/* Team Grid */
.team-grid,
.instructors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.team-member,
.instructor-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 260px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover,
.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.12);
}

.role {
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

/* Mission Vision */
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.mission-vision-grid .card {
  flex: 1 1 400px;
}

.values {
  background: linear-gradient(135deg, rgba(232, 220, 196, 0.2) 0%, rgba(139, 111, 71, 0.1) 100%);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.values li {
  padding-left: 32px;
  position: relative;
  color: #555;
}

.values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B6F47;
  font-weight: 700;
  font-size: 18px;
}

/* CTA Sections */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C3E50 0%, #8B6F47 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 220, 196, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-content h2::after {
  background: linear-gradient(90deg, #E8DCC4 0%, transparent 100%);
  left: 50%;
  transform: translateX(-50%);
}

.cta-content p {
  color: #E8DCC4;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Forms */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  background: linear-gradient(135deg, rgba(232, 220, 196, 0.2) 0%, rgba(139, 111, 71, 0.1) 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 32px;
  border-left: 4px solid #8B6F47;
}

.form-fields-display {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 14px;
}

.field-placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 16px;
  border-radius: 8px;
  border: 2px solid #E8DCC4;
  color: #999;
  font-style: italic;
}

.email-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #E8DCC4;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.email-input:focus {
  outline: none;
  border-color: #8B6F47;
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-action {
  margin-top: 32px;
}

.privacy-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 16px;
}

.privacy-note a {
  color: #8B6F47;
  text-decoration: underline;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(232, 220, 196, 0.2) 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  margin-top: 40px;
}

.form-group {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #8B6F47;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.1);
}

.faq-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #666;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

.faq-cta a {
  color: #8B6F47;
  font-weight: 600;
  text-decoration: underline;
}

/* Calendar Grid */
.calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.calendar-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #8B6F47;
  transition: all 0.3s ease;
}

.calendar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.12);
}

.calendar-item h3 {
  color: #8B6F47;
  font-size: 28px;
  margin-bottom: 16px;
}

/* Schedule Grid */
.schedule-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.schedule-item {
  background: linear-gradient(135deg, rgba(232, 220, 196, 0.2) 0%, rgba(139, 111, 71, 0.1) 100%);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 250px;
  border-left: 3px solid #8B6F47;
}

.schedule-item h4 {
  color: #2C3E50;
  margin-bottom: 8px;
}

.schedule-item p {
  color: #8B6F47;
  font-weight: 600;
  margin: 0;
}

/* Workshop Features */
.workshop-features,
.program-details,
.benefits-list {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.workshop-features ul,
.program-details ul,
.benefits-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.workshop-features li,
.program-details li,
.benefits-list li {
  padding-left: 28px;
  position: relative;
  color: #555;
}

.workshop-features li::before,
.program-details li::before,
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B6F47;
  font-weight: 700;
}

.pricing {
  text-align: center;
  margin: 32px 0;
}

/* Service Detail */
.service-detail {
  padding: 60px 20px;
}

.service-detail.alt {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.detail-content {
  max-width: 800px;
  margin: 0 auto;
}

.features-list {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-info {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(232, 220, 196, 0.2) 100%);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin: 24px 0;
  font-size: 18px;
}

/* Registration Steps */
.registration-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.step {
  flex: 1 1 250px;
  text-align: center;
  position: relative;
}

.step h3 {
  background: linear-gradient(135deg, #8B6F47 0%, #A68B5B 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
}

.policies {
  background: linear-gradient(135deg, rgba(232, 220, 196, 0.2) 0%, rgba(139, 111, 71, 0.1) 100%);
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 4px solid #8B6F47;
}

/* Gallery Spaces */
.spaces-grid,
.events-grid,
.explore-grid,
.link-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.space-card,
.event-category,
.explore-card,
.link-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.space-card:hover,
.event-category:hover,
.explore-card:hover,
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.12);
}

/* Virtual Tour */
.virtual-tour {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(139, 111, 71, 0.05) 100%);
  padding: 60px 20px;
  text-align: center;
}

.tour-cta {
  margin-top: 32px;
}

.alt-option {
  margin-top: 16px;
  color: #666;
}

.alt-option a {
  color: #8B6F47;
  font-weight: 600;
  text-decoration: underline;
}

/* Highlights Categories */
.highlights-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.category-section {
  flex: 1 1 300px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Showcase Highlights */
.showcase-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.highlight-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #8B6F47;
}

/* Behind the Scenes */
.bts-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.bts-item {
  flex: 1 1 300px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #8B6F47 100%);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8DCC4 0%, #fff 100%);
  color: #8B6F47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(232, 220, 196, 0.3);
}

.thank-you-hero h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
}

.confirmation-message {
  font-size: 18px;
  color: #E8DCC4;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
}

.steps-content,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step-item,
.step-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 300px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-item:hover,
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139, 111, 71, 0.12);
}

/* Social Connect */
.social-connect {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-link {
  padding: 12px 28px;
  background: linear-gradient(135deg, #8B6F47 0%, #A68B5B 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.newsletter-reminder {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  max-width: 600px;
  margin: 40px auto 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Policy Content */
.policy-content,
.gdpr-content,
.cookie-content,
.terms-content {
  padding: 60px 20px;
  background: #fff;
}

.last-updated,
.effective-date {
  color: #8B6F47;
  font-weight: 600;
  font-size: 14px;
}

/* Footer */
footer {
  background: linear-gradient(180deg, #2C3E50 0%, #1a252f 100%);
  color: #E8DCC4;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #E8DCC4;
  font-size: 14px;
}

footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #E8DCC4;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 20px;
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 25px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact p {
  color: #E8DCC4;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(232, 220, 196, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #E8DCC4;
  font-size: 12px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.copyright {
  color: #E8DCC4;
  font-size: 12px;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #E8DCC4;
  font-size: 14px;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #f0f0f0;
  color: #2C3E50;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.cookie-category {
  padding: 20px;
  border: 2px solid #E8DCC4;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cookie-toggle {
  flex-shrink: 0;
  width: 50px;
  height: 28px;
  background: #ccc;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #8B6F47;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(22px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-info h4 {
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category-info p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .stats-grid {
    justify-content: center;
  }
  
  .stat-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .exhibition-grid,
  .exhibitions-grid,
  .services-grid,
  .testimonials-grid,
  .info-grid,
  .team-grid,
  .instructors-grid,
  .calendar-grid,
  .schedule-grid,
  .registration-steps,
  .spaces-grid,
  .events-grid,
  .explore-grid,
  .link-cards {
    flex-direction: column;
  }
  
  .exhibition-card,
  .service-card,
  .testimonial-card,
  .info-card,
  .team-member,
  .instructor-card,
  .calendar-item,
  .space-card,
  .event-category,
  .explore-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  .mission-vision-grid {
    flex-direction: column;
  }
  
  .milestones {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header-cta {
    gap: 8px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .main-nav {
    gap: 16px;
  }
  
  .main-nav a {
    font-size: 13px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  header,
  footer,
  .cookie-consent,
  .cookie-modal,
  .btn,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}