.button {
  display: inline-block;
  padding: 12px 24px;
  color: #ffffff; /* Fekete szöveg */
  background: #000000; /* Fehér gomb */
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(42, 42, 42, 0.2); /* Elmosódó fényhatás */
  text-decoration: none;
}

.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
}

.button:hover {
  color: #000000; /* Fehér szöveg */
  background: #ffffff; /* Fekete gomb */
  box-shadow: 0 4px 10px rgba(38, 38, 38, 0.2); /* Elmosódó fényhatás */

}

.button:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.button:active {
  transform: scale(0.95); /* Enyhe nyomódás hatás */
}



a{
color: red;
text-decoration: none;
font-weight: bold;
}

/* Általános stílus az input mezőkhöz */
.input-container {
  position: relative;
  margin: 20px 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.input-container input,textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--dark);
  border: 2px solid var(--gray);
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

/* Fókuszállapot */
.input-container input:focus,textarea:focus {
  border-color: var(--white);
  box-shadow: 0 0 8px var(--white), 0 0 16px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(255, 255, 255, 0.3);
}

/* Homályos fehér elmosódás */
.input-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: var(--white);
  filter: blur(30px);
  opacity: 0.2;
  z-index: -1;
  border-radius: 8px;
}

.icon_c{
background: white;border-radius: 100px;padding: 10px;display: flex;align-items: center;justify-content: center;
width: fit-content;
}

@media (max-width: 768px) {
  .ress {
    flex-direction: column; /* Mobil nézetben oszlopba rendezi az elemeket */
    align-items: center; /* Középre igazítja az elemeket (opcionális) */
  }
  .ress .container {
    margin-bottom: 3rem;
  }
}

.services {
  padding: 50px 0;
  background-color: #fff; /* Fehér háttér */
}

.services .container {
  width: 80%;
  margin: 0 auto;
}

.services .content {
  text-align: center;
}

.services h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.services p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.services h2 {
  font-size: 2.5rem;
  margin-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Három oszlopos elrendezés */
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-item:hover {
  transform: translateY(-10px); /* Hover effektus */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Hover árnyék erősítése */
}

.service-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
    .input-container {
  position: relative;
  margin: 20px 0;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Két oszlop mobilon */
  }
    .urlapc{
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .input-container {
  position: relative;
  margin: 20px 0;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  .services-grid {
    grid-template-columns: 1fr; /* Egy oszlop kisebb képernyőkön */
  }
  
  .urlapc{
    margin-bottom: 3rem;
  }
}

a{
color: red;
text-decoration: none;
font-weight: bold;
}

.c{
    text-align: center;
  }