
/* Navigáció */
header {
  /*background: #ffffff;*/
  padding: 0;
  position: relative;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 20rem;
  border-bottom: none;
}
.nav-logo img {
  height: 52.15px;
  width: 193px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #1c232b;
  text-decoration: none;
  font-family: "Raleway-SemiBold", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-lang-btn {
  background: #e40613;
  color: #ffffff !important;
  border: none;
  border-radius: 0.3125rem;
  text-decoration: none;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Raleway-Bold", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-gray-bar {
  background: linear-gradient(180deg, rgba(228,228,228,1) 0%, rgba(255,255,255,1) 100%);
  height: 3.125rem;
}
.header__nav a.active, .nav-links a.active {
    border-bottom: 2px solid #e40613;
}

/* ============================================================
   KATEGÓRIA NAVIGÁCIÓ – category-nav.css
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-red:    #e40613;
  --color-dark:   #1c232b;
  --color-gray:   #f2f2f2;
  --color-border: #dadada;
  --font-body:    'Raleway', sans-serif;
  --max-width:    1300px;
}

body {
  font-family: var(--font-body);
  background: #fff;
}

/* ── Konténer ── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ── Szekció padding ── */
.category-section {
  padding: 1.5rem 0 3rem;
}

/* ── Doboz ── */
.category-box {
  background: var(--color-gray);
  border-radius: 1.1875rem;
  border: 0.0625rem solid var(--color-border);
  padding: 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1rem;
}

/* ── Oszlop ── */
.cat-col {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

/* ── Elem ── */
.cat-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  line-height: 2.6875rem;
}

/* ── Piros pont ── */
.cat-dot {
  width: 0.5625rem;
  height: 0.5625rem;
  background: var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Link / felirat ── */
.cat-label {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.cat-label:hover {
  color: var(--color-red);
}

/* ── Aktív / kiemelt elem ── */
.cat-label--red {
  color: var(--color-red);
  font-weight: 700;
}

.cat-label--red:hover {
  color: #c0000f;
}

/* ── Reszponzív ── */
@media (max-width: 900px) {
  .category-box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .category-box {
    grid-template-columns: 1fr;
    padding: 1rem 1.5rem;
  }
}

/* ============================================================
   CONTACT (Kapcsolat form)
   ============================================================ */
.contact {
  background: linear-gradient(to bottom, #ffffff 62%, #1c232b 50%);
  padding: 4rem 24.5rem 20px 24.5rem;
}
.contact__label {
  color: #e40613;
  text-align: center;
  font-family: "Raleway-SemiBold", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.contact__heading {
    font-family: var(--font-serif);
    font-size: 1.5625rem;
    font-weight: 600;
    line-height: 2.3125rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
  text-align: center;
/*  color: #1c232b;
  text-align: center;
  font-family: "LibreBaskerville-Bold", sans-serif;
  font-size: 1.5625rem;
  line-height: 2.75rem;
  font-weight: 700;
  margin-bottom: 2rem;*/
}
.contact__form-wrap {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.contact__col {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: flex-start;
}
.contact__col label {
  color: #ffffff;
  font-family: "Raleway-Medium", sans-serif;
  font-size: 1.0625rem;
  line-height: 2.1875rem;
  font-weight: 500;
  display: block;
}
.contact__input {
  background: #f7f7f7;
  border: 0.0625rem solid #dadada !important;
  border-radius: 0.375rem;
  width: 100%;
  height: 3.75rem;
  padding: 0 1rem;
  font-family: "Raleway-Medium", sans-serif;
  font-size: 1rem;
  color: #1c232b;
}
.contact__input--tall {
  height: 8.125rem;
  padding: 1rem;
  resize: vertical;
}
.contact__submit {
  background: #e40613 !important;
  border-radius: 0.375rem;
  color: #ffffff;
  font-family: "Raleway-SemiBold", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  height: 3.75rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1c232b;
  padding: 4rem 24.5rem 20px 24.5rem;
  display: flex;
  align-items: stretch;
}
.footer__address {
  color: #ffffff;
  font-family: "Raleway-Medium", sans-serif;
  font-size: 1.0625rem;
  line-height: 2.5625rem;
  font-style: normal;
  flex: 0 0 38.33%;
}
.footer__address strong {
  font-family: "Raleway-Bold", sans-serif;
  font-weight: 700;
}
.footer__address a {
  color: #ffffff;
}
.footer__map {
  display: flex;
  flex: 0 0 61.67%;
  overflow: hidden;
  border-radius: 1.25rem;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}
.footer__bar {
  background: #191e24;
  padding: 1rem;
}
.footer__copy {
  color: #ffffff;
  text-align: center;
  font-family: "Raleway-Bold", sans-serif;
  font-size: 1.0625rem;
  line-height: 2.5625rem;
  font-weight: 700;
}

/* ============================================================
   HAMBURGER MENÜ GOMB
   ============================================================ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.25rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background: #1c232b;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X ikon nyitott állapotban */
.nav-top.nav--open .nav-hamburger span:nth-child(1) {
  transform: translateY(0.53125rem) rotate(45deg);
}
.nav-top.nav--open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-top.nav--open .nav-hamburger span:nth-child(3) {
  transform: translateY(-0.53125rem) rotate(-45deg);
}

/* ============================================================
   RESZPONZÍV TÖRÉSPONTOK
   ============================================================ */

/* Laptop / nagy tablet */
@media (max-width: 1800px) {
  .contact {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .footer {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media (max-width: 1500px) {
  .nav-top {
    padding-inline: 5rem;
  }
  .contact {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Tablet – hamburger menü */
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  /* Navigáció – hamburger */
  .nav-top {
    position: relative;
    padding: 1rem 1.5rem;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-top: 2px solid #e40613;
    z-index: 100;
  }
  .nav-top.nav--open .nav-links {
    display: flex;
  }
  .nav-links a {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid #f2f2f2;
    font-size: 1rem;
    color: #1c232b;
    width: 100%;
  }
  .nav-links .nav-lang-btn {
    margin-top: 0.75rem;
    width: 2.5rem;
    height: 2.5rem;
    padding-left: 8px;
  }

  .contact {
    padding-inline: 4rem;
  }
  .footer {
    padding-inline: 4rem;
  }
}

/* Mobil */
@media (max-width: 768px) {
  /* Kapcsolat */
  .contact {
    padding: 3rem 1rem 1.5rem;
  }
  .contact__heading {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .contact__form-wrap {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    gap: 2rem;
  }
  .footer__address {
    flex: none;
    width: 100%;
  }
  .footer__map {
    flex: none;
    width: 100%;
  }
  .footer__map iframe {
    width: 100%;
    min-height: 15rem;
  }
}

/* Kis mobil */
@media (max-width: 480px) {
  .nav-top {
    padding: 0.75rem 1rem;
  }
  .nav-logo img {
    height: 2.5rem;
    width: auto;
  }
  .contact {
    padding: 2.5rem 0.75rem 1.5rem;
  }
  .contact__form-wrap {
    padding: 0.75rem;
  }
  .contact__heading {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .contact__submit {
    min-height: 2.75rem;
  }
}
