body {

  padding-top: 60px;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  background-size: cover;
  background-repeat: no-repeat;
}

body, html {
  overflow: auto;
}

.hero {
  height: 90vh;
  background: 
    linear-gradient(rgba(0, 67, 150, 0.7), rgba(0, 67, 150, 0.7)),
    url("../images/202253690_111774204477911_1634443430504555470_n.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  overflow: hidden;
}

/* Hero tartalom */
.hero-content {
  z-index: 2;
  max-width: 800px;
  color: #fff;
  animation: fadeInUp 1.2s ease-out;
}

/* Cím */
.hero h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Alcím */
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Gomb */
.hero button {
  background: #feffff;
  color: #585858;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s;
}

.hero button:hover {
  background: #ffffff;
  transform: scale(1.05);
}


/* Animáció a szöveg megjelenésére */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rugalmas elrendezés – kisebb képernyőkön is jól néz ki */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero button {
    padding: 12px 25px;
  }
}


form {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  flex-direction: column;
  max-width: 400px;

}

.form.label {
  text-align: left;
}

input, textarea, button {
  padding: 0.8rem;
  font-size: 1rem;
}

/* gomb pseudo class hover cucc */


/* .my-btn:hover {
  background-color: #ffffff;

  transform: scale(1.05);
} */

/* card hover cuccmoka */
.card:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

/* Base Button Styles */
.squishy {
  position: relative;
  font-size: 1.875rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 250ms;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.squishy i {
  width: 1.75rem;
  height: 1.75rem;
}

/* Classic Squishy */
.squishy-classic {
  background-color: #f0f0f0;
  color: #2b2b2bda;
  border-radius: 0.5rem;
  box-shadow:
    inset 0 1px 0 0 #f4f4f4,
    0 1px 0 0 #efefef,
    0 2px 0 0 #ececec,
    0 4px 0 0 #e0e0e0,
    0 5px 0 0 #dedede,
    0 6px 0 0 #dcdcdc,
    0 7px 0 0 #cacaca,
    0 7px 8px 0 #cecece;
}

.squishy-classic:hover {
  transform: translateY(4px);
  box-shadow:
    inset 0 1px 0 0 #f4f4f4,
    0 1px 0 0 #efefef,
    0 1px 0 0 #ececec,
    0 2px 0 0 #e0e0e0,
    0 2px 0 0 #dedede,
    0 3px 0 0 #dcdcdc,
    0 4px 0 0 #cacaca,
    0 4px 6px 0 #cecece;
}

/* galleria resze */

.gallery {
  display: inline-block;
}

/* --- Általános beállítások --- */
body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #f8f9fc;
  margin: 0;
  padding: 0;
}

/* --- Szekció elrendezés --- */
.contact-section {
  display: flex;
  margin-top: 60px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* --- Bal oldal --- */
.contact-left {
  flex: 1;
  background: url("../images/480249110_939225888399401_7101076895949711278_n.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  text-align: center;

}

.contact-overlay {
  background: rgba(0, 67, 150, 0.85);
  color: #fff;
  padding: 100px;
  text-align: center;
  width: 100%;
  height: 100%;

}

.contact-overlay h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-email {
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: underline;
}

.contact-tel {
  font-weight: bold;
  font-size: 1.3rem;
  color: #ffffff;
}

/* --- Jobb oldal --- */
.contact-right {
  flex: 1;
  background-color: #ffffff;
  padding: 60px;
}

.contact-right h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #002b5c;
}

.contact-right p {
  color: #555;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin: 10px 0 5px;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background-color: #008ed5;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #0056c7;
}


p, a {
  margin: 0;
  padding: 0;
}

a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #005fa3;
}

