/* Základní styl pro sekci a div */
#contact {
  padding: 20px;
  background: var(--color-3);
}

.contact-headline   {
    font-family: var(--font-1);
    font-size: var(--size-sh);
    color: var(--color-2);
    font-weight: 700;
    text-align: center;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}  

#contact-regular-text {
    font-family: var(--font-1);
    font-size: var(--size-bul);
    color: var(--color-2);
    line-height: 1.7;
    text-align: center;
    margin: 20px 0px 20px 0px;
} 

/* Ikona Facebooku */
.social-media {
  text-align: center;
  margin-top: 20px;
}

.facebook-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}


.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Levý sloupec */
.contact-left {
  flex: 1;
  padding: 10px;
  border-right: 2px solid #ccc;
}

.contact-left h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-left p {
  margin: 5px 0;
}

/* Pravý sloupec */
.contact-right {
  flex: 1;
  padding: 10px;
}

.contact-right h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-right label {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-right button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.contact-right button:hover {
  background-color: #45a049;
}

/* Responzivní design pro mobilní zařízení */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-left,
  .contact-right {
    border-right: none;
    padding: 15px;
  }
}
