/* ============================================
   KUNSTINVEST JENA - GEOMETRIC STRUCTURED DESIGN
   Elegant Art Investment Platform
   ============================================ */

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

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - GEOMETRIC HIERARCHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A3B5C;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #4A4A4A;
}

a {
  color: #1A3B5C;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #B8956A;
}

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

li {
  margin-bottom: 12px;
  line-height: 1.8;
}

strong {
  font-weight: 600;
  color: #1A3B5C;
}

/* ============================================
   CONTAINER & LAYOUT - GEOMETRIC GRID
   ============================================ */

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

.section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* ============================================
   HEADER - CLEAN GEOMETRIC DESIGN
   ============================================ */

header {
  background: #FFFFFF;
  border-bottom: 2px solid #E8DCC8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 59, 92, 0.08);
}

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

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

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

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

.main-nav a:hover {
  color: #B8956A;
  border-bottom-color: #B8956A;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS - GEOMETRIC PRECISION
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #1A3B5C;
  color: #FFFFFF;
  border-color: #1A3B5C;
}

.btn-primary:hover {
  background: #2C5380;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 59, 92, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1A3B5C;
  border-color: #1A3B5C;
}

.btn-secondary:hover {
  background: #1A3B5C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 59, 92, 0.3);
}

.btn-link {
  background: transparent;
  color: #B8956A;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-link:hover {
  color: #1A3B5C;
  transform: translateX(5px);
}

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

.mobile-menu-toggle {
  display: none;
  background: #1A3B5C;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  transition: all 0.3s ease;
  border-radius: 0;
}

.mobile-menu-toggle:hover {
  background: #B8956A;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #1A3B5C;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  background: #FFFFFF;
  color: #1A3B5C;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 220, 200, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #B8956A;
  padding-left: 12px;
}

/* ============================================
   HERO SECTION - GEOMETRIC IMPACT
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5380 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="50" height="50" fill="%23B8956A" opacity="0.05"/><rect x="50" y="50" width="50" height="50" fill="%23B8956A" opacity="0.05"/></svg>');
  opacity: 0.3;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .subheadline {
  font-size: 20px;
  line-height: 1.6;
  color: #E8DCC8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicator {
  font-size: 14px;
  color: #B8956A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
}

/* ============================================
   HERO SMALL - GEOMETRIC HEADER
   ============================================ */

.hero-small {
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5380 100%);
  color: #FFFFFF;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 4px solid #B8956A;
}

.hero-small h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-small p {
  font-size: 18px;
  color: #E8DCC8;
  margin-bottom: 0;
}

/* ============================================
   SECTIONS - STRUCTURED SPACING
   ============================================ */

section {
  padding: 60px 0;
}

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

/* ============================================
   CARDS & GRIDS - GEOMETRIC LAYOUTS
   ============================================ */

.benefits-grid,
.services-grid,
.principles-grid,
.segments-grid,
.portfolio-grid,
.categories-grid,
.stats-grid,
.options-grid,
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.benefit,
.service-card,
.principle,
.segment-card,
.portfolio-card,
.category-card,
.stat,
.option-card,
.contact-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFFFFF;
  border: 2px solid #E8DCC8;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.benefit:hover,
.service-card:hover,
.principle:hover,
.segment-card:hover,
.portfolio-card:hover,
.category-card:hover,
.option-card:hover {
  border-color: #B8956A;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(26, 59, 92, 0.15);
}

.benefit::before,
.service-card::before,
.principle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #B8956A;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.benefit:hover::before,
.service-card:hover::before,
.principle:hover::before {
  transform: scaleY(1);
}

.service-card h3,
.benefit h3,
.principle h3,
.segment-card h3,
.portfolio-card h3,
.category-card h3 {
  color: #1A3B5C;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p,
.benefit p,
.principle p,
.segment-card p,
.portfolio-card p,
.category-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.7;
}

.service-card .price,
.portfolio-card .investment-range {
  font-size: 20px;
  font-weight: 700;
  color: #B8956A;
  margin: 20px 0;
  display: block;
}

.service-card ul,
.portfolio-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-card ul li,
.portfolio-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #4A4A4A;
}

.service-card ul li::before,
.portfolio-card ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #B8956A;
  font-size: 18px;
}

/* ============================================
   STATS - GEOMETRIC NUMBERS
   ============================================ */

.stats-grid {
  gap: 40px;
}

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5380 100%);
  color: #FFFFFF;
  border: none;
  padding: 48px 32px;
}

.stat h3 {
  font-size: 48px;
  color: #B8956A;
  margin-bottom: 8px;
  font-weight: 700;
}

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

/* ============================================
   TESTIMONIALS - STRUCTURED FEEDBACK
   ============================================ */

.testimonials {
  background: #F8F8F8;
  padding: 60px 0;
}

.testimonial-card {
  background: #FFFFFF;
  border-left: 4px solid #B8956A;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(26, 59, 92, 0.08);
}

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

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #1A3B5C;
  text-align: right;
  font-style: normal;
  margin: 0;
}

