body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
  padding-top: 107px;
}

nav a:hover {
  text-decoration: underline;
}

/* Index.html */

.hero {
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  background-repeat: no-repeat;
  margin: auto
}

.figs img{
  width: 35%;
  height: 100%;
  object-fit: cover;
  align-items: center;
}

.referenciak{
  background-color: #828282;
}

.referenciak img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.referenciak img:hover {
  transform: scale(1.05);
}

/* Referencia.html*/

.img-fixed-size {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.text-justify{
  text-align: justify;
}

.text-muted-light{
  color: rgb(197, 197, 197);
}

.referencia{
  background-color: #828282;
}

.csapat img{
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.terkep iframe{
  border:0;
  max-width: 500px;
}

a.external:visited{
  color: darkgrey;
}

a.external:active {
  color: white;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

@media print {
  /* Alap stílusok nyomtatáshoz */
  body {
    background: white !important;
    color: black !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  /* Elrejtjük a navigációs elemeket, láblécet, és interaktív elemeket */
  header, nav, footer, .btn, .form-control, .navbar, .carousel, iframe {
    display: none !important;
  }

  /* A fő tartalom terjedjen ki a teljes szélességre */
  .container, .container-fluid, .row, .col {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Linkek kiírása teljes URL-lel nyomtatáskor */
  a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: gray;
  }

  /* Képek, ha maradnak nyomtatásban */
  img {
    max-width: 100%;
    height: 50%;
  }

  /* Elkerülni a lapokra szakadást */
  h1, h2, h3, p {
    page-break-inside: avoid;
  }
}