@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --dark-green: #3e524c;
  --medium-green: #6f847a;
  --green: #8a9e94;
  --light-green: #b6c0b3;
  --homok: #d9d9d9;
  --body-text: #434f49;
  --pink: #e9a9c4;
  --dark-pink: #dc6ea6;
  --title: #2a3937;
  --white: #fff;
  --ice-blue: #e9faff;
  --light-blue: #a0bbe4;
  --dark-blue: #2a6aca;
  --radius: 0.5rem;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "inter", sans-serif;
  color: var(--title);
}
img {
  max-width: 75%;
  height: auto;
  border-radius: 8px;
  border: 2px solid var(--ice-blue);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
}
h1 {
  font-family: "Playfair display";
  font-weight: 400;
  font-style: oblique;
  font-size: 3rem;
  position: relative;
  padding-bottom: 1rem;
  z-index: 1;
  text-align: center;
}
h1,
h1 + h3,
h1 + h2,
h1 + p {
  opacity: 0;
  transform: translateX(-50px);
  animation-delay: 0.4s;
}
h1.visible,
h3.visible,
h2.visible,
p.visible {
  animation: hello 1s ease-in-out forwards;
}
@keyframes hello {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
h2 {
  font-family: "Poppins";
  font-size: 2rem;
  margin-top: 0;
  position: relative;
  padding-bottom: 1rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
p,
li {
  line-height: 1.3;
  font-size: 1.3rem;
  font-weight: 350;
}
ul {
  padding: 0 20px;
  list-style-type: square;
}
ul li::marker {
  color: var(--dark-pink);
  font-size: 20px;
  line-height: 0;
}
header,
#contact {
  background: linear-gradient(to bottom, #7b93b8 0%, #e9faff 100%);
  margin-bottom: 4rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
}
head,
#services,
#contact,
#main,
#cookiefooter {
  width: calc(100vw - 18px);
  position: relative;
  left: calc(50% + 7px);
  margin-left: -50vw;
  overflow: hidden;
}
header .content-box {
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}
#logo img {
  display: inline-block;
  transition: transform 0.3s ease;
  max-width: 30%;
  height: auto;
  box-shadow: none;
  border: none;
}
#logo img:hover {
  transform: scale(1.2);
}
#assistant {
  background: linear-gradient(to bottom, #e48aa7ff 0%, #e8a2b933 100%);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 4rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 2rem 0;
}
#services {
  margin-top: 3rem;
}
#services .column-2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
#services div svg {
  height: 12.5rem;
  width: 12.5rem;
  stroke-width: 0.5;
  stroke: var(--title);
}
.services-svg {
  text-align: center;
}
.services-card {
  background: #e5e2e2;
  border-radius: 0.5rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}
