:root {
  --primary: #da2128;
  --secondary: #808285;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", "Helvetica Neue", "Montserrat", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.5;
}

/* =========================
   HEADER (FLEX)
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo img {
  max-height: 60px;
  width: auto;
}

.nav {
  display: flex;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

/* =========================
   HERO (FLEX + RESPONSIVE)
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  position: relative;

  background: url("vetelan_vertical_web_logo.png") center/cover no-repeat;
}

/* parallax only on desktop */
@media (min-width: 900px) {
  .hero {
    background-attachment: fixed;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.hero-logo {
  max-width: 144px;
  height: auto;
}

.hero h1 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #f2f2f2;
}

/* =========================
   TRANSITION
========================= */
.transition {
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), #fff);
}

/* =========================
   CONTACT (FLEX)
========================= */
.contact {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-links a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
}

.contact-links a:hover {
  color: var(--primary);
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  font-size: 0.85rem;
  color: #666;
}

/* =========================
   MOBILE HEADER FIX
========================= */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}