/* ============================================================
   TRANSALP LOGISTICS GMBH – styles.css
   Industrial · Freight · National
   ============================================================ */

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

:root {
    --void:          #060608;
    --dark:          #0c0e12;
    --mid:           #141720;
    --steel:         #1e2330;
    --orange:        #f97316;
    --orange-dim:    rgba(249,115,22,0.12);
    --orange-glow:   rgba(249,115,22,0.06);
    --yellow:        #fbbf24;
    --slate:         #94a3b8;
    --slate-dim:     rgba(148,163,184,0.15);
    --light:         #dde4ed;
    --white:         #ffffff;
    --line:          rgba(148,163,184,0.10);
    --font-head:     'Barlow Condensed', sans-serif;
    --font-body:     'Barlow', sans-serif;
    --font-mono:     'Inter', monospace;
    --container:     1200px;
    --header-h:      68px;
    --topbar-h:      32px;
    --radius:        2px;
    --transition:    0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--dark); color: var(--light); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.eyebrow { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.section-sub { font-size: 0.95rem; color: var(--slate); line-height: 1.7; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar { height: var(--topbar-h); background: var(--void); border-bottom: 1px solid var(--line); display: flex; align-items: center; overflow: hidden; }
.top-bar-inner { width: 100%; padding: 0 2rem; display: flex; align-items: center; gap: 1.25rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--slate); white-space: nowrap; overflow: hidden; }
.top-bar-inner strong { color: var(--white); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(249,115,22,0.5)} 50%{box-shadow:0 0 0 5px rgba(249,115,22,0)} }
.sep { width: 1px; height: 12px; background: var(--line); flex-shrink: 0; }

/* ── HEADER ──────────────────────────────────────────────── */
.header { position: sticky; top: 0; z-index: 200; height: var(--header-h); background: rgba(6,6,8,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-container { height: 100%; max-width: 1360px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 2rem; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { height: 60px; width: auto; display: block; margin-top: 18px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--light); border-radius: 2px; transition: var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-menu { display: flex; gap: 0.25rem; margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; }
.nav-menu a { padding: 0.4rem 0.85rem; text-transform: uppercase; color: var(--slate); border-radius: var(--radius); transition: color var(--transition), background var(--transition); }
.nav-menu a:hover { color: var(--white); background: var(--orange-dim); }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; height: calc(100vh - var(--header-h) - var(--topbar-h)); min-height: 540px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1); }
.hero-film { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,0.9) 0%, rgba(6,6,8,0.33) 55%, transparent 100%); }
.hero-body { position: relative; z-index: 2; padding: 0 4vw 5rem; max-width: 800px; }
.hero-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.25rem; }
.hero-h1 { display: flex; flex-direction: column; line-height: 0.95; margin-bottom: 1.5rem; }
.hero-h1 span { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; }
.hero-h1-top { font-size: clamp(3.5rem, 8vw, 7rem); color: var(--white); }
.hero-h1-mid { font-size: clamp(2.5rem, 6vw, 5.5rem); color: var(--orange); }
.hero-h1-btm { font-size: clamp(3rem, 7vw, 6.5rem); color: var(--white); }
.hero-desc { font-size: 1rem; color: var(--slate); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; }
.h-stat { padding: 0 2.5rem; }
.h-stat:first-child { padding-left: 0; }
.h-stat-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.h-stat-num small { font-size: 0.5em; color: var(--orange); vertical-align: super; }
.h-stat-label { display: block; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-top: 0.3rem; }
.h-stat-div { width: 1px; height: 48px; background: rgba(148,163,184,0.2); flex-shrink: 0; }
.hero-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--slate); font-size: 1rem; animation: bounce 2.5s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── LEISTUNGEN ──────────────────────────────────────────── */
.leistungen { padding: 6rem 0; }
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.l-card { background: var(--dark); padding: 2.5rem 2rem; transition: background var(--transition); }
.l-card:hover { background: var(--steel); }
.l-icon { font-size: 2rem; color: var(--orange); margin-bottom: 1.25rem; }
.l-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 0.75rem; }
.l-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; }
.l-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.l-list li { font-family: var(--font-mono); font-size: 0.75rem; color: var(--slate); display: flex; align-items: center; gap: 0.5rem; }
.l-list li i { color: var(--orange); font-size: 0.6rem; }

/* ── PARALLAX ────────────────────────────────────────────── */
.parallax-break { position: relative; padding: 6rem 0; overflow: hidden; }
.parallax-bg { position: absolute; inset: -20%; background-size: cover; background-position: center; filter: brightness(0.2); will-change: transform; }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,6,8,0.75), rgba(249,115,22,0.05)); }
.parallax-inner { position: relative; z-index: 2; }
.kpi-row { display: flex; align-items: center; justify-content: center; }
.kpi { text-align: center; padding: 0 4rem; }
.kpi-div { width: 1px; height: 80px; background: var(--slate-dim); flex-shrink: 0; }
.kpi-num { display: block; font-family: var(--font-head); font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; color: var(--white); line-height: 1; }
.kpi-num small { font-size: 0.45em; color: var(--orange); vertical-align: super; }
.kpi-label { display: block; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); margin-top: 0.5rem; }

