/* ============================================
   FJORD KULTURY - CREATIVE ARTISTIC STYLES
   Design Style: Creative & Artistic
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #2a2a2a;
  background: linear-gradient(135deg, #f8f5f0 0%, #fff8f0 100%);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - CREATIVE & ARTISTIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #243d5c;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #243d5c 0%, #8B4789 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  color: #243d5c;
  position: relative;
  padding-bottom: 15px;
}

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

h3 {
  font-size: 24px;
  color: #8B4789;
}

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

strong {
  font-weight: 600;
  color: #243d5c;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   HEADER - CREATIVE DESIGN
   ============================================ */

header {
  background: linear-gradient(135deg, rgba(36, 61, 92, 0.95) 0%, rgba(139, 71, 137, 0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.3);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  color: #D4AF37;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - CREATIVE SLIDE-IN
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B4789 0%, #243d5c 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(139, 71, 137, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #243d5c 0%, #1a2d44 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: #D4AF37;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(212, 175, 55, 0.2);
  border-left-color: #D4AF37;
  transform: translateX(8px);
  color: #D4AF37;
}

/* ============================================
   HERO SECTION - CREATIVE & ARTISTIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, rgba(36, 61, 92, 0.9) 0%, rgba(139, 71, 137, 0.9) 100%),
              url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0l30 30-30 30L0 30z" fill="%23ffffff" fill-opacity="0.05"/%3E%3C/svg%3E');
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease-out;
  -webkit-text-fill-color: #ffffff;
}

.hero-subtitle {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* ============================================
   BUTTONS - CREATIVE DESIGN
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  border-color: #ffffff;
}

/* ============================================
   VALUE PROPOSITION - CREATIVE CARDS
   ============================================ */

.value-proposition {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 42px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.value-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.3);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(139, 71, 137, 0.3));
  transition: transform 0.3s ease;
}

.value-card:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.value-card h3 {
  margin-bottom: 15px;
  color: #243d5c;
}

.value-card p {
  color: #666;
  font-size: 15px;
}

/* ============================================
   SERVICES - CREATIVE GRID
   ============================================ */

.services-preview,
.services-overview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
}

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  border-left: 5px solid #D4AF37;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
  border-left-color: #8B4789;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #243d5c;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 12px;
  color: #555;
}

.service-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 20px;
}

/* ============================================
   SERVICE DETAILED PAGES
   ============================================ */

.service-detailed {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-top: 5px solid #8B4789;
}

.service-content h2 {
  color: #243d5c;
  margin-bottom: 20px;
}

.service-content .price {
  font-size: 28px;
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  padding: 10px 25px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50px;
}

.service-content ul {
  margin: 25px 0;
  padding-left: 20px;
}

.service-content li {
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
  color: #555;
}

.service-content li::before {
  content: '✦';
  position: absolute;
  left: -15px;
  color: #8B4789;
  font-size: 14px;
}

/* ============================================
   EVENTS - CREATIVE LAYOUT
   ============================================ */

.upcoming-events,
.featured-event {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  margin-bottom: 60px;
}

.featured-event {
  text-align: center;
  position: relative;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.3);
}

.event-date,
.event-location {
  font-size: 18px;
  color: #8B4789;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-category {
  display: inline-block;
  background: rgba(36, 61, 92, 0.1);
  color: #243d5c;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 14px;
  margin: 10px 5px;
  font-weight: 600;
}

.event-price {
  font-size: 24px;
  color: #D4AF37;
  font-weight: 700;
  margin: 15px 0;
}

.seats-available {
  color: #8B4789;
  font-weight: 600;
  font-size: 16px;
  margin: 15px 0;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.event-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
  position: relative;
}

.event-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 35px rgba(139, 71, 137, 0.25);
}

.event-card h3 {
  color: #243d5c;
  margin-bottom: 15px;
  font-size: 20px;
}

/* ============================================
   TESTIMONIALS - CREATIVE CARDS
   ============================================ */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: relative;
  border-left: 5px solid #8B4789;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 60px;
  color: rgba(212, 175, 55, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 71, 137, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #243d5c;
  font-size: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid rgba(139, 71, 137, 0.2);
}

/* ============================================
   PROCESS STEPS - CREATIVE TIMELINE
   ============================================ */

.process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.process h2 {
  text-align: center;
  margin-bottom: 50px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(139, 71, 137, 0.3);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 71, 137, 0.2);
}

.step h3 {
  color: #243d5c;
  margin-bottom: 15px;
  font-size: 20px;
  margin-top: 10px;
}

.step p {
  color: #666;
  font-size: 15px;
}

/* ============================================
   CTA BANNER - CREATIVE DESIGN
   ============================================ */

