/* =========================
   BAAS
   ========================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #222;
  background-color: #fafafa;
  line-height: 1.6;
}

a {
  color: #1f2a44;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
}

.header__logo {
  height: 100px;
  width: auto;
}

/* NAV */
.header__nav {
  display: flex;
  gap: 24px;
}

.header__nav a {
  font-size: 0.95rem;
  color: #1f2a44;
  white-space: nowrap;
}

/* =========================
   HERO
   ========================= */

.hero {
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  min-height: 720px;
}

.hero__overlay {
  min-height: 720px;
  background-color: rgba(20, 30, 55, 0.45);
  display: flex;
  align-items: center;
}

.hero__content {
  color: #ffffff;
}

.hero__subtitle {
  font-size: 1.8rem;
  max-width: 650px;
}

/* =========================
   SISU
   ========================= */

.section {
  margin: 80px 0;
}

.section__title {
  font-size: 1.6rem;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.vat-note {
  font-size: 0.95rem;
  color: #444;
  margin-top: 20px;
  max-width: 700px;
}


/* =========================
   TEENUSED – 2 VEERGU
   ========================= */

.services {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 10px;
}

.services li {
  padding: 6px 0;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  background-color: #eeeeee;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer__content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__symbol {
  height: 32px;
  width: auto;
}

/* =========================
   MOBIIL
   ========================= */

@media (max-width: 768px) {

  /* HEADER */
  .header__content {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 20px 0;
    gap: 16px;
  }

  .header__logo {
    height: 80px;
  }

  .header__nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* HERO */
  .hero {
    min-height: 420px;
  }

  .hero__overlay {
    min-height: 420px;
  }

  .hero__subtitle {
    font-size: 1.3rem;
  }

  /* TEENUSED */
  .services {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  /* SEKTSIOONID */
  .section {
    margin: 50px 0;
  }
}
