/* ==========================================================================  
   CSS RESET & BASELINES 
   ========================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  color: #F9F5F1;
  background: #282B2F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  color: #F2BB05;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF8E7;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* ==========================================================================  
   BRAND FONTS & TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: #F9F5F1;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; border-left: 6px solid #F2BB05; padding-left: 18px; }
h3 { font-size: 1.375rem; color: #F2BB05; margin-bottom: 8px; }
h4 { font-size: 1.125rem; }
p, li, blockquote, cite, span, dd, dt {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #F9F5F1;
  font-weight: 400;
  margin-bottom: 12px;
}
blockquote {
  margin: 32px 0 24px 0;
  padding: 24px 32px;
  background: #232428;
  color: #F2BB05;
  border-left: 4px solid #F2BB05;
  font-style: italic;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(32, 80, 114, 0.10);
}
cite {
  display: block;
  margin-top: 10px;
  color: #CCCCCC;
  font-size: 0.97rem;
  font-style: normal;
}

/* ==========================================================================  
   LAYOUT CONTAINERS, SECTIONS & FLEXBOX PATTERNS
   ========================================================================== */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232428;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32, 80, 114, 0.07);
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLEXBOX UTILITY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #282B2F;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(30, 34, 38, 0.11);
  padding: 32px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(242, 187, 5, 0.12);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 18px 0 rgba(32,80,114,0.18);
  transform: translateY(-4px) scale(1.015);
  border-color: #F2BB05;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F9F5F1;
  border-left: 6px solid #205072;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(50,50,50,0.08);
  color: #232428;
  min-width: 280px;
  max-width: 420px;
}
.testimonial-card p { color: #232428; }
.testimonial-card cite { color: #205072; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #282B2F;
  padding: 24px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 220px;
  box-shadow: 0 1px 6px rgba(32,80,114,0.07);
  border: 1px solid rgba(242,187,5,0.10);
  transition: border 0.15s, box-shadow 0.15s;
}
.feature-item:hover {
  border-color: #F2BB05;
  box-shadow: 0 4px 14px rgba(242, 187, 5, 0.13);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.country-filter, .category-filter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 28px;
}
.country-list, .blog-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-member-list, .value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member, .value-item {
  background: #232428;
  border: 1px solid rgba(32, 80, 114, 0.16);
  border-radius: 14px;
  padding: 24px 18px;
  min-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, border 0.15s;
}
.team-member:hover, .value-item:hover {
  border-color: #F2BB05;
  box-shadow: 0 4px 16px rgba(242,187,5,0.15);
}
.fact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
}
.fact-card {
  background: #282B2F;
  border-left: 6px solid #F2BB05;
  border-radius: 10px;
  padding: 22px 18px;
  min-width: 256px;
  flex: 1 1 220px;
  box-shadow: 0 1px 7px rgba(32, 80, 114, 0.07);
  color: #F2BB05;
}
.cultural-story-snippets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
  background: #232428;
  border-radius: 10px;
  padding: 26px 18px;
  box-shadow: 0 1px 10px rgba(32,80,114,0.06);
}
.experience-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

/* ==========================================================================  
   HEADER, NAVIGATION & HERO
   ========================================================================== */
