main section {
  background-color: var(--main-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 30px auto;
  max-width: 1100px;
}

h1 {
  text-align: center;
  /* margin-top: 30px;
  margin-bottom: 30px; */
  color: var(--title-color);
}

h2,
h3 {
  color: var(--title-color);
  margin-bottom: 12px;
}

h4 {
  color: var(--title-color);
  margin: 15px 0 5px;
}

/* Kontaktinfos */
#kontaktinfos .kontaktinformationen {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

#kontaktinfos h2{
  text-align: center;
  margin-bottom: 20px;
  font-size: larger;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background-color: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-left: 6px solid var(--accent-color);
}

.contact-item img {
  width: 34px;
  height: 34px;
}

.contact-item p {
  margin: 0;
  font-family: var(--font-text);
  color: var(--text-color);
  line-height: 1.5;
}

/* Öffnungszeiten */
#oeffnungszeiten {
  text-align: center;
}

#oeffnugszeiten h2 {
  margin-bottom: 12px;
}

/* CTA Reservieren-Button*/
.contact-actions {
  max-width: 1100px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
}

.contact-actions .feature-link {
  background-color: var(--color2);
  font-size: large;
  padding: 8px 90px;
}


/* Kontaktformular */
/* #kontaktformular {
  text-align: center;
}

#kontaktformular form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

#kontaktformular .feld,
#kontaktformular textarea {
  width: 100%;
  max-width: 720px;
}

#kontaktformular .feld,
#kontaktformular textarea {
  padding: 12px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  background: #fff;
  color: var(--title-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 0;
}
*/
/* #kontaktformular textarea {
  min-height: 120px;
  resize: vertical;
}  */

#kontaktformular input[type='submit'].feature-link {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

#kontaktformular input[type='reset'].feature-link {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
}

.contact-form fieldset {
  border: none;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
  padding: 10px;
}

.contact-form select {
  display: block;
  width: 30%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-main);
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
}

.contact-form select:hover,
.contact-form select:focus-visible{
  border: 2px solid var(--link-hover-color);
  outline: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.contact-form label{
  color: var(--title-color);
  font-weight: bold;
  margin-bottom: 6px;
  display: inline-block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-main);
  resize: vertical;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  color: var(--text-color);
  cursor: text;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
  border: 3px solid var(--link-hover-color);
  outline: none;
}

.contact-form .button {
  width: 98%;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.45);
  background-color: var(--color2);
  background-color: var(--color2);
  border: 2px solid var(--link-color)
}

.contact-form .form-action{
  text-align: center;
}

.contact-form .button:hover{
  background: var(--link-hover-color);
  color: white;
}

.info{
  font-size: 13px;
  display: flex;
  justify-content: center;
}


/* Anfahrt / Map */
#anfahrt {
  text-align: center;
  color: var(--title-color);
}

#anfahrt h2,
#anfahrt p {
  text-align: left;
}

.map-embed {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  margin: 12px auto 0;
  background: var(--secondary-color);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.bg .feature-link {
  margin-top: 16px;
  background-color: var(--color2);
}



@media (max-width: 1024px) {
  #kontaktinfos .kontaktinformationen{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  main section {
    padding: 20px;
    margin: 20px auto;
  }

  /* #kontaktinfos .kontaktinformationen{
    padding: 20px;
    margin: 20px auto;
  } */

  #kontaktinfos {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .contact-form{
    padding: 0;
  }

  .contact-form input,
  .contact-form textarea{
    font-size: 12px;
  }

  .info {
    margin-top: 15px;
  }
}