.contact-container {
  display: flex;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* Footer styling */
footer {
  background-color: rgb(0, 67, 150);
  color: #f1f1f1;
  text-align: center;
  padding: 20px 10px;
  /* margin-top: 40px; */
  font-size: 14px;
}

footer p {
  margin: 5px 0;
}

footer a img {
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 8px;
}

footer a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* --- Mobilbarát nézet (max 768px) --- */
@media (max-width: 768px) {

  /* Konténer rendezése egymás alá */
  .contact-container {
    flex-direction: column;
  }

  /* Bal oldal (kép + overlay) */
  .contact-left {
    max-width: 200px; 
  }

  .contact-overlay {
    padding: 40px 20px;
  }

  .contact-overlay h2 {
    font-size: 2rem;
  }

  .contact-email,
  .contact-tel {
    font-size: 1.1rem;
      word-break: break-all; 
  }

  /* Jobb oldal (form) */
  .contact-right {
    padding: 30px 20px;
  }

  .contact-right h2 {
    font-size: 1rem;
  }

  form input,
  form textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 1rem;
  }
}

/* --- Extra kis mobilok (max 480px) --- */
@media (max-width: 480px) {

  .contact-overlay h2 {
    font-size: 1.6rem;
  }

  .contact-overlay {
    padding: 30px 15px;
  }

  .contact-right h2 {
    font-size: 1.6rem;
  }

  .contact-right p {
    font-size: 0.9rem;
  }
}


/* fooldal komment--------------------- */

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 600px;
  padding: 24px;
}

.title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #23137f;
  margin-bottom: 20px;
}

.comment-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;

}

.user-pic {
  width: 40px;
  height: 40px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #555;
}

.comment-content {
  background: #f9fafb;
  border-radius: 10px;
  padding: 10px 14px;
  flex-grow: 1;
}

.comment-content strong {
  display: block;
  font-size: 14px;
  color: #0078d4;
}

.comment-content p {
  margin: 4px 0;
  font-size: 15px;
  color: #333;
}

.comment-content small {
  font-size: 12px;
  color: #888;
}

.text-box {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  font-family: inherit;
  resize: none;
  min-height: 60px;
}

button.send {
  background: #0078d4;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
  align-self: flex-end;
}

button.send:hover {
  background: #0f74bc;
}

/* ---------------------------------------------------
    ajánlat kérés form
    --------------------------------------------------- */
.open-btn {
  background: #0078d4;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Áraink szekció */
.prices-section {
  display: flex;
  justify-content: left;
  padding: 60px 20px;

}

.prices-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: left;
  font-family: 'Arial', sans-serif;
}

.prices-card h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #0078d4;
}

.prices-card .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.prices-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.prices-list li {
  color: #2e2e2e;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.prices-list li strong {
  color: #0078d4;
}

.prices-card .note {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  line-height: 1.5;
}

.prices-comments-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  /* rés a kártyák között */
  padding: 40px 20px;
  flex-wrap: wrap;
  /* mobilon egymás alá kerüljenek */
}

.prices-card, .card {
  flex: 1 1 300px;
  /* rugalmas szélesség, minimum 300px */
  max-width: 500px;
}

.prices-comments-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}


/* idk-------------------------------------------------------------------- */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar vegleges  */
nav {
    background-color: rgba(240, 248, 255, 0.481);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}

nav a:hover {
    background-color: #f0f0f0;
}

nav li:first-child {
    margin-right: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    z-index: 999;
    background-color: #f0f0f038;
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;

}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    display: none;
}

.logo {
    height: 10px;
}

/* --------------------------------------------------- */
/* introduction card resz */
/* .introduction-card{
  flex: 1 1 300px;
  max-width: 500px;
  background: white;
  box-sizing: inherit;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
} */

.introduction {
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 60px 20px; */
}

