
textarea { resize: none }

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[placeholder="Subject"],
.quote-form textarea {
    outline: none;
}

.quote-form input[type="text"]:focus,
.quote-form input[type="email"]:focus,
.quote-form input[type="tel"]:focus,
.quote-form input[placeholder="Subject"]:focus,
.quote-form textarea:focus {
    border: 2px solid green;
}

.social {
  margin-top: 20px;
  text-align: center;
}

.social a {
  font-size: 2rem;
  color: #1877F2; /* Facebook kék */
  text-decoration: none;
}

.social a:hover {
  color: #0d5bbf;
}
body {
  font-family: 'Syne', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
  margin-top: 20px;
  color: #222;
}

p {
  font-size: 1.2rem;
  color: #555;
}

/* Gallery Styles */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Contact Form Styles */
.contact {
  margin-top: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  text-align: left;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

.quote-form label {
  font-weight: bold;
}

.quote-form input, .quote-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.quote-form button {
  background-color: #333;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background-color: #555;
}


.quote-form input:focus, .quote-form textarea:focus {
  border: 2px solid green;
  outline: none;
}

/* Social Icons */
.social {
  margin-top: 20px;
  text-align: center;
}

.social a {
  font-size: 2rem;
  color: #1877F2;
  text-decoration: none;
}

.social a:hover {
  color: #0d5bbf;
}

i{
 display: flex;
 align-items: center; 
}