/* =================================================================
   GALERI SENI SMARG - MINIMALIST STYLE CSS
   Clean, minimal design with generous white space
   ================================================================= */

/* CSS RESET & BASE */
* {
  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-color: #FFFFFF;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  color: #C9A961;
}

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

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER - MINIMALIST & CLEAN */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #ECF0F1;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

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

.logo {
  height: 48px;
  width: auto;
}

/* NAVIGATION - MINIMAL */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  border-bottom-color: #C9A961;
  color: #2C3E50;
}

/* HEADER CTA BUTTONS */
.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* BUTTONS - MINIMALIST STYLE */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid #2C3E50;
  background: #FFFFFF;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus {
  background: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
}

.btn-primary {
  background: #2C3E50;
  color: #FFFFFF;
  border-color: #2C3E50;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #1a252f;
  border-color: #1a252f;
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #2C3E50;
  color: #FFFFFF;
}

.btn-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #2C3E50;
  border-bottom: 1px solid #2C3E50;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover,
.btn-link:focus {
  color: #C9A961;
  border-bottom-color: #C9A961;
}

/* MOBILE MENU - MINIMALIST SLIDE-IN */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 150;
  background: #FFFFFF;
  border: 1px solid #2C3E50;
  color: #2C3E50;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2C3E50;
  color: #FFFFFF;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 200;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(44, 62, 80, 0.1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid #2C3E50;
  color: #2C3E50;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #2C3E50;
  color: #FFFFFF;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 96px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid #ECF0F1;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  padding-left: 16px;
  color: #C9A961;
}

/* HERO SECTION - MINIMAL & SPACIOUS */
.hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
  text-align: center;
}

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

.hero h1 {
  font-size: 64px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-tagline {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #C9A961;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #2C3E50;
  opacity: 0.8;
}

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

/* PAGE HERO - MINIMAL */
.page-hero {
  padding: 80px 0 40px;
  background: #ECF0F1;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: #2C3E50;
  opacity: 0.7;
}

/* BREADCRUMB - MINIMAL */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #2C3E50;
  opacity: 0.6;
}

.breadcrumb a:hover {
  opacity: 1;
}

/* SECTIONS - GENEROUS SPACING */
section {
  padding: 80px 0;
  margin-bottom: 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #2C3E50;
  opacity: 0.8;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

/* STATS GRID - MINIMAL */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

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

.stat-item p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* CARDS - MINIMAL & CLEAN */
.exhibition-grid,
.services-grid,
.workshop-grid,
.event-grid,
.collection-grid,
.artist-grid,
.program-grid,
.dept-grid,
.space-grid,
.archive-grid,
.event-docs-grid,
.facility-grid,
.value-item {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 48px;
}

.exhibition-card,
.service-card,
.workshop-card,
.event-card,
.collection-item,
.artist-card,
.program-card,
.dept-card,
.space-card,
.archive-card,
.event-doc-card,
.facility-item,
.value-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #FFFFFF;
  border: 1px solid #ECF0F1;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.exhibition-card:hover,
.service-card:hover,
.workshop-card:hover,
.event-card:hover,
.collection-item:hover,
.artist-card:hover,
.program-card:hover,
.dept-card:hover,
.space-card:hover,
.archive-card:hover,
.event-doc-card:hover,
.facility-item:hover,
.value-item:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.05);
  transform: translateY(-4px);
}

.exhibition-card h3,
.service-card h3,
.workshop-card h3,
.event-card h3,
.collection-item h3,
.artist-card h3,
.program-card h3,
.dept-card h3,
.space-card h3,
.archive-card h3,
.event-doc-card h3 {
  margin-bottom: 16px;
}

.exhibition-card .artist,
.workshop-card .instructor,
.archive-card .artist {
  font-size: 14px;
  color: #C9A961;
  margin-bottom: 8px;
  font-style: italic;
}

.exhibition-card .dates,
.exhibition-card .date,
.workshop-card .datetime,
.event-card .date,
.archive-card .date {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.6;
  margin-bottom: 16px;
}

.exhibition-card .status,
.workshop-card .level,
.event-card .type {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: #ECF0F1;
  color: #2C3E50;
  margin: 16px 0;
}

.service-card img,
.facility-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.service-card .price,
.workshop-card .price,
.event-card .admission,
.program-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #C9A961;
  margin: 16px 0;
}

