
html {
  scroll-behavior: smooth;
}/* Alap body */
body {
  background-image: url('hatter.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* Highlight szín */
.highlighted-text{
  color:#FC8F28;
}
/* ===== HERO / TANÁCSADÓ SECTION ===== */
.hero-consultant {
  position: relative;
  min-height: 600px;
  background-image: url("Fejléc.jpg");
  background-size: cover;
  background-position: 55% center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Finom sötét overlay, hogy a fehér szöveg jobban olvasható legyen */
.hero-consultant-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.0) 70%
  );
}

/* Tartalom */
.hero-consultant-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Szöveg buborék */
.hero-consultant-text {
  max-width: 520px;
  margin-top: 40px; /* kicsit lejjebb indul */
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 30px 32px;
  border-radius: 14px;
  color: #fff;
}

/* Cím */
.hero-consultant-text h1 {
  margin: 0 0 14px 0;
  font-size: 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* Alcím */
.hero-subtitle {
  display: block;
  font-size: 1.2rem;
  color: #ABC3D6;
  font-weight: 500;
  margin-top: 4px;
}

/* Szöveg */
.hero-consultant-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===== MOBIL ===== */
@media (max-width: 768px) {
  .hero-consultant {
    min-height: 520px;
    background-position: 68% center; 
    /* jobb oldal hangsúlyos, fej középre */
  }

  .hero-consultant-container {
    padding: 60px 26px;
  }

  .hero-consultant-text {
    max-width: 100%;
    margin-top: 320px;
    padding: 22px;
  }

  .hero-consultant-text h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-consultant-text p {
    font-size: 0.95rem;
  }
}


/* Section alap */
.advisor-skills-section {
  background-color: #437090;
  padding: 4rem 1rem;
}

/* Tartalom középre, elemek egymás mellett */
.advisor-skills-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Egy skill blokk */
.advisor-skill {
  flex: 1 1 220px;
}

.advisor-skill b {
  display: block;
  color: #B6C3D6;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.advisor-skill p {
  color: #ffffff;
  margin: 0;
  line-height: 1;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}

/* Client feedback section */
.client-feedback-section {
  background: rgba(226, 231, 239, 0.8);
  padding: 3.5rem 1rem;
}

/* Container a headernek és carouselnek külön */
.client-feedback-container {
  max-width: 1200px;  /* egyezzen a skills sectionnel */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Szöveg container */
.client-feedback-header {
  max-width: 420px;   /* skills section szövegéhez igazítva */
  margin: 0 0 2rem 0;
}

.client-feedback-header h2 {
  margin: 0 0 0.8rem 0;  /* nagyobb távolság az alcímhez */
  font-family: 'Montserrat', sans-serif;
  color: #000;           /* fekete szín */
}

.client-feedback-intro {
  margin: 0;
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #000;           /* fekete szín */
}

/* Carousel container külön */
.feedback-carousel-container {
  max-width: 1000px;  /* fix szélesség, ne jelenjen meg extra kártya */
  margin: 0 auto;
  position: relative;  /* nyilakhoz */
}

/* Carousel */
.feedback-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feedback-viewport {
  overflow: hidden;
  width: 100%;
}

.feedback-track {
  display: flex;
  gap: 1.5rem; /* csak itt van a távolság, JS-ben nem kell hozzáadni */
  transition: transform 0.5s ease;
  box-sizing: border-box;
}

/* Kártyák */
.feedback-card {
  flex: 0 0 32%;      
  min-width: 200px;
  max-width: 300px;    
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-sizing: border-box;
}

.feedback-card h3 {
  margin: 0;
}

.feedback-card small {
  display: block;
  margin: 0.5rem 0;
  color: #8999b0;
}

.feedback-card-content {
  overflow-y: auto;
  max-height: 120px;
  line-height: 1.4;
  font-size: 0.95rem;

  /* scroll sáv stílus */
  scrollbar-width: thin;           /* Firefox */
  scrollbar-color: #437090 #f1f1f1; /* thumb, track */
}

/* Chrome, Edge, Safari scroll sáv */
.feedback-card-content::-webkit-scrollbar {
  width: 6px;
}

.feedback-card-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.feedback-card-content::-webkit-scrollbar-thumb {
  background-color: #437090; /* kék, mint a nyilak */
  border-radius: 3px;
}

/* Nyilak */
.feedback-arrow {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #437090;       /* kék */
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s;
  position: relative;   
  z-index: 1;
}

.feedback-arrow:hover {
  transform: scale(1.15);
}

/* Reszponzív kártyák */
@media (max-width: 900px) {
  .feedback-card { flex: 0 0 48%; }
}
@media (max-width: 600px) {
  .feedback-card { flex: 0 0 100%; }
}


    /* Segítek section alap */
.segitek-section {
  background-color: #437090;
  padding: 4rem 1rem;
}

/* Container */
.segitek-container {
  max-width: 1200px;   
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cím */
.segitek-container h2 {
  font-family: 'Montserrat', sans-serif;
  color: #ABC3D6;
  margin-bottom: 2rem;
  max-width: 420px;     
}

/* Kártyák container */
.segitek-slider {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Kártyák wrapper */
.segitek-ranking {
  flex: 0 0 32%;       /* 3 kártya desktopon */
  max-width: 300px;
  display: flex;
}

/* Kártya */
.segitek-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;      /* vertikálisan középre */
  padding: 0.25rem;                /* kisebb padding fent-lent */
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  min-height: 280px;            /* fix magasság */
}

/* Hover-effekt */
.segitek-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Cím és szöveg */
.segitek-card h3 {
  margin: 0 0 0.5rem 0;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

.segitek-card small {
  display: block;
  margin-bottom: 0.5rem;
  color: #666;
}

.segitek-card p {
  margin: 0;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
  color: #000;
}

.segitek-card hr {
  margin: 0.5rem 0 1rem 0;
  border: 0;
  border-top: 1px solid #ddd;
}

/* Reszponzív */
@media (max-width: 900px) {
  .segitek-ranking { flex: 0 0 48%; }
}
@media (max-width: 600px) {
  .segitek-ranking { flex: 0 0 100%; }
}


/* Együttműködés section alap */
.egyutt-section {
  background: rgba(255,255,255,0.8);
  padding: 3.5rem 1rem;
}

/* Container */
.egyutt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cím balra */
.egyutt-container h2 {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: left;
}

/* Kártyák container */
.egyutt-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* 4 kártya egy sorban egyenletesen */
  gap: 1.5rem;
}

/* Kártyák wrapper */
.egyutt-ranking {
  flex: 0 0 23%;   /* 4 kártya egy sorban desktopon */
  max-width: 300px;
  display: flex;
}

/* Kártya */
.egyutt-card {
  background: #437090;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  min-height: 250px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover-effekt */
.egyutt-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Címek és szöveg */
.egyutt-card h3 {
  margin: 0 0 10px 0;
  font-family: 'Montserrat', sans-serif;
  color: #ABC3D6;
  font-size: 1.2rem;
}

.egyutt-card small {
  display: block;
  margin-bottom: 10px;
  color: #B6C3D6;
}

.egyutt-card p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  line-height: 1.4;
  font-size: 1rem;
}

.egyutt-card hr {
  border: 0;
  border-top: 1px solid #ABC3D6;
  width: 50%;
  margin: 10px auto;
}

/* Reszponzív */
@media (max-width: 900px) {
  .egyutt-ranking { flex: 0 0 48%; } /* 2 kártya tablet */
}
@media (max-width: 600px) {
  .egyutt-ranking { flex: 0 0 100%; } /* 1 kártya mobil */
}


.kapcsolat-section {
  background: #437090;
  padding: 3.5rem 1rem; /* harmonizál a többi sectionnal */
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.kapcsolat-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* BAL OLDAL */
.kapcsolat-left {
  flex: 1;
}

.kapcsolat-left h2 {
  font-family: 'Montserrat', sans-serif;
  color: #ABC3D6;
  font-size: 1.8rem; /* ugyanolyan, mint a többi főcím */
  margin-bottom: 1.5rem;
  text-align: left;
}

.kapcsolat-left p {
  margin-bottom: 12px;
  opacity: 0.9;
  font-size: 1rem; /* kisebb szöveg */
  line-height: 1.5;
}

.kapcsolat-left .highlight {
  color: #F08F28; /* sárga csak az első üzenet */
  font-weight: 600;
}

/* JOBB OLDAL – FORM */
.kapcsolat-right {
  flex: 1.5;
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 12px;
  color: #000;
  display: flex;
  flex-direction: column;
}

.kapcsolat-right input,
.kapcsolat-right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: inherit;
}

.kapcsolat-right textarea {
  min-height: 120px;
  max-height: 260px;
  resize: vertical;
}

.form-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-buttons button[type="submit"] {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #a9c1d9;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-buttons button[type="submit"]:hover {
  background: #8eaed0;
}

.form-buttons button[type="submit"]:disabled {
  background: #c3cfe0;
  cursor: not-allowed;
}

.form-buttons button[type="reset"] {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #f3f3f3;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
/* Mobil nézet: max 768px */
@media (max-width: 768px) {
  .kapcsolat-container {
    flex-direction: column; /* a jobb oldal a bal oldal alá kerül */
    gap: 20px; /* kisebb távolság a blokkok között */
  }

  /* Bal oldal szövegek kisebbek */
  .kapcsolat-left h2 {
    font-size: 1.4rem;
  }

  .kapcsolat-left p {
    font-size: 0.9rem;
  }

  .kapcsolat-left .highlight {
    font-size: 0.95rem;
  }

  /* Jobb oldal form kisebb padding és betűméret */
  .kapcsolat-right {
    padding: 20px;
  }

  .kapcsolat-right input,
  .kapcsolat-right textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .form-buttons button[type="submit"] {
    font-size: 0.9rem;
    padding: 10px;
  }

  .form-buttons button[type="reset"] {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.site-footer {
  background-color: #437090;
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

/* Szétválasztás a Kapcsolatfelvétel résztől */
.footer-separator {
  width: 60px;
  margin: 0 auto 20px auto;
  border: 1px solid #ccc;
}

/* Gombok egymás mellett */
.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap; /* mobilon sorba törjön */
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-btn img {
  height: 24px;
  width: auto;
}

.footer-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* LinkedIn ikon nagyobb méret */
.footer-btn[href*="linkedin"] img {
  height: 28px;
}

/* Kis szöveges rész az elérhetőségekkel */
.footer-contact-text {
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
}

.footer-contact-text p {
  margin: 4px 0;
}

/* Reszponzív: kisebb képernyőn a gombok sorba törnek */
@media (max-width: 600px) {
  .footer-buttons {
    flex-direction: column;
    gap: 15px;
  }
}



/* -------------------- STICKY NAVBAR -------------------- */
.sticky-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(67, 112, 144, 0.95);
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-family: 'Open Sans', sans-serif;
}

.sticky-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.sticky-nav-left .logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
}

.sticky-nav-center {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.sticky-nav-center li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sticky-nav-center li a:hover {
  color: #F08F28;
}

.sticky-nav-right .sticky-contact-btn {
  background-color: #F08F28;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sticky-nav-right .sticky-contact-btn:hover {
  background-color: #d87c1e;
  transform: translateY(-1px);
}

/* -------------------- Reszponzív -------------------- */
@media (max-width: 900px) {
  .sticky-nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .sticky-nav-center {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sticky-nav-right {
    margin-top: 5px;
  }
}

@media (max-width: 600px) {
  .sticky-nav-left .logo {
    font-size: 1.1rem;
  }

  .sticky-nav-center li a {
    font-size: 0.95rem;
  }

  .sticky-nav-right .sticky-contact-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

