:root {
  --main-green: #009688;
  --light-blue: #eaf3f7;
  --orange: #F7882F;
  --text-dark: #222;         /* még kontrasztosabb */
  --white: #fff;
  --footer-dark: #202b2a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Titillium Web', Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;      /* teljes oldal alapszöveg – kicsit nagyobb (kb 17px) */
}
header {
  background: var(--main-green);
  color: var(--white);
  padding: 1.7rem 0;
  box-shadow: 0 2px 4px rgba(38, 140, 58, 0.07);
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.1rem;
  flex-wrap: wrap;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.site-name {
  font-size: 1.65rem;        /* nagyobb */
  font-weight: 700;
  letter-spacing: 0.04em;
}
.navbar .tagline {
  font-size: 1.11rem;
  color: var(--light-blue);
  font-weight: 700;
  margin-left: 0.8rem;
  line-height: 1.35;    /* szellősebb két sorban */
  display: block;       /* mindig új sorba kerül */
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.7rem;
}
nav ul li a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.13rem;       /* nagyobb menü */
  letter-spacing: 0.03em;
}
nav ul li a:hover,
nav ul li.active a {
  color: var(--orange);
}
.container {
  display: flex;
  gap: 2.1rem;
  max-width: 1200px;
  margin: 2.2rem auto;
  flex-wrap: wrap;
}
aside {
  flex: 1 1 220px;
  max-width: 230px;
  min-width: 170px;
}
main {
  flex: 2 1 480px;
  min-width: 260px;
  max-width: 650px;
  font-size: 1.1rem;   /* még nagyobb főszöveg */
  line-height: 1.78;
}
.rightbar {
  flex: 1 1 230px;
  max-width: 250px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.sidebar-menu {
  background: var(--light-blue);
  border-radius: 13px;
  padding: 1.15rem;
  margin-bottom: 1.7rem;
  box-shadow: 0 1px 2px rgba(38, 140, 58, 0.07);
}
.sidebar-menu h4 {
  margin-bottom: 0.92rem;
  font-size: 1.22rem;    /* nagyobb cím a bal sávban */
  font-weight: 700;
  color: var(--main-green);
  letter-spacing: 0.02em;
}
.sidebar-menu ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.18rem;    /* nagyobb lista! */
}
.sidebar-menu ul li {
  margin-bottom: 0.72rem;
}
.sidebar-menu ul li a {
  color: var(--main-green);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-menu ul li a:hover {
  color: var(--orange);
  text-decoration: underline;
}
.callout {
  background: var(--main-green);
  color: var(--white);
  padding: 1.3rem 1.08rem;
  border-radius: 13px;
  margin-bottom: 1.1rem;
  text-align: center;
}
.callout.primary {
  background: #009688;      /* fehér háttér az oldalcím dobozban */
  color: #fff;        /* címszöveg zöld */
  font-size: 1.35rem;    /* nagyobb oldalcím/callout szöveg */
  font-weight: 700;
  border: 1.5px solid #e0e0e0;
  margin-bottom: 1.25rem;
}
.callout.secondary {
  background: #e3e7ec;
  color: var(--text-dark);
  border: 1px solid var(--main-green);
}
.callout.success {
  background: #1abc9c;
}
main img.thumbnail {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 1.6rem 0;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(38,140,58,0.08);
  object-fit: cover;
}
hr {
  border: none;
  border-bottom: 1.5px solid var(--main-green);
  margin: 1.6rem 0;
}
.form-section {
  margin-top: 0.3rem;
  background: var(--light-blue);
  padding: 1.1rem;
  border-radius: 13px;
  box-shadow: 0 1px 2px rgba(38,140,58,0.09);
  font-size: 1.11rem;    /* nagyobb */
}
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 0.8rem;
}
.form-section input,
.form-section textarea {
  border: 1px solid #bbb;
  border-radius: 5px;
  padding: 0.6rem;
  font-size: 1.09rem;
  font-family: inherit;
}
.form-section button {
  background: var(--main-green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.09rem;
}
.form-section button:hover {
  background: var(--orange);
  color: var(--white);
}
.callout h6, .form-section h6 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.53rem;
  color: #fff;
}
.callout p, .form-section p {
  font-size: 1.13rem;
  font-weight: 400;
  margin-bottom: 0.82rem;
}
footer {
  background: var(--footer-dark);
  color: var(--white);
  padding: 2.3rem 0 1.3rem 0;
  margin-top: auto;
  text-align: center;
  font-size: 1.09rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.1rem;
  justify-content: space-between;
}
.footer-column {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.1rem;
  font-size: 1.11rem;
}
.footer-column ul li {
  margin-bottom: 0.61rem;
  color: var(--white);
}
.footer-column strong {
  color: var(--white);
  font-size: 1.13rem;
}
@media (max-width: 980px) {
  .container {
    flex-direction: column;
    gap: 1.7rem;
  }
  aside, main, .rightbar {
    max-width: 100%;
  }
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .container {
    flex-direction: column;
  }
  .rightbar {
    flex-direction: column;
    max-width: 100%;
    min-width: 0;
    margin-top: 2.2rem;
  }
  aside, main {
    max-width: 100%;
  }
  main img.thumbnail {
    max-width: 98vw;
  }
}
.dorn-logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 180px;
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(38,140,58,0.08);
}

.dorn-img.float-left {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 190px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(38,140,58,0.08);
}

