/* VignetteTravel Österreich - main.css */
:root {
  --clr-primary: #1a5276;
  --clr-accent: #e67e22;
  --clr-light: #d6eaf8;
  --clr-text: #1c1c1c;
  --clr-muted: #555;
  --clr-border: #ddd;
  --clr-bg: #f9f9f9;
  --clr-white: #fff;
  --radius: 6px;
  --shadow: 0 2px 8px rgba(0,0,0,.1);
  --font-main: 'Segoe UI', Arial, sans-serif;
  --max-w: 1200px;
  --sidebar-w: 260px;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
}

a { color: var(--clr-primary); text-decoration: underline; }
a:hover { color: var(--clr-accent); }

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

/* ===== UTILITY BAR / TOPBAR ===== */
.utility-bar {
  background: var(--clr-primary);
  color: #fff;
  padding: .4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.utility-bar a { color: #fff; text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
.site-header {
  background: var(--clr-white);
  border-bottom: 3px solid var(--clr-accent);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.site-logo img { width: 48px; height: 48px; }
.site-logo-text { font-size: 1.4rem; font-weight: 700; color: var(--clr-primary); }

/* ===== MAIN NAV ===== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--clr-primary);
  font-weight: 600;
  padding: .3rem .5rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--clr-light);
  color: var(--clr-accent);
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius);
  padding: .3rem .6rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--clr-primary);
}

/* ===== LAYOUT: SIDEBAR ===== */
.page-wrapper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 2rem;
  align-items: start;
}

.sidebar {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
}
.sidebar h3 {
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: .75rem;
  border-bottom: 2px solid var(--clr-accent);
  padding-bottom: .4rem;
}
.sidebar ul { list-style: none; }
.sidebar ul li { margin-bottom: .4rem; }
.sidebar ul a {
  font-size: .9rem;
  color: var(--clr-primary);
  text-decoration: none;
}
.sidebar ul a:hover { text-decoration: underline; color: var(--clr-accent); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #1a5276cc 100%);
  color: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .75rem; }
.hero p { font-size: 1.1rem; opacity: .9; max-width: 600px; }
.hero img { width: 200px; opacity: .9; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: opacity .2s, transform .1s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--clr-accent); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--clr-white); color: #fff; }
.btn-sm { padding: .4rem 1rem; font-size: .9rem; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card img { margin-bottom: 1rem; border-radius: var(--radius); }
.card h3 { color: var(--clr-primary); margin-bottom: .5rem; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
th {
  background: var(--clr-primary);
  color: #fff;
  padding: .65rem 1rem;
  text-align: left;
}
td {
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--clr-border);
}
tr:nth-child(even) td { background: var(--clr-light); }
tr:hover td { background: #f0f0f0; }

/* ===== DETAILS / FAQ ===== */
details {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--clr-white);
}
summary {
  padding: .85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--clr-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after { content: '+'; font-size: 1.2rem; color: var(--clr-accent); }
details[open] summary::after { content: '−'; }
details > div { padding: 1rem; border-top: 1px solid var(--clr-border); }

/* ===== GLOSSARY DL ===== */
dl.glossary { margin: 1rem 0; }
dl.glossary dt {
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: 1rem;
  font-size: 1.05rem;
}
dl.glossary dd {
  margin-left: 1.5rem;
  color: var(--clr-muted);
  margin-bottom: .5rem;
}

/* ===== TIMELINE ===== */
ol.timeline {
  list-style: none;
  position: relative;
  padding-left: 2.5rem;
  margin: 1.5rem 0;
}
ol.timeline::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--clr-accent);
}
ol.timeline li {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
}
ol.timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: -2rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
ol.timeline li h4 { color: var(--clr-primary); margin-bottom: .4rem; }

/* ===== CHECKLIST ===== */
ul.checklist { list-style: none; margin: 1rem 0; }
ul.checklist li {
  padding: .5rem .75rem;
  margin-bottom: .4rem;
  background: var(--clr-white);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
ul.checklist li::before { content: '✓ '; color: var(--clr-accent); font-weight: 700; }

/* ===== ALERTS / ASIDE ===== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  border-left: 5px solid;
}
.alert-info { background: var(--clr-light); border-color: var(--clr-primary); }
.alert-warn { background: #fff8e1; border-color: #f39c12; }
.alert-danger { background: #fdecea; border-color: #e74c3c; }

aside.info-box {
  background: var(--clr-light);
  border: 1px solid var(--clr-primary);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
aside.info-box h4 { color: var(--clr-primary); margin-bottom: .5rem; }

/* ===== SECTION HEADINGS ===== */
.section-title {
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin: 2rem 0 1rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--clr-accent);
}
.section-subtitle {
  font-size: 1.15rem;
  color: var(--clr-primary);
  margin: 1.5rem 0 .75rem;
}

/* ===== REVIEWS ===== */
.review-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.review-card img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.review-card blockquote { font-style: italic; color: var(--clr-muted); margin: .5rem 0; }
.review-stars { color: var(--clr-accent); font-size: 1.1rem; }

/* ===== TERMS GLOSSARY LINKS ===== */
.terms-box {
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 1rem 0;
}
.terms-box h4 { color: var(--clr-primary); margin-bottom: .5rem; font-size: .95rem; }
.terms-box ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; }
.terms-box ul li a {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .85rem;
  text-decoration: none;
  color: var(--clr-primary);
}
.terms-box ul li a:hover { background: var(--clr-accent); color: #fff; border-color: var(--clr-accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-primary);
  color: #fff;
  padding: 2.5rem 1.5rem 1rem;
  margin-top: 3rem;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 { font-size: 1rem; margin-bottom: .75rem; color: var(--clr-accent); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul a { color: #ccc; text-decoration: none; font-size: .9rem; }
.footer-col ul a:hover { color: #fff; }
.footer-col p { font-size: .9rem; color: #ccc; line-height: 1.6; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1rem;
  font-size: .85rem;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: #ccc; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 9999;
  font-size: .9rem;
}
#cookie-banner a { color: var(--clr-accent); }
#cookie-banner button {
  background: var(--clr-accent);
  color: #fff;
  border: none;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 640px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .4rem; color: var(--clr-primary); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-error { color: #e74c3c; font-size: .85rem; margin-top: .3rem; display: none; }
.form-success {
  background: #d5f5e3;
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 1rem;
  color: #1e8449;
  display: none;
  margin-top: 1rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: .85rem;
  color: var(--clr-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--clr-primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

/* ===== FIGURE ===== */
figure {
  margin: 1.5rem 0;
  text-align: center;
}
figcaption {
  font-size: .85rem;
  color: var(--clr-muted);
  margin-top: .5rem;
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
  .hero { grid-template-columns: 1fr; }
  .hero img { display: none; }
  .nav-toggle { display: block; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: .5rem; padding: 1rem 0; }
}

@media (max-width: 600px) {
  .utility-bar { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--clr-accent);
  color: #fff;
  padding: .5rem 1rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.process-step {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 4px solid var(--clr-accent);
}
.process-step .step-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-step h4 { color: var(--clr-primary); margin-bottom: .4rem; }

/* ===== PRICING TABLE ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.pricing-card {
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--clr-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin: .75rem 0;
}
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--clr-muted); }
.pricing-card ul { list-style: none; text-align: left; margin: 1rem 0; }
.pricing-card ul li { padding: .35rem 0; border-bottom: 1px solid var(--clr-border); font-size: .9rem; }
.pricing-card ul li::before { content: '✓ '; color: var(--clr-accent); }

/* ===== STAT BOXES ===== */
.stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.stat-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  text-align: center;
  flex: 1 1 140px;
}
.stat-box .stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
}
.stat-box .stat-label { font-size: .85rem; color: var(--clr-muted); }

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
