@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* Generated by Site Builder */
:root {
  --bg-color: #faf9f6;
  --secondary-bgColor: #f0ede6;
  --text-color: #1a2e1a;
  --text-colorInv: #ffffff;
  --primaryColor: #c9a96e;
  --primaryContrastColor: #2d4a2d;
  --secondaryColor: #ddd5c0;
  --secondaryContrastColor: #4a6b3a;
  --headerBg: #2d4a2d;
  --headerBgAct: #1a2e1a;
  --headerColor: #ffffff;
  --footerBg: #1a2e1a;
  --footerColor: #f0ede6;
  --footerContrastColor: var(--primaryContrastColor);
  --hoverColor: #c9a96e;
  --overlayColor: rgba(0,0,0,0.5);
  --curtainColor: rgba(255, 255, 255,.95);
  --heading-font: "Abril Fatface", sans-serif;
  --body-font: "Open Sans", sans-serif;

  --radius-btn: 7px;
  --radius-input: 2px;
  --radius-card: 2px;

  --shadow: none;
  --shadow-lg: none;

  --radius-img: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--body-font); line-height: 1.5; font-weight: 400; font-size: 16px; color: var(--text-color); background: var(--bg-color); }
main { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); font-size: 2rem; padding-bottom: 0.5rem; text-wrap: balance; color: var(--text-color); }
h4 { font-size: 1.4rem; color: var(--primaryContrastColor); }
p { padding-bottom: 1rem; }
img { max-width: 100%; height: auto; border-radius: var(--radius-img); }
ul { padding-left: 1.5rem; padding-bottom: 1rem; }
li { padding-bottom: 0.5rem; }
a { color: var(--primaryContrastColor); word-break: break-word; text-decoration: none; }
a:hover { color: var(--hoverColor); }

header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--headerBgAct);
  padding: 0.75rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s, transform 0.3s;
}
header .logo { color: var(--headerColor); font-size: 1.4rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; }
header .logo-img { max-height: 40px; width: auto; }
header.logo-center { justify-content: center; }
header.logo-center nav { position: absolute; left: 2rem; }
header.logo-center .header-spacer { position: absolute; right: 2rem; width: 0; }
header.logo-right { flex-direction: row-reverse; }
header nav { display: flex; gap: 1.5rem; }
header nav a {
  color: var(--headerColor); text-decoration: none;
  font-weight: 400; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase;
}
header nav a:hover { text-decoration: underline; color: var(--headerColor); }

/* Dropdown nav */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--headerColor); text-decoration: none;
  font-weight: 400; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase;
  font-family: inherit; display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-dropdown-trigger:hover { text-decoration: underline; }
.nav-dropdown-chevron { transition: transform 0.3s; }
.nav-dropdown.dropdown-open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 220px; width: max-content; background: var(--dropdown-bg, var(--bg-color)); border-radius: var(--radius-card);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); padding: 0.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
  z-index: 1000;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: var(--dropdown-bg, var(--bg-color));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav-dropdown.dropdown-open .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-item {
  display: block; padding: 0.65rem 0.85rem; border-radius: calc(var(--radius-card) * 0.5); text-decoration: none;
  color: var(--dropdown-text, var(--text-color)); transition: background 0.15s;
  text-transform: none; letter-spacing: normal;
}
.nav-dropdown-item:hover { background: var(--secondary-bgColor); text-decoration: none; color: var(--dropdown-text, var(--text-color)); }
.nav-dropdown-title { display: block; font-weight: 600; font-size: 0.9rem; text-transform: none; letter-spacing: normal; }
.nav-dropdown-desc { display: block; font-size: 0.8rem; opacity: 0.6; padding-top: 0.15rem; text-transform: none; letter-spacing: normal; }

.header-cta {
  display: inline-block; padding: 0.5rem 1.25rem; border-radius: 2rem;
  background: var(--primaryContrastColor); color: var(--headerColor); text-decoration: none;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap;
  transition: transform 0.2s, opacity 0.2s;
}
.header-cta:hover { opacity: 0.9; transform: scale(1.03); color: var(--headerColor); text-decoration: none; }
@media (max-width: 768px) { .header-cta { display: none; } }
.ghost { height: 60px; }
.hero-banner { padding-top: 60px; }