.workshop-card .slots,
.program-card .age {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.7;
  margin-bottom: 16px;
}

.collection-item .count,
.archive-card .count {
  font-size: 14px;
  font-weight: 700;
  color: #C9A961;
  margin-bottom: 8px;
}

.artist-card .origin {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.6;
  margin-bottom: 16px;
}

.dept-card .email {
  font-size: 14px;
  color: #C9A961;
  margin-bottom: 8px;
}

/* FEATURES GRID - MINIMAL */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-bottom: 48px;
}

.feature-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 0;
}

.feature-item img {
  width: 64px;
  height: 64px;
  opacity: 0.8;
}

.feature-item h3 {
  margin-bottom: 8px;
}

.feature-item p {
  margin: 0;
  opacity: 0.8;
}

/* TEXT-IMAGE SECTIONS - MINIMAL */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.text-image-section .text-content {
  flex: 1 1 50%;
  min-width: 280px;
}

.text-image-section .image-content {
  flex: 1 1 40%;
  min-width: 280px;
}

/* TESTIMONIALS - MINIMAL CARDS */
.testimonials {
  background: #ECF0F1;
  padding: 80px 0;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 0;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 320px;
  background: #FFFFFF;
  padding: 40px;
  border: 1px solid #ECF0F1;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.testimonial-card:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.05);
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #2C3E50;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 4px;
}

.testimonial-card .position {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.6;
  margin-bottom: 16px;
}

.testimonial-card .rating {
  color: #C9A961;
  font-size: 18px;
  letter-spacing: 2px;
}

/* VISION MISSION - TWO COLUMN */
.vm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}

.vm-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid #ECF0F1;
}

.vm-item h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

.vm-item ul {
  list-style: none;
  padding-left: 0;
}

.vm-item li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.vm-item li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: #C9A961;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  border: 1px solid #ECF0F1;
}

.value-item h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

/* ACHIEVEMENTS LIST */
.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.achievement-item {
  display: flex;
  gap: 32px;
  padding: 32px;
  background: #FFFFFF;
  border-left: 4px solid #C9A961;
  align-items: flex-start;
}

.achievement-item .year {
  font-size: 24px;
  font-weight: 700;
  color: #C9A961;
  min-width: 80px;
}

.achievement-item h4 {
  margin-bottom: 8px;
}

/* INFO GRID */
.info-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.info-item,
.contact-card,
.contact-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: #ECF0F1;
}
.contact-strip .contact-item {
  background: transparent !important;
}
.contact-card img,
.contact-item img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  opacity: 0.8;
}

/* PROCESS STEPS - HORIZONTAL */
.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 48px;
}

.step,
.step-item {
  flex: 1 1 150px;
  max-width: 200px;
  text-align: center;
}

.step-number {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #2C3E50;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step h3,
.step p,
.step-item p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* SERVICE DETAILS - FULL WIDTH CARDS */
.service-details {
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  background: #FFFFFF;
  border: 1px solid #ECF0F1;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.05);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.service-header img {
  width: 48px;
  height: 48px;
}

.service-header h3 {
  flex: 1 1 60%;
  margin-bottom: 0;
}

.service-header .price {
  font-size: 24px;
  font-weight: 700;
  color: #C9A961;
}

.service-item .description {
  margin-bottom: 24px;
}

.service-item .features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-item .features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.service-item .features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A961;
}

.service-item .ideal-for,
.service-item .booking-note,
.service-item .schedule {
  font-size: 14px;
  padding: 16px;
  background: #ECF0F1;
  margin-bottom: 16px;
}

/* CTA SECTION - CENTERED */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: #ECF0F1;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.8;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-content .hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-content .hours img {
  width: 24px;
  height: 24px;
  display: inline-block;
}

/* CONTACT STRIP */
.contact-strip {
  background: #2C3E50;
  color: #FFFFFF;
  padding: 60px 0;
}

.contact-strip .container {
  color: #FFFFFF;
}

.contact-strip h2,
.contact-strip h3,
.contact-strip h4,
.contact-strip p,
.contact-strip strong {
  color: #FFFFFF;
}

/* POLICY CONTENT */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ECF0F1;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.policy-section h3 {
  color: #C9A961;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  font-size: 14px;
  color: #2C3E50;
  opacity: 0.6;
}

/* GUIDELINES LIST */
.guidelines-list {
  list-style: none;
  padding-left: 0;
}

