/* =========================================
   LWT Salzburg – Main Stylesheet
   ========================================= */

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

:root {
  --c-bg:           #F4F5F7;
  --c-surface:      #FFFFFF;
  --c-text:         #1A1E27;
  --c-muted:        #6B7280;
  --c-accent:       #1B3A6B;
  --c-accent-mid:   #2E5BA8;
  --c-accent-light: #E8EDF7;
  --c-gray-dark:    #3A4150;
  --c-border:       rgba(26,30,39,0.10);
  --c-divider:      rgba(26,30,39,0.07);
  --font-display:   'DM Sans', Arial, sans-serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  14px;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.65;
}

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

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #e8edf7;
  border-bottom: 1px solid rgba(27,58,107,0.12);
  padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: background .3s, box-shadow .3s;
}
/* Nav always solid – no transparent state */
.site-nav--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-logo a { text-decoration: none; }
.nav-logo, .nav-logo a {
  font-family: var(--font-display);
  font-size: 20px; color: var(--c-accent);
}
.nav-logo span {
  display: block; font-family: var(--font-body);
  font-size: 10px; font-weight: 300; color: var(--c-muted);
  letter-spacing: 1.5px; text-transform: uppercase; margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 18px; font-weight: 600; color: var(--c-accent); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--c-accent-mid); }
.nav-links .nav-cta {
  background: var(--c-accent); color: #fff !important;
  padding: 9px 20px; border-radius: 7px; font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--c-accent-mid); }
.nav-langs { display: flex; gap: 6px; }
.lang-btn {
  font-size: 11px; color: var(--c-muted); background: none;
  border: 1px solid var(--c-border); padding: 3px 9px;
  border-radius: 4px; cursor: pointer; font-family: var(--font-body); transition: all .2s;
}
.lang-btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.lang-btn.active { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.nav-langs { display: none !important; }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; }