footer {
  background: var(--footerBg); color: var(--footerColor);
  padding: 2.5rem 2rem 1rem; text-align: center;
  margin-top: -3.5rem; position: relative; z-index: 2;
}
footer .footer-inner { max-width: 900px; margin: 0 auto; }
footer h6 { font-size: 1.3rem; padding-bottom: .5rem; margin: 0; color: var(--text-colorInv); letter-spacing: 0.5px; }
footer a { color: var(--footerContrastColor); }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem 1.5rem; padding: 0.75rem 0; margin-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-nav a { color: var(--footerColor); text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; opacity: 0.7; transition: opacity 0.3s; white-space: nowrap; }
.footer-nav a:hover { opacity: 1; color: var(--footerContrastColor); }
.footer-contact { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.75rem 1.5rem; padding: 0.75rem 0; font-size: 0.95rem; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--footerColor); font-weight: 500; }
.footer-contact a:hover { color: var(--footerContrastColor); }
.footer-contact svg { opacity: 0.7; flex-shrink: 0; }
.footer-copy { font-size: 0.8rem; opacity: 0.5; padding-top: 0.75rem; }
.footer-branding { display: inline-flex; align-items: center; justify-content: center; gap: 0.15rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); transition: transform 0.3s; text-decoration: none; color: inherit; }
.footer-branding:hover { transform: scale(1.08); color: inherit; text-decoration: none; }
.footer-branding p { font-size: 0.8rem; letter-spacing: 0.5px; margin: 0; padding: 0; color: var(--footerColor); }
.footer-branding svg { width: 42px; height: auto; fill: var(--footerColor); position: relative; top: -6px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.color-block { padding: 3rem 0; }
main > :last-child { padding-bottom: 6rem; }
.clr-0 { background-color: var(--bg-color); }
.clr-1 { background-color: var(--secondary-bgColor); }
.clr-2 { background-color: var(--primaryContrastColor); color: var(--text-colorInv); }
.clr-3 { background-color: var(--primaryColor); color: var(--text-color); }
.intro { flex: 1 1 45%; min-width: 300px; }

.jumbotron-subpage { padding: 3rem 0; text-align: center; }
.undersidatitel { padding: 1.5rem 1.5rem 2rem; }
.undersidatitel h1 { font-size: 2rem; padding-bottom: 0.25rem; }
.undersidatitel p { font-size: 120%; line-height: 1.35; }
.undersidatitel hr { width: 80px; height: 3px; background: var(--text-color); border: none; margin: 1rem auto; }

.cta-block { padding: 3rem 2rem; text-align: center; }
.cta-block h2 { margin-bottom: 0.25rem; }
.cta-block .inner { max-width: 800px; margin: 0 auto; }

.buttons1 {
  display: inline-block; padding: 0.8rem 2rem;
  background-color: var(--primaryContrastColor); color: var(--text-colorInv);
  border: none; cursor: pointer; font-size: 1rem; font-weight: 600;
  text-decoration: none; border-radius: var(--radius-btn); margin-top: 1rem;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
  box-shadow: var(--shadow);
}
.buttons1:hover { background-color: var(--hoverColor); }
a.buttons1 { color: var(--text-colorInv); text-decoration: none; }

blockquote {
  border-left: 4px solid var(--primaryContrastColor);
  padding: 1rem 1.5rem; margin: 1rem 0;
  font-size: 140%; font-style: italic; text-wrap: balance;
}

fieldset { border: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
fieldset p { width: 100%; }
input, select { height: 50px; border: 1px solid #ddd; padding: 0.5rem 0.7rem; border-radius: var(--radius-input); font-family: inherit; font-size: 1rem; width: 100%; }
textarea { border: 1px solid #ddd; padding: 0.5rem 0.7rem; border-radius: var(--radius-input); font-family: inherit; font-size: 1rem; width: 100%; min-height: 120px; resize: vertical; }
input:hover, textarea:hover, select:hover { border-color: var(--primaryContrastColor); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primaryContrastColor); box-shadow: 0 0 0 2px rgba(2,115,190,0.2); }
.halva { width: calc(50% - 0.375rem); }
input#check { height: auto; width: auto; }
input.buttons1 { height: auto; border: 0; background-color: var(--primaryContrastColor); color: var(--text-colorInv); cursor: pointer; width: auto; border-radius: var(--radius-btn); }
input.buttons1:hover { background-color: var(--hoverColor); }

.kontakt { text-align: center; padding: 2rem 0; }
.kontakt hr { background: var(--primaryContrastColor); height: 2px; border: none; margin-bottom: 0.5rem; }
.k-bloc { display: flex; flex-direction: column; align-items: center; padding: 1rem; justify-content: center; }
.k-bloc img { max-width: 26px; height: auto; margin-bottom: 0.5rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.nav-toggle { display: none; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--headerColor, var(--text-color)); transition: transform 0.3s, opacity 0.3s; }
header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#form-status { padding: 0.75rem; border-radius: var(--radius-input); text-align: center; margin-top: 0.5rem; }
#form-status.success { background: #d4edda; color: #155724; }
#form-status.error { background: #f8d7da; color: #721c24; }

/* ── Stats Grid ── */
.stats-grid { padding: 4rem 0; text-align: center; }
.stats-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.stat-item { flex: 1 1 0; min-width: 100px; max-width: 280px; padding: 1.5rem; }
.stat-value { display: block; font-family: var(--heading-font); font-size: 2.5rem; font-weight: 700; line-height: 1.2; color: inherit; white-space: nowrap; }
.stat-label { display: block; font-size: 0.95rem; opacity: 0.8; margin-top: 0.25rem; }

/* Stats scaling by item count */
.stats-grid[data-count="1"] .stat-item { max-width: 400px; }
.stats-grid[data-count="1"] .stat-value { font-size: 3.5rem; }
.stats-grid[data-count="2"] .stat-item { max-width: 340px; }
.stats-grid[data-count="2"] .stat-value { font-size: 3rem; }
.stats-grid[data-count="5"] .stat-value,
.stats-grid[data-count="6"] .stat-value { font-size: 2rem; }
.stats-grid[data-count="5"] .stat-label,
.stats-grid[data-count="6"] .stat-label { font-size: 0.85rem; }
.stats-grid[data-count="7"] .stat-value,
.stats-grid[data-count="8"] .stat-value { font-size: 1.75rem; }
.stats-grid[data-count="7"] .stat-label,
.stats-grid[data-count="8"] .stat-label { font-size: 0.8rem; }
.stats-grid[data-count="7"] .stat-item,
.stats-grid[data-count="8"] .stat-item { min-width: 80px; padding: 1rem; }
.stats-grid[data-count="7"] .stats-inner,
.stats-grid[data-count="8"] .stats-inner { gap: 1rem; }

/* ── Marquee ── */
.marquee-block { overflow: hidden; padding: 1.5rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-content { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.marquee-item { font-family: var(--heading-font); font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 300; white-space: nowrap; padding: 0 1rem; line-height: 1; }
.marquee-sep { font-size: clamp(1.5rem, 4vw, 3rem); opacity: 0.3; padding: 0 0.5rem; font-weight: 300; line-height: 1; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Accordion ── */
.accordion { width: 100%; }
.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.accordion-item summary { cursor: pointer; padding: 1.25rem 0; font-size: 1.1rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.accordion-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform 0.2s; }
.accordion-item[open] summary::after { transform: rotate(45deg); }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-content { padding: 0 0 1.25rem; }
.accordion-content p { padding-bottom: 0; }

/* ── Text-Image Variants ── */
.text-image-fullbleed { background-size: cover; background-position: center; min-height: 500px; display: flex; align-items: center; }
.text-image-fullbleed-overlay { width: 100%; padding: 4rem 2rem; }
.text-image-fullbleed-content { max-width: 700px; margin: 0 auto; color: #fff; }
.text-image-fullbleed-content h3 { color: #fff; }
.text-image-card { display: flex; flex-wrap: wrap; background: var(--bg-color); border-radius: var(--radius-card); box-shadow: var(--shadow-lg); overflow: hidden; }
.text-image-card-img { flex: 1 1 45%; min-width: 280px; }
.text-image-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.text-image-card-text { flex: 1 1 45%; min-width: 280px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }

/* ── CTA Variants ── */
.cta-split { padding: 3rem 0; }
.cta-split-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-split-inner h2 { flex: 1; margin: 0; padding: 0; }
.cta-banner { position: relative; overflow: hidden; background-size: cover; background-position: center; min-height: 350px; display: flex; align-items: center; justify-content: center; text-align: center; }
.cta-banner-overlay { position: relative; z-index: 1; width: 100%; padding: 5rem 2rem; }
.cta-banner-overlay h2 { color: #fff; margin-bottom: 0.5rem; }

/* ── Benefits Grid Variant ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; width: 100%; }
.benefit-card { padding: 2rem; border-radius: var(--radius-card); background: var(--bg-color); box-shadow: var(--shadow); }
.benefit-card h4 { margin-bottom: 0.25rem; }
.benefit-card p { padding-bottom: 0; }

/* ── Portfolio Grid ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; width: 100%; }
.portfolio-grid[data-columns="3"] { grid-template-columns: repeat(3, 1fr); }
.portfolio-card { border-radius: var(--radius-card); overflow: hidden; background: var(--bg-color); box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.portfolio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.portfolio-card-img img { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: 0; }
.portfolio-card-body { padding: 1.25rem; }
.portfolio-card-body h4 { margin-bottom: 0.25rem; }
.portfolio-card-body p { padding-bottom: 0.5rem; font-size: 0.95rem; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.portfolio-tag { display: inline-block; padding: 0.2rem 0.6rem; font-size: 0.75rem; font-weight: 500; border-radius: var(--radius-btn); background: var(--primaryColor); color: var(--text-color); }

/* ── Pricing Table ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; width: 100%; align-items: stretch; }
.pricing-tier { background: var(--bg-color); border-radius: var(--radius-card); padding: 2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; text-align: center; }
.pricing-highlighted { border: 2px solid var(--primaryContrastColor); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-price { font-size: 1.8rem; font-weight: 800; color: var(--primaryContrastColor); padding-bottom: 0.5rem; }
.pricing-desc { font-size: 0.9rem; opacity: 0.8; padding-bottom: 1rem; }
.pricing-features { list-style: none; padding: 0 0 1.5rem; text-align: left; flex: 1; }
.pricing-features li { padding: 0.4rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.pricing-features li::before { content: '✓ '; color: var(--primaryContrastColor); font-weight: 700; }
.pricing-tier .buttons1 { margin-top: auto; }

/* ── Team Grid ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; width: 100%; }
.team-grid[data-columns="1"] { grid-template-columns: 1fr; max-width: 500px; }
.team-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); }
.team-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr); }
.team-grid[data-columns="5"] { grid-template-columns: repeat(5, 1fr); }
.team-grid[data-columns="6"] { grid-template-columns: repeat(6, 1fr); }
.team-card { text-align: center; padding: 1.5rem; border-radius: var(--radius-card); background: var(--bg-color); box-shadow: var(--shadow); }
.team-card.clr-0 { background-color: var(--bg-color); }
.team-card.clr-1 { background-color: var(--secondary-bgColor); }
.team-card.clr-2 { background-color: var(--primaryContrastColor); color: var(--text-colorInv); }
.team-card.clr-3 { background-color: var(--primaryColor); color: var(--text-color); }
.team-photo { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; margin: 0 auto 1rem; display: block; border: 3px solid var(--primaryColor); }
.team-name { font-size: 1.1rem; margin-bottom: 0; }
.team-role { font-size: 0.85rem; color: var(--primaryContrastColor); font-weight: 600; padding-bottom: 0.5rem; }
.team-card.clr-2 .team-role { color: var(--text-colorInv); opacity: 0.85; }
.team-bio { font-size: 0.9rem; opacity: 0.85; padding-bottom: 0; }

@media (max-width: 768px) {
  .stats-inner { gap: 1rem; }
  .stat-item { min-width: 120px; padding: 1rem; }
  .stat-value { font-size: 2rem; }
  .text-image-fullbleed { min-height: 350px; }
  .text-image-fullbleed-overlay { padding: 2.5rem 1.5rem; }
  .text-image-card { flex-direction: column; }
  .cta-split-inner { flex-direction: column; text-align: center; }
  .portfolio-grid, .portfolio-grid[data-columns="3"] { grid-template-columns: 1fr; }
  .pricing-highlighted { transform: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid[data-columns="4"], .team-grid[data-columns="5"], .team-grid[data-columns="6"] { grid-template-columns: repeat(2, 1fr); }
  .team-grid[data-columns="1"], .team-grid[data-columns="2"] { grid-template-columns: 1fr; }
  .team-photo { width: 80px; height: 80px; }
  .cta-banner { min-height: 250px; }
}

@media (max-width: 768px) {
  .container { flex-direction: column; }
  .intro { min-width: 100%; }
  h1, h2, h3, h4, h5, h6 { font-size: 1.75rem; }
  .halva { width: 100%; }
  header { padding: 0.5rem 1rem; }
  .nav-toggle { display: flex; }
  header nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-color); padding: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 999; }
  header.nav-open nav { display: flex; }
  header nav a { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(128,128,128,0.2); }
  .nav-dropdown { position: static; width: 100%; flex-direction: column; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 0.75rem 1rem; border-bottom: 1px solid rgba(128,128,128,0.2); font-size: 0.9rem; }
  .nav-dropdown-menu {
    position: static; transform: none; box-shadow: none; border-radius: 0;
    min-width: 0; width: 100%; padding: 0; opacity: 1; visibility: visible;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.dropdown-open .nav-dropdown-menu { max-height: 500px; }
  .nav-dropdown-item { padding: 0.6rem 1rem 0.6rem 2rem; border-radius: 0; border-bottom: 1px solid rgba(128,128,128,0.1); }
}



.color-block { padding: 5rem 0; }
.cta-block { padding: 5rem 2rem; }
.jumbotron-subpage { padding: 5rem 0; }

header {
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.header-split-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 2rem;
  font-size: 0.8rem;
  background: rgba(0,0,0,0.15);
}
.header-split-top a { color: var(--headerColor); opacity: 0.85; text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem; }
.header-split-top a:hover { opacity: 1; }
.header-split-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 2rem;
  gap: 1rem;
}
.header-split-nav { display: flex; gap: 1.5rem; align-items: center; }
header .logo { font-size: 1.6rem; padding: 0 1.5rem; }
.header-cta {
  font-size: 0.75rem;
  padding: 0.45rem 1.1rem;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.ghost { height: 0; }
.hero-banner { padding-top: 0; }
@media (max-width: 768px) {
  .header-split-top { display: none; }
  .header-split-main { flex-direction: column; padding: 0.75rem 1rem; }
  .header-split-nav { display: none; }
  header.nav-open .header-split-nav { display: flex; }
  header.nav-open .header-split-main { flex-direction: column; }
  header .logo { padding: 0; font-size: 1.3rem; }
  header nav { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; background: none; box-shadow: none; padding: 0.5rem 0; }
  header nav a { border-bottom: none; padding: 0.4rem 0.6rem; font-size: 0.75rem; }
}




header { position: absolute; }
.ghost { display: none; }
.hero-banner { padding-top: 0; }


/* ── Idun: Elegant restaurant / event template ── */

/* Bebas Neue for uppercase UI elements */


/* Typography: elegant serif headings */
h1, h2, h3 {
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: none;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h4 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
p { line-height: 1.7; font-size: 1rem; }

/* Buttons: soft rounded, uppercase */
.buttons1 {
  border-radius: var(--radius-btn);
  padding: 0.9rem 2.5rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: none;
}
.buttons1:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
a.buttons1 { text-decoration: none; }
input.buttons1 { border-radius: var(--radius-btn); }

/* Header CTA: static, no animation — bottom corners follow Designstil */
header .header-cta {
  --cta-static: 1;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn) !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
  transform: none !important;
  animation: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  isolation: auto !important;
}
header .header-cta::before {
  content: none !important;
}

/* Form inputs: soft rounded */
input, select, textarea {
  border-radius: var(--radius-input);
  border: 1px solid rgba(0,0,0,0.15);
}
input:focus, textarea:focus, select:focus {
  box-shadow: none;
  border-color: var(--primaryContrastColor);
}

/* Parallax section typography */
.parallax-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.parallax-section .parallax-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}
.parallax-section .parallax-divider {
  width: 60px;
  height: 2px;
  margin: 1.5rem 0;
}
.parallax-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
}

/* Split header: nav on top, bar below */
header {
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.header-split-main {
  order: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 2rem;
  gap: 1rem;
  background: var(--headerBg);
}
.header-split-main .logo { color: var(--headerColor); }
.header-split-nav a { color: var(--headerColor); }
.header-split-nav .nav-dropdown-trigger { color: var(--headerColor); }
.header-split-top {
  order: 2;
  position: absolute;
  top: 100%;
  right: 2rem;
  width: auto;
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 0.85rem;
  z-index: 99;
}
.header-split-top a {
  color: var(--headerBg);
  opacity: 1;
  background: var(--headerColor);
  padding: 0.55rem 1.5rem;
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  white-space: nowrap;
}
.header-split-top .header-cta {
  background: var(--headerBg);
  color: var(--headerColor);
  border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  padding: 0.55rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.header-split-top .header-cta:hover {
  opacity: 0.9;
}
header.scrolled .header-split-top .header-cta {
  background: var(--headerBgAct);
}
header nav a, .nav-dropdown-trigger {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 3px;
  font-weight: 400;
}
header .logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
header.scrolled .header-split-main {
  background: var(--headerBgAct);
}
header.scrolled .header-split-top a:not(.header-cta) {
  background: var(--headerColor);
}

/* Dropdown: match button corners */
.nav-dropdown-menu { border-radius: var(--radius-card); }
.nav-dropdown-item { border-radius: calc(var(--radius-card) * 0.5); }

/* Contact form anchor */
#contact-form { scroll-margin-top: 120px; }

/* Sections: spacious */
.color-block { padding: 5rem 0; }
.container { max-width: 1100px; }

/* Hero: elegant fullscreen */
.hero-banner h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.03em;
}
.hero-banner p {
  font-size: 1.1rem;
  max-width: 500px;
  font-weight: 300;
}

/* Subpage headers */
.jumbotron-subpage { padding: 5rem 0 2rem; }
.undersidatitel h1 {
  letter-spacing: 0.02em;
}
.undersidatitel hr {
  width: 60px;
  height: 2px;
  border-radius: 0;
  background: var(--primaryContrastColor);
}

/* Footer: elegant */
footer { padding: 3rem 2rem 1.5rem; }
footer h6 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}
.footer-nav a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* CTA: elegant */
.cta-block { padding: 5rem 2rem; }
.cta-block h2 { letter-spacing: 0.02em; }

/* Benefits: clean cards with soft rounding */
.benefit-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Team: elegant cards */
.team-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,0.08);
}
.team-name {
  font-family: var(--heading-font);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
}
.team-role {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.team-photo {
  border: 3px solid var(--primaryColor);
}

@media (max-width: 768px) {
  .color-block { padding: 3rem 0; }
  .cta-block { padding: 3rem 1.5rem; }
  .hero-banner h1 { font-size: 2rem; }
  .parallax-section h2 { font-size: 1.8rem; }
  .parallax-section .parallax-content {
    max-width: 100% !important;
    padding: 2rem !important;
  }
  .header-split-main { padding: 0.5rem 1rem; }
  .header-split-top { padding: 0.4rem 1rem; justify-content: center; }
}


.buttons1, .header-cta { position: relative; overflow: hidden; isolation: isolate; }
.buttons1::before, .header-cta::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--hoverColor); transform: scaleX(0); transform-origin: left;
  z-index: -1;
}
.buttons1:hover::before, .header-cta:hover::before { transform: scaleX(1); }
@keyframes btn-slide-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes btn-slide-out { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.buttons1::before, .header-cta::before { animation: btn-slide-out 0.35s ease-in forwards; }
.buttons1:hover::before, .header-cta:hover::before { animation: btn-slide-in 0.35s ease-out forwards; }


header nav, .header-split-nav { gap: 42px; }

/* No hover effect */
header nav a:hover { text-decoration: none; }










.benefit-card, .portfolio-card, .pricing-tier, .team-card { box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.1); }
:root { --dropdown-bg: #f5b800; }
:root { --dropdown-text: #ffffff; }