/* =====================================================
   KOSTKA TRANSPORTE — Visual Enhancement Layer
   Layered on top of compiled Next.js CSS modules.
   Uses the exact hashed class names from the build.
   ===================================================== */

/* ===== GLOBAL ===== */
html {
  scroll-behavior: smooth;
}

/* ===== NAVIGATION ===== */
.nav___2A0d_ {
  transition: background-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.nav___2A0d_.sticky___2Hm6m {
  background-color: rgba(5, 12, 27, 0.93) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.nav___2A0d_ .menu___975ve li a {
  transition: color 0.2s ease;
}

/* ===== HERO — entrance animation ===== */
.header___3SJAG .hOne___rcWKa {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
  animation: ktFadeUp 0.85s ease both;
}

.header___3SJAG .hThree___2s0oG {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  animation: ktFadeUp 0.85s 0.18s ease both;
}

.header___3SJAG .content___2VeZ1 {
  animation: ktFadeUp 0.85s 0.36s ease both;
}

@keyframes ktFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEADING DIVIDERS — orange accent ===== */
.hOne___rcWKa.divider___2SIaX::after,
.hTwo___Xo8UI.divider___2SIaX::after,
.hThree___2s0oG.divider___2SIaX::after,
.hFour___1uFYc.divider___2SIaX::after {
  background-color: #fda630;
  height: 4px;
  width: 52px;
  border-radius: 2px;
}

/* ===== PRIMARY BUTTON ===== */
.button___FEZ1t {
  letter-spacing: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.button___FEZ1t:hover {
  border-color: #fda630 !important;
  color: #fda630 !important;
  box-shadow: 0 0 22px rgba(253, 166, 48, 0.28);
  transition: color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

/* ===== ICON BUTTONS (mail / phone / fax / arrow-up) ===== */
.pureButton___1zXh2 {
  background: linear-gradient(135deg, #fdba4a 0%, #f08118 100%) !important;
  border-radius: 5px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 10px rgba(253, 166, 48, 0.28) !important;
}

.pureButton___1zXh2:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(253, 166, 48, 0.45) !important;
}

/* disable the weird blue→green hover overlay */
.pureButton___1zXh2::before {
  display: none !important;
}

/* ===== SERVICE CARDS (homepage grid) ===== */
.service___34akv {
  border-radius: 4px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease !important;
  overflow: hidden;
}

.service___34akv:hover {
  opacity: 1 !important;
  transform: scale(1.018);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55) !important;
}

.service___34akv .hThree___2s0oG {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* ===== CONTACT FORM INPUTS ===== */
.field___25YCM,
.area___3K91N {
  border-radius: 3px !important;
  border: 1.5px solid transparent !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
}

.field___25YCM:focus,
.area___3K91N:focus {
  border-color: #fda630 !important;
  box-shadow: 0 0 0 3px rgba(253, 166, 48, 0.16) !important;
  outline: none !important;
}

/* ===== SERVICES DETAIL PAGE ===== */
.serviceDetails___1INmw .illustration___Y4Rt6 img {
  border-radius: 5px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.serviceDetails___1INmw .illustration___Y4Rt6 img:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
  transform: scale(1.01);
}

/* Pricing table improvements */
.serviceDetails___1INmw .details___242iR table {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(31, 71, 136, 0.14);
  border: none !important;
}

.serviceDetails___1INmw .details___242iR table thead tr th {
  background: linear-gradient(135deg, #1f4788 0%, #163570 100%) !important;
  letter-spacing: 0.5px;
}

.serviceDetails___1INmw .details___242iR table tbody tr:nth-child(even) td {
  background-color: #f0f4fb;
}

.serviceDetails___1INmw .details___242iR table tbody tr {
  transition: background-color 0.18s ease;
}

.serviceDetails___1INmw .details___242iR table tbody tr:hover td {
  background-color: #dce8f7;
}

/* ===== FLEET PAGE — vehicle cards ===== */
.vehicle___RcDSg {
  padding: 1.4rem 1.6rem;
  background: #ffffff;
  border-radius: 6px;
  border-left: 4px solid #fda630;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.vehicle___RcDSg:hover {
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.13);
  transform: translateX(5px);
}

/* ===== SPONSORING PAGE ===== */
.section___iTyuo {
  background-color: #ffffff !important;
}

/* UFD-Logo: transparenter Hintergrund, kein blend-mode nötig */
.section___iTyuo .firstSection___3t1Ve .illustration___Y4Rt6 {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section___iTyuo .firstSection___3t1Ve .illustration___Y4Rt6 img {
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: 420px;
  width: 100%;
}

/* Roberto Soldic (schwarzer PNG-Hintergrund): dunkler Container lässt Schwarz verschwinden */
.section___iTyuo .serviceDetails___1INmw:not(.firstSection___3t1Ve) .illustration___Y4Rt6 {
  background-color: #0d0d0d;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section___iTyuo .serviceDetails___1INmw:not(.firstSection___3t1Ve) .illustration___Y4Rt6 img {
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100%;
  max-width: 380px;
  display: block;
}

/* ===== FOOTER ===== */
.footer___3Ix8O {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer___3Ix8O .inner___19gId ul li a {
  transition: color 0.2s ease;
}