.guidelines-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.guidelines-list li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-size: 24px;
  line-height: 1;
}

.sharing-note,
.policy-note,
.note {
  font-size: 14px;
  padding: 16px;
  background: #ECF0F1;
  margin-top: 24px;
  border-left: 4px solid #C9A961;
}

/* TIPS LIST */
.tips-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto 32px;
}

.tips-list li {
  padding: 16px;
  padding-left: 48px;
  position: relative;
  margin-bottom: 16px;
  background: #ECF0F1;
}

.tips-list li:before {
  content: '→';
  position: absolute;
  left: 16px;
  color: #C9A961;
  font-size: 20px;
}

.duration-note,
.assistance-note,
.parking-info,
.closed-note {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  opacity: 0.7;
}

/* ACCESSIBILITY GRID */
.accessibility-grid,
.access-item {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.access-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.access-item img {
  width: 48px;
  height: 48px;
  opacity: 0.8;
}

/* MAP SECTION */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: #ECF0F1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #ECF0F1 0%, #FFFFFF 100%);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #C9A961;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
}

.confirmation-message {
  padding: 60px 0;
  text-align: center;
}

.next-steps {
  background: #ECF0F1;
  padding: 80px 0;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 0;
}

.link-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  padding: 32px;
  background: #FFFFFF;
  border: 1px solid #ECF0F1;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.05);
  transform: translateY(-4px);
  color: #2C3E50;
}

/* FOOTER - MINIMAL */
footer {
  background: #2C3E50;
  color: #FFFFFF;
  padding: 60px 0 24px;
}

footer h4 {
  color: #C9A961;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p,
footer a {
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.8;
}

footer a:hover,
footer a:focus {
  opacity: 1;
  color: #C9A961;
}

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

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom p {
  font-size: 12px;
  margin: 0;
  opacity: 0.6;
}

/* COOKIE CONSENT BANNER - MINIMAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3E50;
  color: #FFFFFF;
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 16px rgba(44, 62, 80, 0.2);
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1 1 60%;
  margin: 0;
  font-size: 14px;
  color: #FFFFFF;
}

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

.cookie-banner .btn {
  padding: 8px 24px;
  font-size: 12px;
}

/* COOKIE MODAL - MINIMAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid #2C3E50;
  color: #2C3E50;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 16px;
  border: 1px solid #ECF0F1;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  display: inline-block;
  width: 48px;
  height: 24px;
  background: #ECF0F1;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #C9A961;
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
  transform: translateX(24px);
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Header adjustments */
  header {
    padding: 16px 0;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  /* Section padding */
  section {
    padding: 48px 0;
  }

  .hero,
  .page-hero {
    padding: 60px 0 40px;
  }

  /* Stats grid - vertical */
  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* Cards - full width */
  .exhibition-card,
  .service-card,
  .workshop-card,
  .event-card,
  .collection-item,
  .artist-card,
  .program-card,
  .dept-card,
  .space-card,
  .archive-card,
  .event-doc-card,
  .facility-item,
  .value-item,
  .testimonial-card,
  .vm-item {
    flex: 1 1 100%;
    min-width: auto;
  }

  /* Features grid - single column */
  .feature-item {
    flex: 1 1 100%;
  }

  /* Text-image sections - stack */
  .text-image-section {
    flex-direction: column;
  }

  /* Process steps - vertical */
  .process-steps,
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  /* Service header - stack */
  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer - stack columns */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }

  /* CTA buttons - stack */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Cookie banner - stack */
  .cookie-banner .container {
    flex-direction: column;
  }

  .cookie-banner p {
    flex: 1 1 100%;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  /* Modal padding */
  .cookie-modal-content {
    padding: 24px;
  }

  /* Links grid */
  .links-grid .link-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .exhibition-card,
  .service-card,
  .workshop-card,
  .event-card,
  .collection-item,
  .artist-card,
  .program-card,
  .dept-card,
  .space-card,
  .archive-card,
  .event-doc-card,
  .facility-item,
  .value-item {
    flex: 1 1 calc(50% - 16px);
  }

  .feature-item {
    flex: 1 1 calc(50% - 24px);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* FOCUS STATES */
*:focus {
  outline: 2px solid #C9A961;
  outline-offset: 2px;
}

/* SMOOTH ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

/* END OF MINIMALIST STYLE CSS */