/* introduction card (már megvan, de kicsit finomítva) */
.introduction-card {
  flex: 1 1 300px;
  max-width: 650px;
  background: #ffffff;
  box-sizing: border-box;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #333;
  line-height: 1.8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* finom hover-effekt, hogy élőbbnek hasson */
.introduction-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* címek */
.introduction-card h2 {
  font-size: 1.8rem;
  color: #1e3a8a; /* mélykék – bizalmat sugároz */
  margin-bottom: 20px;
  text-align: center;
}

/* bekezdések */
.introduction-card p {
  font-size: 1rem;
  color: #444;
  text-align: justify;
  margin-bottom: 15px;
}

/* szolgáltatáslista */
.introduction-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.introduction-card ul li {
  background: #e0f2fe; /* világoskék háttér */
  color: #0f172a;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s;
}

.introduction-card ul li:hover {
  background: #bae6fd; /* kissé sötétebb kék hoverkor */
}

/* kiemelés a záró mondathoz */
.introduction-card p:last-of-type {
  background-color: #f1f5f9;
  border-left: 5px solid #3b82f6;
  padding: 15px 20px;
  border-radius: 10px;
  font-style: italic;
  margin-top: 25px;
}

.comment-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 5%;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Árak + kommentek wrapper */
/* Wrapper – két kártya egymás mellett */
/* .prices-comments-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 5%;
  font-family: "Poppins", "Segoe UI", sans-serif;
} */

/* Alap kártyastílus – illeszkedik az introduction-card-hoz */
.prices-card,
.card {
  flex: 1 1 300px;
  background: #ffffff;
  box-sizing: border-box;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333;
  line-height: 1.8;
  margin-bottom: 50px;
  margin-left: 2%;
}

/* Finom hover-effekt */
.prices-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Címek */
.prices-card h2,
.card .title {
  font-size: 1.8rem;
  color: #1e3a8a; /* egyezik az introduction színével */
  margin-bottom: 10px;
  text-align: center;
}

/* Alcím */
.prices-card .subtitle {
  text-align: center;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Lista formázás */
.prices-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.prices-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.prices-list li strong {
  color: #1e3a8a;
}

/* Kiemelt megjegyzés a végén */
.prices-card .note {
  background-color: #f1f5f9;
  border-left: 5px solid #3b82f6;
  padding: 15px 20px;
  border-radius: 10px;
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 25px;
}


/* kommentek */

.card .comment-container {
  display: flex;
  box-sizing: inherit;
  gap: 12px;
  margin-bottom: 12px;
}

.user-pic {
  width: 40px;
  height: 40px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.comment-content {
  background: #f9fafb;
  padding: 10px 14px;
  border-radius: 10px;
  flex-grow: 1;
}

.comment-content strong {
  color: #0078d4;
  display: block;
}

.text-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

textarea {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  resize: none;
}

button.send {
  background: #0078d4;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

button.send:hover {
  background: #0078ce;
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  background: white;
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  max-height: 99%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background: #009fd4;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 10px;
}

/* Footer */
footer {
  background: #0e1238d4;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

@media(max-width:768px) {
  .prices-comments-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.toggle-optional {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 10px 0;
  color: #0078d4;
  transition: transform 0.3s;
}

.toggle-optional:hover {
  transform: translateX(5px);
}

.form-step {
  display: none;
}

/* alapból rejtve */

.form-step.active {
  display: block;
}




/* Modern button */
.prev-btn {
  background: linear-gradient(135deg, #0078d4, #00d4ff); /* színátmenet */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.prev-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #0b81d4, #00bfff);
}

.prev-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.next-btn {
  background: linear-gradient(135deg, #0078d4, #00d4ff); /* színátmenet */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #0073c6, #00bfff);
}

.next-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

small{
font-size: 10px;
}


/* Alap stílus */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.fclogo{
  height: 30px;
}

/* --- Mobil nézet --- */
@media (max-width: 768px) {
  .logo {
    height: 45px; /* a kép arányosan összemegy */
  }
}

@media(max-width: 800px) {

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }
}

@media(max-width: 400px) {
    .sidebar {
        width: 100%;
    }
}