/* ---- HERO FULLSCREEN ---- */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero-fullscreen:hover .hero-bg-image { transform: scale(1); }
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,20,40,0.55) 0%,
    rgba(10,20,40,0.35) 50%,
    rgba(10,20,40,0.60) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: #93c5fd; }
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-btn {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}
/* Scroll hint arrow */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block; width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: lwt-scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes lwt-scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.4; }
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--c-accent); color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; text-decoration: none;
  cursor: pointer; border: none; font-family: var(--font-body);
  transition: background .2s;
}
.btn-primary:hover { background: var(--c-accent-mid); color: #fff; }
.btn-primary.btn-large { font-size: 16px; padding: 17px 40px; }
.btn-ghost {
  color: var(--c-text); font-size: 14px; text-decoration: none;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-ghost-arrow {
  width: 32px; height: 32px; border: 1px solid var(--c-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: border-color .2s;
}
.btn-ghost:hover .btn-ghost-arrow { border-color: var(--c-accent); color: var(--c-accent); }

/* ---- SECTIONS ---- */
.section { padding: 100px 80px; }
.section-white { background: var(--c-surface); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
h2 + * { margin-top: 0; }
.section-header h2 { margin-bottom: 0; }
.advantages h2 { margin-bottom: 12px; }
.cta-section h2 { margin-bottom: 10px; }
.section-eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--c-accent-mid); font-weight: 500; margin-bottom: 20px; }
h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 3.5vw, 46px); line-height: 1.1; letter-spacing: -.8px; color: var(--c-text); }
.section-link { color: var(--c-muted); font-size: 13px; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.section-link:hover { color: var(--c-text); }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; }
.service-card { background: var(--c-surface); padding: 40px 36px; transition: background .2s; }
.service-card:hover { background: #F7F8FA; }
.service-icon { width: 44px; height: 44px; background: var(--c-accent-light); border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--c-accent-mid); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-size: 17px; font-weight: 500; color: var(--c-text); margin-bottom: 20px; }
.service-desc { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

/* ---- ADVANTAGES ---- */
.advantages { background: var(--c-gray-dark); color: #fff; padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.advantages h2 { color: #fff; }
.advantages .section-eyebrow { color: rgba(255,255,255,.45); }
.advantages-desc { color: rgba(255,255,255,.68); margin-top: 24px; font-size: 16px; line-height: 1.75; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.stat-item { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; }
.stat-num { font-family: var(--font-display); font-size: 48px; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); }

/* ---- GALLERY / REFERENZEN ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-wrap { display: flex; flex-direction: column; }
.gallery-item-caption {
  margin-top: 12px;
  font-size: 12px;
  color: #3a4150a8;
  line-height: 1.45;
}
.gallery-caption {
  margin-top: 30px;
  font-size: 14px;
  color: #3A4150;
  line-height: 1.65;
  max-width: 100%;
}

/* ---- PRODUCTS ---- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { display: block; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 32px; cursor: pointer; transition: border-color .25s, transform .25s; text-decoration: none; color: inherit; }
.product-card:hover { border-color: var(--c-accent-mid); transform: translateY(-3px); color: inherit; }
.product-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--c-accent-mid); background: var(--c-accent-light); padding: 4px 11px; border-radius: 20px; margin-bottom: 18px; }
.product-name { font-size: 16px; font-weight: 500; color: var(--c-text); margin-bottom: 10px; }
.product-desc { font-size: 13px; color: var(--c-muted); line-height: 1.65; }

/* ---- CTA ---- */
.cta-section { background: var(--c-accent-light); padding: 120px 80px; text-align: center; border-top: 1px solid rgba(46,91,168,.12); }
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-section .section-eyebrow { margin-bottom: 20px; }
.cta-section h2 { margin-bottom: 20px; color: var(--c-accent); }
.cta-section > .cta-inner > p { color: var(--c-muted); margin-bottom: 40px; font-size: 17px; line-height: 1.7; }
.cta-address { margin-top: 24px; font-size: 14px; color: var(--c-muted); }

/* ---- FOOTER ---- */
.site-.cookie-spacer { height: 50px; background: var(--c-bg); }
footer { border-top: 1px solid var(--c-border); }
.footer-inner { padding: 60px 80px; display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 20px; color: var(--c-accent); margin-bottom: 16px; }
.footer-logo span { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 300; color: var(--c-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: -2px; }
.footer-tagline { font-size: 13px; color: var(--c-muted); line-height: 1.8; }
.footer-tagline a { color: var(--c-muted); text-decoration: none; }
.footer-tagline a:hover { color: var(--c-accent); }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--c-muted); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--c-text); }
.footer-bottom { border-top: 1px solid var(--c-border); padding: 24px 80px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--c-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--c-muted); text-decoration: none; text-transform: uppercase; letter-spacing: .8px; }
.footer-legal a:hover { color: var(--c-text); }

/* ---- STANDARD PAGE / LOOP ---- */
.page-content { max-width: 760px; margin: 0 auto; padding: 108px 40px 0; }
.entry-content { max-width: 760px; margin: 0 auto; padding: 0 40px 60px; }
.entry-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content h2,
.entry-content h3 { text-align: left; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .site-nav { padding: 0 32px; }
  .hero-left { padding: 0 48px; }
  .section, .advantages, .cta-section { padding: 72px 48px; }
  .footer-inner, .footer-bottom { padding-left: 48px; padding-right: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; max-height: none; height: auto; }
  .hero-left { padding: 60px 28px; }
  .hero-right { height: 320px; }
  .nav-links, .nav-langs { display: none; }
  .nav-mobile-toggle { display: flex; }
  .site-nav { padding: 0 24px; }
  .section, .advantages, .cta-section { padding: 60px 24px; }
  .footer-inner, .footer-bottom { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .services-grid, .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- NAV TAGLINE (rechts vom Logo) ---- */
.nav-tagline {
  font-size: 18px;
  font-weight: 700;
  color: #6B7280;
  font-family: var(--font-body);
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(27,58,107,0.15);
  line-height: 1.2;
  white-space: nowrap;
}