/* ============================================
   SERVICE DETAILS - STRUCTURED PRESENTATION
   ============================================ */

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

.services-detail .service-item:hover {
  border-color: #B8956A;
  box-shadow: 0 4px 16px rgba(26, 59, 92, 0.1);
}

.services-detail .service-item h2 {
  font-size: 28px;
  color: #1A3B5C;
  margin-bottom: 20px;
}

.services-detail .service-item .price {
  font-size: 24px;
  font-weight: 700;
  color: #B8956A;
  display: block;
  margin: 24px 0;
}

/* ============================================
   CTA SECTIONS - GEOMETRIC CALLS TO ACTION
   ============================================ */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5380 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  margin: 80px 0;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  color: #E8DCC8;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  margin: 0 8px 16px;
}

.cta-banner .btn-secondary,
.cta-section .btn-secondary {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
  margin: 0 8px 16px;
}

.cta-banner .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background: #FFFFFF;
  color: #1A3B5C;
}

/* ============================================
   FOOTER - GEOMETRIC FOUNDATION
   ============================================ */

footer {
  background: #1A3B5C;
  color: #E8DCC8;
  padding: 60px 0 32px;
  border-top: 4px solid #B8956A;
}

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

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

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

.footer-col h4 {
  color: #B8956A;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  color: #E8DCC8;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(232, 220, 200, 0.2);
  font-size: 14px;
  color: #B8956A;
  margin: 0;
}

/* ============================================
   LEGAL PAGES - STRUCTURED CONTENT
   ============================================ */

.legal-page {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #1A3B5C;
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page .updated {
  font-size: 14px;
  color: #B8956A;
  margin-bottom: 32px;
}

.legal-page ul,
.legal-page ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-page li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* ============================================
   CONTACT & LOCATION - GEOMETRIC INFO
   ============================================ */

.location-highlight,
.contact-information {
  background: #F8F8F8;
  padding: 60px 0;
}

.contact-info {
  background: #FFFFFF;
  border: 2px solid #E8DCC8;
  padding: 32px;
  margin: 32px 0;
}

.contact-info p {
  margin-bottom: 12px;
  color: #2C2C2C;
}

.office-features ul {
  list-style: none;
  padding: 0;
}

.office-features ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #4A4A4A;
}

.office-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B8956A;
  font-weight: 700;
  font-size: 18px;
}

.guide-list {
  list-style: none;
  padding: 0;
}

.guide-list li {
  padding: 16px;
  background: #FFFFFF;
  border-left: 4px solid #B8956A;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.guide-list li:hover {
  background: #F8F8F8;
  padding-left: 24px;
}

/* ============================================
   THANK YOU PAGE - CENTERED CONFIRMATION
   ============================================ */

.thank-you {
  text-align: center;
  padding: 100px 0;
}

.thank-you h1 {
  font-size: 42px;
  color: #1A3B5C;
  margin-bottom: 24px;
}

.thank-you h2 {
  font-size: 28px;
  color: #1A3B5C;
  margin-top: 48px;
  margin-bottom: 24px;
}

.thank-you ol {
  text-align: left;
  max-width: 600px;
  margin: 32px auto;
}

.thank-you ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 32px auto;
}

.thank-you ul li {
  margin-bottom: 16px;
}

/* ============================================
   COOKIE CONSENT BANNER - GEOMETRIC OVERLAY
   ============================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A3B5C;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent p {
  color: #E8DCC8;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  color: #FFFFFF;
}

.cookie-buttons button:hover {
  background: #FFFFFF;
  color: #1A3B5C;
}

.cookie-buttons .accept-all {
  background: #B8956A;
  border-color: #B8956A;
}

.cookie-buttons .accept-all:hover {
  background: #FFFFFF;
  color: #B8956A;
  border-color: #FFFFFF;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 59, 92, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1A3B5C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #B8956A;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  border: 2px solid #E8DCC8;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

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

@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .hero h1 { font-size: 48px; }
  .hero-small h1 { font-size: 36px; }
  
  .main-nav { display: none; }
  
  .benefit,
  .service-card,
  .principle,
  .segment-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 36px; }
  .hero .subheadline { font-size: 18px; }
  
  .hero-small { padding: 60px 0 40px; }
  .hero-small h1 { font-size: 28px; }
  
  .section { padding: 40px 0; }
  
  .mobile-menu-toggle { display: block; }
  
  .cta-buttons { display: none; }
  
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .benefit,
  .service-card,
  .principle,
  .segment-card,
  .portfolio-card,
  .category-card,
  .stat,
  .option-card,
  .contact-block {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  .cta-banner,
  .cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .hero-small h1 { font-size: 24px; }
  
  .container { padding: 0 16px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .benefit,
  .principle {
    padding: 24px;
  }
  
  .stat h3 { font-size: 36px; }
  
  .mobile-menu { width: 100%; }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

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

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

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

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

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

:focus {
  outline: 2px solid #B8956A;
  outline-offset: 2px;
}

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

/* Ensure readable text on all backgrounds */
::selection {
  background: #B8956A;
  color: #FFFFFF;
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}