.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(36, 61, 92, 0.95) 0%, rgba(139, 71, 137, 0.95) 100%),
              url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M30 0l30 30-30 30L0 30z" fill="%23ffffff" fill-opacity="0.05"/%3E%3C/svg%3E');
  text-align: center;
  margin: 60px 0;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -30px); }
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: #f0f0f0;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-banner .contact-info {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 25px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   TRUST INDICATORS - CREATIVE STATS
   ============================================ */

.trust-indicators {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  margin-bottom: 60px;
}

.trust-indicators h2 {
  text-align: center;
  margin-bottom: 50px;
}

.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.indicator {
  flex: 1 1 200px;
  max-width: 230px;
  text-align: center;
  padding: 35px 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.indicator:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #D4AF37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.indicator-number {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.indicator p {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

/* ============================================
   PAGE HERO - BREADCRUMB & TITLE
   ============================================ */

.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(36, 61, 92, 0.1) 0%, rgba(139, 71, 137, 0.1) 100%);
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 4px solid #D4AF37;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

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

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

.last-updated {
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 15px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.story,
.mission-vision,
.team,
.achievements {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.content-wrapper h2 {
  margin-top: 40px;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

/* ============================================
   MISSION & VISION - CREATIVE CARDS
   ============================================ */

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  justify-content: center;
}

.mission-card {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-left: 5px solid #8B4789;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
}

.mission-card h2 {
  color: #243d5c;
  margin-bottom: 20px;
}

.mission-card p {
  color: #555;
  line-height: 1.8;
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 50px;
}

.value-item {
  text-align: center;
  padding: 25px 20px;
}

.value-item h3 {
  color: #8B4789;
  margin-bottom: 12px;
}

.value-item p {
  color: #666;
}

/* ============================================
   TEAM - CREATIVE MEMBER CARDS
   ============================================ */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.team-member:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.25);
}

.team-member h3 {
  color: #243d5c;
  margin-bottom: 10px;
  font-size: 22px;
}

.role {
  color: #8B4789;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
}

.team-member p {
  color: #666;
  font-size: 14px;
}

/* ============================================
   ACHIEVEMENTS - CREATIVE GRID
   ============================================ */

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 40px;
}

.achievement {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  border-left: 4px solid #D4AF37;
  transition: all 0.3s ease;
}

.achievement:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 35px rgba(139, 71, 137, 0.2);
  border-left-color: #8B4789;
}

.achievement p {
  color: #444;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* ============================================
   BLOG & ARTICLES - CREATIVE LAYOUT
   ============================================ */

.featured-article {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  margin-bottom: 60px;
  text-align: center;
}

.featured-article h2 {
  max-width: 800px;
  margin: 0 auto 20px;
}

.article-excerpt {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.article-meta .category {
  background: #8B4789;
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-weight: 600;
}

.article-meta .date,
.article-meta .read-time,
.article-meta .author {
  font-weight: 500;
}

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

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.article-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
}

.article-card h3 {
  color: #243d5c;
  margin-bottom: 15px;
  font-size: 20px;
}

.article-card p {
  color: #666;
  margin-bottom: 20px;
}

/* ============================================
   POPULAR POSTS - CREATIVE LIST
   ============================================ */

.popular-posts {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto 0;
}

.popular-item {
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #8B4789;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.popular-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(139, 71, 137, 0.2);
}

.popular-item h3 {
  color: #243d5c;
  margin: 0;
  flex: 1;
  font-size: 18px;
}

.views {
  color: #8B4789;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* ============================================
   CONTACT PAGE - CREATIVE DESIGN
   ============================================ */

.contact-info,
.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.25);
}

.contact-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(139, 71, 137, 0.3));
}

.contact-card h3 {
  color: #243d5c;
  margin-bottom: 15px;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #8B4789;
  margin: 15px 0;
}

.form-placeholder {
  max-width: 700px;
  margin: 40px auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  border: 3px dashed #D4AF37;
}

.form-placeholder p {
  margin-bottom: 20px;
  color: #555;
}

/* ============================================
   TEAM CONTACTS
   ============================================ */

.team-contacts {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.team-contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-contact {
  flex: 1 1 260px;
  max-width: 300px;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #8B4789;
}

.team-contact:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.2);
}

.team-contact h3 {
  color: #243d5c;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-contact .specialization {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

/* ============================================
   OFFICE HOURS
   ============================================ */

.office-hours {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  margin-bottom: 60px;
}

.hours-list {
  max-width: 600px;
  margin: 40px auto 0;
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.hours-list p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139, 71, 137, 0.1);
}

.hours-list p:last-child {
  border-bottom: none;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

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

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.legal-content th,
.legal-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(139, 71, 137, 0.1);
}

