/* =====================================================
   TourKompass Österreich: Industrial Modern CSS Styles
   =====================================================
   - Responsive, mobile-first, flexbox layouts ONLY
   - Modern, urban, industrial modern aesthetic
   - No CSS grid/column properties in any selector!
   - Brand fonts: Montserrat (display), Roboto (body)
   - Brand colors: #26547C (primary), #D6A84B (secondary), #F4F4F8 (accent)
   - Urban metals/greys: #20262c, #353638, #b8b9b8
   - Accessible contrast in testimonials/cookie banner
   ===================================================== */

/* ==== CSS RESET & NORMALIZE ==== */
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, main, 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;
}
html { scroll-behavior: smooth; }
body {
  background: #20262c;
  color: #ecece8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #D6A84B; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #bfa14f; text-decoration: underline; }

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #F4F4F8;
  margin-bottom: 16px;
}
h1 { font-size: 2.375rem; margin-bottom: 18px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
h5 { font-size: 1rem; margin-bottom: 6px; }
strong { color: #D6A84B; font-weight: 600; }
p, ul, ol, li { font-size: 1rem; }

@media (min-width: 600px) {
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.05rem; }
  h3 { font-size: 1.3rem; }
}

/* ================
   BRAND COLORS
   ================ */
:root {
  --primary: #26547C;
  --secondary: #D6A84B;
  --accent: #F4F4F8;
  --metal-dark: #20262c;
  --metal-mid: #353638;
  --metal-light: #b8b9b8;
  --shadow: 0 2px 20px 0 rgba(20,22,27,0.15);
}

/* =================
   SPACING CLASSES
   ================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: #23272e;
  box-shadow: var(--shadow);
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #292e36;
  border: 1.5px solid #353638;
  border-radius: 14px;
  box-shadow: 0 5px 25px rgba(35,32,44,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(38,84,124,0.14);
  border-color: #D6A84B;
}
.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;
  margin-bottom: 24px;
  background: #F4F4F8;
  border-left: 4px solid #D6A84B;
  border-radius: 12px;
  color: #20262c !important;
  box-shadow: 0 2px 16px 0 rgba(35,40,44,0.08);
  max-width: 560px;
  transition: transform 0.18s cubic-bezier(.21,.69,.35,1), box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 28px #c2a24e29;
  transform: translateY(-3px) scale(1.018);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   HEADER, NAVIGATION, LOGO
   ============================= */
header {
  background: #23272e;
  box-shadow: 0 3px 14px 0 rgba(30,32,33,0.09);
  padding: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img { height: 52px; }
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #b8b9b8;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #26547C;
  color: #F4F4F8;
}
.cta-btn {
  background: linear-gradient(90deg,#D6A84B 80%, #aa862a 100%);
  color: #20262c;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 28px 10px 18px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 16px 0 #d6a84b29;
  margin-left: 14px;
  font-size: 1.07rem;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.17s, color 0.14s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#bfa14f 70%, #D6A84B 100%);
  color: #16181d;
  box-shadow: 0 6px 24px 0 #cc9b2649;
  text-decoration: underline;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F4F4F8;
  cursor: pointer;
  padding: 6px 14px;
  margin-left: 18px;
  border-radius: 6px;
  transition: background 0.19s, color 0.17s;
  z-index: 1052;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { background: #2d323d; color: #D6A84B; }

/* =======================
   MOBILE NAVIGATION
   ======================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23272e;
  box-shadow: 0 0 32px #20262c88;
  z-index: 11000;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.23,.95,.51,1.31);
  display: flex;
  flex-direction: column;
  gap: 38px;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 24px 12px 0;
  background: none;
  border: none;
  color: #F4F4F8;
  font-size: 2.3rem;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 12001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D6A84B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-left: 40px;
}
.mobile-nav a {
  color: #F4F4F8;
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 0;
  transition: color 0.16s, background 0.15s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D6A84B;
  border-bottom: 2px solid #D6A84B;
  background: #23272e;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: #21242a url('../assets/hero-industrial.jpg') center/cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 70px;
  padding-bottom: 70px;
  box-shadow: 0 7px 40px 0 #23222033;
}
.hero .container { gap: 0; }
.hero .content-wrapper {
  background: rgba(24,28,34,0.86);
  border-radius: 18px;
  box-shadow: 0 4px 34px 0 #23272e55;
  padding: 36px 28px;
  max-width: 500px;
  margin-left: 0;
}
.hero h1 {
  color: #F4F4F8;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px #22263185;
  font-size: 2.1rem;
}
.hero p {
  font-size: 1.08rem;
  color: #F4F4F8;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 24px;
}

/* ========================
   TOUR CARDS & LISTS
   ======================== */
.tour-teasers, .tour-list, .destination-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.tour-teasers .teaser-card,
.tour-list > div,
.destination-grid > div,
.blog-list .blog-teaser {
  background: #292e36;
  border: 1.5px solid #353638;
  border-radius: 11px;
  box-shadow: 0 4px 20px 0 #20263417;
  color: #F4F4F8;
  padding: 22px 18px 14px 18px;
  min-width: 0;
  flex: 1 1 320px;
  margin-bottom: 0;
  transition: border-color 0.18s, transform 0.16s, box-shadow 0.17s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-teasers .teaser-card:hover,
.tour-list > div:hover,
.destination-grid > div:hover,
.blog-teaser:hover {
  border-color: #D6A84B;
  box-shadow: 0 8px 30px #D6A84B11;
  transform: translateY(-2px) scale(1.015);
}
.tour-teasers .teaser-card span,
.tour-list > div span {
  background: #26547C;
  color: #F4F4F8;
  font-weight: 700;
  border-radius: 6px;
  display: inline-block;
  padding: 4px 11px;
  font-size: 1rem;
  margin-top: 4px;
  border-left: 4px solid #D6A84B;
}
.tour-teasers .teaser-card h3,
.tour-list > div h3,
.destination-grid > div h3 { color: #D6A84B; font-size: 1.19rem; margin-bottom: 7px; }

/* ===================
   CTAS, LISTS, FAQ
   =================== */
.cta {
  background: #23272e;
  box-shadow: 0 3px 18px #22222618;
  border-radius: 13px;
  margin-bottom: 38px;
}
.cta .cta-btn {
  margin-left: 0;
  margin-top: 14px;
  font-size: 1.1rem;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul li, ol li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  font-size: 1rem;
}
ul li:before {
  content: '◾';
  color: #b8b9b8;
  font-size: 0.9em;
  position: absolute;
  left: 3px;
}
ol li:before {
  counter-increment: ol;
  content: counters(ol, '.') '.';
  position: absolute;
  left: 0;
  color: #D6A84B;
  font-weight: bold;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-accordion h3 {
  background: #292e36;
  color: #D6A84B;
  padding: 14px 18px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1.09rem;
  margin-bottom: 2px;
  transition: background 0.13s;
}
.faq-accordion h3:hover, .faq-accordion h3.active {
  background: #353638;
}
.faq-accordion div {
  background: #23272e;
  padding: 12px 18px;
  border-left: 3px solid #D6A84B;
  border-radius: 0 0 9px 9px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s cubic-bezier(.99,.24,.32,1.1), padding 0.17s;
}
.faq-accordion h3.active + div {
  max-height: 140px;
  padding: 12px 18px;
}

.highlight-box, .newsletter-box {
  background: #1e2328;
  border-left: 4px solid #26547C;
  border-radius: 10px;
  padding: 18px 18px 12px 22px;
  color: #D6A84B;
  margin-bottom: 12px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}
.newsletter-box p { color: #b8b9b8; }

.blog-categories {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.blog-categories span {
  background: #292e36;
  color: #b8b9b8;
  border-radius: 6px;
  padding: 3px 13px;
  font-size: 0.93rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.blog-teaser a { color: #D6A84B; margin-top: 0; font-weight: 700; text-decoration: underline; }
.blog-teaser a:hover { color: #bfa14f; }

/* ===============
   FOOTER
   =============== */
footer {
  background: #1b1e23;
  padding: 34px 0 10px 0;
  border-top: 2px solid #23272e;
  margin-top: 58px;
  box-shadow: 0 -2px 22px 0 #20262c0f;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-left {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-left img { height: 34px; margin-bottom: 7px; }
.footer-left p { color: #b8b9b8; font-size: 0.98rem; }
.footer-nav {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #b8b9b8;
  font-size: 0.98rem;
  padding: 2px 0;
  transition: color 0.17s;
}
.footer-nav a:hover { color: #D6A84B; }
.footer-contact {
  flex: 2 1 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact ul {
  margin: 0; padding: 0;
  gap: 7px;
}
.footer-contact li {
  font-size: 0.98rem;
  color: #b8b9b8;
  padding-left: 1.5em;
  display: flex;
  align-items: center;
  gap: 9px;
  list-style: none;
}
.footer-contact li img { height: 18px; width: 18px; }

/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */
@media (max-width: 1024px) {
  .container, footer .container {
    max-width: 94vw;
    gap: 18px;
  }
  .tour-teasers, .tour-list, .destination-grid, .blog-list {
    gap: 18px;
  }
}
@media (max-width: 870px) {
  .tour-teasers .teaser-card, .tour-list > div, .destination-grid > div, .blog-list .blog-teaser {
    flex-basis: 100%;
  }
}
@media (max-width: 800px) {
  .container, footer .container {
    max-width: 100vw;
    flex-direction: column;
    gap: 18px;
  }
  footer .container { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 6vw; }
  .main-nav { gap: 7px; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 10px; }
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block; }
  .hero .content-wrapper { max-width: 100%; }
  .section, .hero, .cta { padding: 28px 6vw; }
  .text-image-section { flex-direction: column !important; gap: 22px; }
  .blog-categories { flex-direction: column; gap: 6px; }
}
@media (max-width: 540px) {
  .footer-contact li { font-size: 0.89rem; }
  .footer-left img { height: 28px; }
  .hero .content-wrapper { padding: 18px 12px; }
}
@media (max-width: 400px) {
  .footer-nav a, .footer-contact li { font-size: 0.79rem; }
}

/* ==============
   BUTTON STYLES
   ============== */
button, .cta-btn {
  font-family: inherit;
  outline: none;
  transition: background 0.19s, color 0.13s, box-shadow 0.17s;
}
button:focus-visible, .cta-btn:focus-visible { outline: 2px solid #D6A84B; }

/* ===================
   COOKIE CONSENT
   =================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #1c2026;
  color: #F4F4F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 26px 14px 18px 14px;
  box-shadow: 0 -4px 36px 0 #20262c62;
  z-index: 16000;
  font-size: 1rem;
  border-top: 3px solid #D6A84B;
  transition: transform 0.36s cubic-bezier(.9,.55,.35,1.2), opacity 0.22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(160px);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 2px;
  border: none;
  cursor: pointer;
  background: #292e36;
  color: #F4F4F8;
  transition: background 0.13s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 1px 5px #292e362c;
}
.cookie-banner .accept {
  background: linear-gradient(90deg,#D6A84B 80%, #aa862a 100%);
  color: #20262c;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus { background: #d1aa54; color: #181A1D; }
.cookie-banner .settings {
  background: #26547C;
  color: #F4F4F8;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #1e4662;
}
.cookie-banner .reject {
  background: #292e36;
  color: #b8b9b8;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus { background: #353638; color: #D6A84B; }

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,38,44,0.81);
  z-index: 17000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #F4F4F8;
  padding: 38px 28px 29px 28px;
  border-radius: 17px;
  box-shadow: 0 8px 50px #23272e18;
  max-width: 430px; width: 98vw;
  color: #292e36;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn 0.37s cubic-bezier(.47,.21,.49,1.26);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal .modal-close-btn {
  position: absolute;
  right: 19px; top: 14px;
  background: none;
  border: none;
  font-size: 1.55rem;
  color: #292e36;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #26547C;
  font-size: 1.3rem;
  margin-bottom: 1px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #20262c;
}
.cookie-category input[type="checkbox"] {
  accent-color: #26547C;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-modal .cookie-btns {
  margin-top: 14px;
  justify-content: flex-end;
  gap: 11px;
}

/* =========================
   MICRO-INTERACTIONS/ANIM
   ========================= */
.card, .teaser-card, .feature-item, .section, .cta-btn, .testimonial-card, .blog-teaser {
  transition: box-shadow 0.22s cubic-bezier(.32,.78,.46,1), transform 0.16s cubic-bezier(.32,.78,.46,1);
}
.card:hover, .teaser-card:hover, .feature-item:hover, .blog-teaser:hover {
  box-shadow: 0 10px 34px 0 #d6a84b19;
  transform: translateY(-2px) scale(1.012);
}

/* ==================
   UTILITIES
   ================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #b8b9b8;
}
.text-section p,
.text-section ul,
.text-section li,
.text-section strong { color: #b8b9b8; }
.text-section strong { color: #D6A84B; }

/* Hide visually but accessible for screenreaders */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ===============
   ICON SPACING
   =============== */
ul li img, .footer-contact li img {
  margin-right: 8px;
  vertical-align: bottom;
}

/* 
==============================
  CLASSES MAPPED TO HTML ONLY
==============================
NO CSS GRID/COLUMN PROPERTIES IN THIS FILE! FLEXBOX ONLY!
All layout containers (section, card grids, lists, navs, footers, banners, modals, etc) use only flex.
============================== 
*/