@media (max-width: 700px) {
  .dorn-img.float-left {
    float: none;
    display: block;
    margin: 1rem auto;
    width: 88%;
    max-width: 230px;
  }
}
.dorn-logo {
      display: block;
      margin: 0 auto 1.3rem auto;
      max-width: 140px;
      height: auto;
    }
    /* Balra igazított, szöveget körbefolyó kép */
    .dorn-img {
      float: left;
      margin: 0 1.2em 1em 0;
      width: 180px;
      max-width: 42vw;
      border-radius: 10px;
      box-shadow: 0 1px 8px rgba(38,140,58,0.10);
      object-fit: cover;
    }
    /* Címsorok */
    main h2 {
      margin-top: 2.2rem;
      margin-bottom: 1.1rem;
      font-size: 1.45rem;
      font-weight: 700;
      color: #009688;
      letter-spacing: 0.01em;
      line-height: 1.3;
    }
    main ul {
      margin-bottom: 1.5em;
      margin-left: 1.2em;
    }
    main ul li {
      font-size: 1.12em;
      margin-bottom: 0.35em;
    }
    @media (max-width: 700px) {
      .dorn-img {
        float: none;
        display: block;
        margin: 0 auto 1.2em auto;
        width: 90vw;
        max-width: 330px;
      }
    }
#cookie-notice {
  display: none; /* csak JS kapcsolja be */
}
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23,121,186,0.97);
  color: #fff;
  padding: 18px 24px 15px 24px;
  font-size: 1em;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -2px 16px rgba(23,121,186,0.08);
}
.cookie-bar button,
#cookie-accept {
  background: #fff;
  color: #1779ba;
  border: none;
  border-radius: 5px;
  padding: 8px 22px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-left: 10px;
}
.cookie-bar button:hover,
#cookie-accept:hover {
  background: #f6fafd;
  color: #125e8e;
}
.floated-img {
  max-width: 170px;
  width: 40vw;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.float-left {
  float: left;
  margin-right: 1.3rem;
}
.float-right {
  float: right;
  margin-left: 1.3rem;
}
@media (max-width: 700px) {
  .floated-img,
  .float-left,
  .float-right {
    float: none !important;
    display: block;
    margin: 0 auto 1.2rem auto !important;
  }
}
.price-list {
  width: 100%;
  max-width: 780px;
  margin: 1.4rem 0 2.4rem 0;
  border-collapse: collapse;
  font-size: 1.08em;
  background: #fff;
  box-shadow: 0 2px 18px rgba(23,121,186,0.09);
  border-radius: 10px;
  overflow: hidden;
}
.price-list th,
.price-list td {
  padding: 14px 12px 12px 12px;
  border-bottom: 1px solid #eaf3f7;
  text-align: left;
}
.price-list thead th {
  background: #1779ba;
  color: #fff;
  font-weight: bold;
  font-size: 1.09em;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #1779ba;
}
.price-list tr:last-child td {
  border-bottom: none;
}
.price-list tbody tr:nth-child(odd) {
  background: #f6fafd;
}
.price-list tbody tr:hover {
  background: #eaf3f7;
}
@media (max-width: 700px) {
  .price-list,
  .price-list thead,
  .price-list tbody,
  .price-list tr,
  .price-list th,
  .price-list td {
    display: block;
    width: 100%;
  }
  .price-list tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #1779ba;
  }
  .price-list th {
    background: #1779ba;
    color: #fff;
    border-radius: 0;
    text-align: left;
    padding: 13px 12px;
  }
  .price-list td {
    background: #f6fafd;
    border: none;
    border-bottom: 1px solid #eaf3f7;
    position: relative;
    padding: 11px 12px 11px 50%;
    min-height: 30px;
    font-size: 1em;
  }
  .price-list td:before {
    content: attr(data-label);
    position: absolute;
    left: 12px;
    top: 9px;
    font-weight: bold;
    color: #1779ba;
    font-size: 0.98em;
    white-space: nowrap;
  }
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 38px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.contact-col {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
}
@media (max-width: 700px) {
  .contact-flex {
    flex-direction: column;
    gap: 18px 0;
  }
  .contact-col {
    max-width: 100%;
    min-width: 0;
  }
}
/* Kiemelt Dorn logó középre */
    .dorn-logo {
      display: block;
      margin: 0 auto 1.3rem auto;
      max-width: 140px;
      height: auto;
    }
    /* Balra igazított, szöveget körbefolyó kép */
    .dorn-img {
      float: left;
      margin: 0 1.2em 1em 0;
      width: 180px;
      max-width: 42vw;
      border-radius: 10px;
      box-shadow: 0 1px 8px rgba(38,140,58,0.10);
      object-fit: cover;
    }
    /* Címsorok */
    main h2 {
      margin-top: 2.2rem;
      margin-bottom: 1.1rem;
      font-size: 1.45rem;
      font-weight: 700;
      color: #009688;
      letter-spacing: 0.01em;
      line-height: 1.3;
    }
    main ul {
      margin-bottom: 1.5em;
      margin-left: 1.2em;
    }
    main ul li {
      font-size: 1.12em;
      margin-bottom: 0.35em;
    }
    @media (max-width: 700px) {
      .dorn-img {
        float: none;
        display: block;
        margin: 0 auto 1.2em auto;
        width: 90vw;
        max-width: 330px;
      }
    }
/* Előugró ablak háttér */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup doboz */
.popup-content {
  background: #fff;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.popup-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.popup-content button {
  margin-top: 1.5rem;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #0056b3;
}