header {
  background: #1b1d20;
  border-bottom: 2px solid #205072;
  box-shadow: 0 2px 9px rgba(32,80,114,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1224px;
  margin: 0 auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: #F9F5F1;
  padding: 6px 8px;
  border-radius: 5px;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus,
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #205072;
  color: #F2BB05;
}
.cta-btn {
  display: inline-block;
  background: #F2BB05;
  color: #232428;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 11px 28px;
  box-shadow: 0 2px 8px rgba(50,57,61,0.10);
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: #205072;
  color: #F2BB05;
  transform: translateY(-2px) scale(1.03);
}
.hero {
  background: linear-gradient(110deg, #232428 60%, #205072 100%);
  padding: 80px 0 65px 0;
}
.hero h1 {
  color: #F2BB05;
}
.hero p {
  color: #F9F5F1;
  font-size: 1.25rem;
}
.hero .cta-btn {
  margin-top: 26px;
}

/* ==========================================================================  
   FOOTER
   ========================================================================== */
footer {
  background: #1b1d20;
  border-top: 2px solid #205072;
  margin-top: 60px;
  padding: 32px 0 22px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 38px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F2BB05;
  font-size: 0.99rem;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 7px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #232428; background: #F2BB05; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #F9F5F1;
  font-size: 0.97rem;
  align-items: flex-start;
}
.footer-contact a {
  color: #F2BB05;
  transition: color 0.16s;
}
.footer-contact a:hover, .footer-contact a:focus { color: #FFF8E7; }

/* ==========================================================================  
   COMPONENTS: BUTTONS, FILTERS, CARD LISTS
   ========================================================================== */
button, .country-filter button, .category-filter button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #205072;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, transform 0.12s;
  outline: none;
}
button:hover, .country-filter button:hover, .category-filter button:hover,
button:focus, .country-filter button:focus, .category-filter button:focus {
  background: #F2BB05;
  color: #282B2F;
  transform: translateY(-1px) scale(1.02);
}
.country-filter span, .category-filter span {
  color: #F2BB05;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ==========================================================================  
   ICONS & METALLIC ACCENTS
   ========================================================================== */
img[alt*="Icon"], .feature-item img, .value-item img, .team-member img, .fact-card img {
  max-width: 54px;
  width: 54px;
  filter: drop-shadow(0 0 2px #CCC);
  background: linear-gradient(135deg, #b3b3b3 24%, #F2BB05 76%);
  border-radius: 12px;
  padding: 7px;
  border: 2px solid #3e444d;
  margin-bottom: 8px;
}

/* ==========================================================================  
   FORMS, DL, MISC TYPOGRAPHY
   ========================================================================== */
dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #F2BB05;
}
dd {
  color: #F9F5F1;
}
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #bcbcbc;
  padding: 10px 13px;
  margin-bottom: 16px;
  background: #232428;
  color: #F9F5F1;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #F2BB05;
}

/* ==========================================================================  
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: #282B2F;
  color: #F2BB05;
  font-size: 2.05rem !important;
  border: none;
  outline: none;
  border-radius: 6px;
  padding: 6px 16px 10px 16px;
  margin-left: 18px;
  cursor: pointer;
  z-index: 12;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2BB05;
  color: #232428;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232428;
  box-shadow: 0 2px 20px rgba(32,80,114,0.28);
  z-index: 1000;
  transform: translateX(-100vw);
  will-change: transform;
  transition: transform 0.38s cubic-bezier(0.75, 0.01, 0.31, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F2BB05;
  font-size: 2.5rem;
  border: none;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  padding: 0 8px;
  cursor: pointer;
  z-index: 1101;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFF8E7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #F9F5F1;
  background: none;
  padding: 10px 0;
  border-radius: 6px;
  min-width: 230px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:active {
  background: #205072;
  color: #F2BB05;
}

/* ==========================================================================  
   COOKIE BANNER & MODAL 
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232428;
  color: #F9F5F1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 20px 12px;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(32,80,114,0.08);
  gap: 32px;
  min-height: 68px;
  font-size: 1.01rem;
  animation: bannerSlideIn 0.62s cubic-bezier(.51,-0.3,.42,1.41);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
  margin-left: 22px;
}
.cookie-banner button {
  background: #205072;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.12s, transform 0.11s;
}
.cookie-banner button.accept {
  background: #F2BB05;
  color: #232428;
  font-weight: 700;
}
.cookie-banner button.reject {
  background: #205072;
  color: #fff;
  font-weight: 600;
}
.cookie-banner button.settings {
  background: none;
  color: #F2BB05;
  border: 1px solid #F2BB05;
  font-weight: 600;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F2BB05;
  color: #232428;
}

/* COOKIE MODAL (SETTINGS) */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  background: #232428;
  color: #F9F5F1;
  padding: 38px 28px 28px 28px;
  border-radius: 18px;
  min-width: 322px;
  box-shadow: 0 8px 32px rgba(32,80,114,0.33);
  z-index: 10001;
  animation: cookieModalIn .33s cubic-bezier(.64,-0.08,.38,1.16) forwards;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%, 40%) scale(0.92); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.00); }
}
.cookie-modal.open {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal h2 {
  color: #F2BB05;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.045rem;
}
.cookie-modal .cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F2BB05;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFF8E7;
}

/* Toggle Switch for cookie settings */
.cookie-toggle {
  width: 42px;
  height: 26px;
  position: relative;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #205072;
  border-radius: 22px;
  transition: background 0.13s;
}
.cookie-toggle input:checked + .slider {
  background: #F2BB05;
}
.cookie-toggle .slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s, background 0.16s;
  box-shadow: 0 1px 2px rgba(32,80,114,0.08);
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(16px);
  background: #232428;
}

/* ==========================================================================  
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1100px) {
  .container, .footer-inner, .header-inner {
    max-width: 98vw;
    padding-left: 9px; padding-right: 9px;
  }
}

@media (max-width: 900px) {
  .container, .footer-inner {
    max-width: 100vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .feature-grid, .team-member-list, .value-icons, .card-container, .fact-cards, .experience-testimonials {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 7px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-inner {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid, .team-member-list, .value-icons, .card-container, .fact-cards, .experience-testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .hero {
    padding: 38px 0 32px 0;
  }
  .footer-contact {
    align-items: flex-start;
    font-size: 0.95rem;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 48px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .country-list, .blog-list {
    gap: 18px;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 29px 9vw 22px 9vw;
  }
}

@media (max-width: 480px) {
  .container, .footer-inner {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .header-inner {
    padding: 11px 2vw;
  }
  .section {
    padding: 12px 1vw;
  }
}

/* ==========================================================================  
   MISCELLANEOUS, ACCESSIBILITY & FOCUS STATES
   ========================================================================== */
:focus {
  outline: 2px solid #F2BB05;
  outline-offset: 2px;
}
::selection {
  background: #F2BB05;
  color: #232428;
}

/* Hide cookie banner or modal by default if not needed (to allow JS toggle) */
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }

/* Accessibility improvement for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.001s !important;
  }
}

/* End of industrial_modern KulturWelten style.css */