.readmore-content {
  max-height: 140px; /* amennyi kb. két sor */
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.readmore-content.open {
  max-height: 800px; /*  elég nagy, hogy minden kiférjen */
}
.readmore-btn {
  margin-top: 1rem;
  background: var(--ice-blue);
  border: 1px solid #ccc;
  border-radius: 32px;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 1rem; /* kicsit nagyobb */
  color: var(--title);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
}
.readmore-btn:hover {
  transform: translateY(-2px);
  scale: 1.05;
  transform-origin: left center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.readmore-btn:active {
  transform: translateY(0);
}
#packet,
#assistant,
#contact,
#main {
  margin-bottom: 4rem;
}
.card {
  background: #e1f4f8;
  border: 2px solid var(--light-blue);
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
  padding-left: 20px;
  border-radius: 0px 20px 0px 20px;
  max-width: 75%;
  margin-bottom: 2rem;
  transition: 0.2s ease;
  transform-origin: left center;
}
.card:hover {
  transform: scale(1.02) translateX(5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}
.card li,
.card p {
  line-height: 1.5;
}
.card h3 {
  font-weight: 600;
}
.price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  transition: 0.2s ease;
  width: 100%;
}
#contactError li {
  list-style-type: none;
}
/* A teljes képernyős háttér */
.modal {
  display: none; /* alapból rejtve */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
/* A modal doboz */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
}
/* X gomb */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.contact-form .back-btn {
  text-align: center;
}
#csomag-select {
  font-family: inherit;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  transition: 0.2s ease;
  width: 50%;
  margin-bottom: 1.5rem;
}
/*.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4fc2c2; ha egységes arculat, nyugodtan módosítsd 
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 194, 194, 0.15);
}*/
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.checkbox-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}
.about {
  margin-bottom: 2rem;
}
.about img {
  max-width: 50%;
}
.checkbox-group a {
  color: var(--dark-pink);
}
.checkbox-group a:hover {
  color: var(--dark-green);
}
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--light-blue);
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--dark-blue);
  border-radius: 32px;
  cursor: pointer;
  transition: 0.2s ease;
  transform-origin: left center;
}
form p {
  font-size: inherit;
}
.btn:hover {
  background: var(--dark-pink);
  border: none;
  scale: 1.05;
}
.image-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
#cookiefooter {
  position: fixed;
  z-index: 69;
  bottom: 0px;
  background-color: var(--white);
  padding: 16px 0;
}
.w-100 {
  display: none;
  width: 100%;
}
.d-none {
  display: none;
}
.display-7 {
  font-size: 2rem;
  color: #5ba0a0;
}
a {
  display: inline-block;
  color: var(--dark-pink);
  text-decoration: none;
}
a:hover,
.blog a:hover {
  color: var(--dark-green);
}
.gdpr-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
}
.gdpr-table th {
  background: #f0f0f5;
  padding: 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #ccc;
}
.gdpr-table td {
  padding: 12px;
  border-bottom: 1px solid #e1e1e1;
  vertical-align: top;
}
.gdpr-table tr:nth-child(even) {
  background: var(--ice-blue);
}
#formId input:not([type="checkbox"]),
#formId textarea {
  background: #a0bbe4;
}
#formId input[type="checkbox"] {
  border: 1px solid #999;
}
.footer {
  position: relative;
  box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(to bottom, #7b93b8 0%, #e9faff 100%);
  z-index: 9;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  margin-top: 2rem;
}
.footer ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
}
.footer ul li {
  padding: 0 1rem;
}
.footer svg {
  width: 2rem;
  height: 2rem;
}
.footer p {
  font-size: x-small;
}
.footer a {
  transition: 0.2s ease;
}
.footer a:hover {
  scale: 1.2;
}
.widget a {
  padding: 0 1rem;
}

@media only screen and (max-width: 1281px) {
  #head .content-box {
    flex-wrap: wrap;
  }
  #head-menu {
    width: 100%;
  }
  .fullwide,
  .services,
  .packet-bg,
  .about-bg,
  .sm-bg,
  .contact {
    width: 100vw;
    left: 50%;
  }
}
@media only screen and (max-width: 1025px) {
  html {
    font-size: 1.4vw;
  }
}
@media only screen and (max-width: 781px) {
  html {
    font-size: 16px;
  }
  .services ul,
  .wp-block-query ul {
    display: block;
  }
  .services ul li,
  .wp-block-query ul li {
    margin-bottom: 1.5rem;
  }
  .contact figure {
    display: none;
  }
  .archive .blog {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px; /* egy kis térköz alul */
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1.visible {
    font-size: 2rem;
  }
  h2.visible {
    font-size: 1.5rem;
  }
  .image-wrapper img {
    display: none;
  }
  .about img {
    max-width: 100%;
  }
  img.main-img {
    max-width: 100%;
  }
  .checkbox-group {
    display: block;
  }
  .card {
    max-width: 100%;
  }
  .footer a {
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .contact-form .back-btn {
    text-align: left;
    margin-top: 2rem;
  }
  .contact-form .send-btn {
    text-align: center;
  }
  .gdpr-table,
  .gdpr-table thead {
    display: block;
  }
  .gdpr-table tr {
    display: block;
    margin-bottom: 1rem;
  }
  .gdpr-table td {
    display: block;
    padding: 6px 0;
  }
  .gdpr-table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: #444;
  }
}
/*ezt l�tod M�ni?:)*/