.legal-content th {
  background: linear-gradient(135deg, #243d5c 0%, #8B4789 100%);
  color: white;
  font-weight: 600;
}

.legal-content tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(36, 61, 92, 0.1) 0%, rgba(139, 71, 137, 0.1) 100%);
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(139, 71, 137, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.confirmation-message {
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto;
}

.additional-info {
  margin-top: 30px;
  font-size: 18px;
  color: #555;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.action-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.25);
}

.action-card h3 {
  color: #243d5c;
  margin-bottom: 15px;
}

.action-card p {
  color: #666;
  margin-bottom: 25px;
}

.emergency-contact {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  margin-bottom: 60px;
}

.contact-phone {
  font-size: 28px;
  margin-bottom: 15px;
}

/* ============================================
   GALLERY PAGES
   ============================================ */

.featured-projects {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.project-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #8B4789;
}

.project-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(139, 71, 137, 0.25);
}

.project-card h3 {
  color: #243d5c;
  margin-bottom: 15px;
  font-size: 22px;
}

.project-date,
.project-location {
  font-size: 14px;
  color: #8B4789;
  font-weight: 600;
  margin-top: 10px;
}

.statistics {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-item p {
  color: #666;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* ============================================
   TICKET INFO
   ============================================ */

.ticket-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
  margin-bottom: 60px;
}

.ticket-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.ticket-info ul {
  max-width: 700px;
  margin: 0 auto 30px;
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.ticket-info li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #444;
  font-size: 16px;
}

.ticket-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

.ticket-info .contact-info {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #8B4789;
  margin-top: 30px;
}

/* ============================================
   FOOTER - CREATIVE DESIGN
   ============================================ */

footer {
  background: linear-gradient(135deg, #1a2d44 0%, #243d5c 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37 0%, #8B4789 50%, #D4AF37 100%);
}

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

.footer-section {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-section h3 {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-section p {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 15px;
  position: relative;
}

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

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 20px;
}

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

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

.footer-bottom p {
  color: #b0b0b0;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT BANNER - CREATIVE DESIGN
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(36, 61, 92, 0.98) 0%, rgba(26, 45, 68, 0.98) 100%);
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backdrop-filter: blur(10px);
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
  color: white;
}

.cookie-btn.accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn.reject {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn.reject:hover {
  background: rgba(255,255,255,0.2);
}

.cookie-btn.settings {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.cookie-btn.settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 40px 35px;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
  animation: modalSlideIn 0.4s ease-out;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(139, 71, 137, 0.1);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #243d5c;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(139, 71, 137, 0.2);
  transform: rotate(90deg);
}

.modal-content h2 {
  color: #243d5c;
  margin-bottom: 25px;
  font-size: 28px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #8B4789;
}

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #D4AF37 0%, #8B4789 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop navigation */
  .main-nav { display: none; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle { display: flex; }
  
  /* Hero section */
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  
  /* Buttons */
  .btn { width: 100%; padding: 14px 24px; }
  
  /* Cards */
  .value-card,
  .service-card,
  .event-card,
  .testimonial-card,
  .team-member,
  .contact-card,
  .action-card { max-width: 100%; }
  
  /* Flexbox adjustments */
  .header-content,
  .hero-cta,
  .values-grid,
  .services-grid,
  .events-grid,
  .testimonials-grid,
  .process-steps,
  .indicators-grid,
  .team-grid,
  .achievements-grid,
  .articles-grid,
  .contact-cards,
  .actions-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Service content */
  .service-content { padding: 30px 20px; }
  
  /* Content wrapper */
  .content-wrapper { padding: 30px 20px; }
  
  /* Footer */
  .footer-content { flex-direction: column; gap: 30px; }
  
  /* Cookie banner */
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { justify-content: center; width: 100%; }
  .cookie-btn { flex: 1; min-width: 120px; }
  
  /* Modal */
  .modal-content { padding: 30px 20px; }
  .modal-buttons { flex-direction: column; }
  .modal-buttons .cookie-btn { width: 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container { padding: 0 30px; }
  
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  
  .values-grid,
  .services-grid,
  .events-grid { gap: 25px; }
  
  .value-card,
  .service-card { flex: 1 1 calc(50% - 25px); max-width: calc(50% - 25px); }
}

@media (min-width: 1025px) {
  /* Desktop enhancements */
  .hero h1 { font-size: 56px; }
  
  .values-grid,
  .services-grid { justify-content: flex-start; }
  
  .value-card { flex: 1 1 calc(25% - 30px); max-width: calc(25% - 30px); }
  .service-card { flex: 1 1 calc(33.333% - 30px); max-width: calc(33.333% - 30px); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

*:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 3px solid #D4AF37;
  outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  footer,
  #cookie-banner,
  #cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    -webkit-text-fill-color: black;
  }
}