/* ── NETZWERK ────────────────────────────────────────────── */
.netzwerk { background: var(--mid); }
.netzwerk-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.netzwerk-bild { overflow: hidden; }
.netzwerk-bild img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: transform 0.6s; }
.netzwerk-layout:hover .netzwerk-bild img { transform: scale(1.03); }
.netzwerk-panel { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4vw; }
.netzwerk-panel h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--white); margin: 0.5rem 0 1.25rem; }
.netzwerk-panel p { font-size: 0.92rem; color: var(--slate); line-height: 1.7; margin-bottom: 0.9rem; }
.netzwerk-hubs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.hub-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.75rem; background: var(--orange-dim); border: 1px solid rgba(249,115,22,0.25); border-radius: var(--radius); font-family: var(--font-mono); font-size: 0.75rem; color: var(--light); }
.hub-item i { font-size: 0.5rem; color: var(--orange); }
.hub-badge { font-size: 0.6rem; padding: 0.1rem 0.35rem; background: var(--orange); color: #000; border-radius: var(--radius); font-weight: 700; }

/* ── FLOTTE ──────────────────────────────────────────────── */
.flotte { padding: 6rem 0; }
.flotte-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.f-card { background: var(--dark); padding: 2.5rem 2rem; transition: background var(--transition); }
.f-card:hover { background: var(--steel); }
.f-icon { font-size: 2rem; color: var(--orange); margin-bottom: 1.5rem; }
.f-head { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.9rem; }
.f-count { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.f-head h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; color: var(--slate); }
.f-card p { font-size: 0.87rem; color: var(--slate); line-height: 1.65; }

/* ── LUFTFRACHT ──────────────────────────────────────────── */
.luftfracht-section { background: var(--void); }
.luftfracht-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.lfr-img { overflow: hidden; }
.lfr-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: transform 0.6s; }
.luftfracht-inner:hover .lfr-img img { transform: scale(1.03); }
.lfr-panel { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4vw; }
.lfr-panel h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--white); margin: 0.5rem 0 1.25rem; }
.lfr-panel p { font-size: 0.92rem; color: var(--slate); line-height: 1.7; margin-bottom: 0.9rem; }
.lfr-specs { border-top: 1px solid var(--line); padding-top: 1.5rem; margin: 1.5rem 0 2rem; }
.lfr-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
.lfr-key { color: var(--slate); }
.lfr-val { color: var(--white); font-weight: 500; font-family: var(--font-mono); }
.btn-airport { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 2rem; background: var(--orange); color: var(--void); font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; border-radius: var(--radius); transition: background var(--transition); }
.btn-airport:hover { background: var(--yellow); }

/* ── KONTAKT ─────────────────────────────────────────────── */
.kontakt { padding: 6rem 0; background: var(--mid); }
.kontakt-top { text-align: center; margin-bottom: 3.5rem; }
.kontakt-top h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; text-transform: uppercase; color: var(--white); margin: 0.5rem 0 1rem; }
.kontakt-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.k-card { background: var(--dark); padding: 2.5rem 2rem; text-align: center; transition: background var(--transition); }
.k-card:hover { background: var(--steel); }
.k-card-icon { font-size: 1.75rem; color: var(--orange); margin-bottom: 1.25rem; }
.k-label { display: block; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.k-main { display: block; font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; transition: color var(--transition); }
.k-main:hover { color: var(--orange); }
.k-mail { font-size: 1rem; }
.k-hint { font-size: 0.8rem; color: var(--slate); }
.k-addr { font-size: 0.9rem; color: var(--light); line-height: 1.75; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--void); border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-svg { height: 44px; width: auto; display: block; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--slate); transition: color var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(148,163,184,0.5); }
.footer-copy a { color: var(--orange); }

/* ── BESCAPE DISCLAIMER ──────────────────────────────────── */
.escape-disclaimer { background: #030303; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.escape-disclaimer__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.65; }
.escape-disclaimer__inner i { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 0.14rem; }
.escape-disclaimer__inner strong { font-weight: 600; color: rgba(255,255,255,0.6); }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ── FADE-IN ─────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .netzwerk-layout { grid-template-columns: 1fr; }
    .netzwerk-bild { height: 280px; }
    .luftfracht-inner { grid-template-columns: 1fr; }
    .lfr-img { height: 280px; }
    .kpi-row { flex-wrap: wrap; gap: 2rem; }
    .kpi-div { display: none; }
    .kpi { padding: 0 2rem; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; flex-direction: column; position: fixed; top: calc(var(--header-h) + var(--topbar-h)); left: 0; right: 0; background: rgba(6,6,8,0.98); padding: 2rem; gap: 0.5rem; }
    .nav-menu.open { display: flex; }
    .menu-toggle { display: flex; }
    .hero-body { padding: 0 1.5rem 3.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .h-stat-div { display: none; }
    .h-stat { padding: 0; min-width: 40%; }
    .top-bar-inner { font-size: 0.65rem; gap: 0.75rem; }
}
