/* General styles */
body {
  margin: 0;
  padding: 32px 32px;
  font-family: Arial, sans-serif;
  color: #3F3636;
  background: url('./img/agrar-hintergrundbild.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

.wrapper {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	min-width: 150px;
}

/* Content */
.content {
  background: rgba(255, 255, 255, 0.85);
  padding: 64px 64px 32px 64px;
  margin-top: 32px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  
}

/* Header inside content */
.header {
  text-align: center;
}

.logo {
  width: 335px;
  max-width: 100%;
}

/* Text inside content */
.text {
  margin-bottom: 32px;
}

.intro-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  font-weight: bold;
}

.icon {
  width: 24px;
  height: 24px;
}

/* Footer inside content */
.footer {
  background-color: #006931;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  color: white;
  padding: 12px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-right a {
  color: white;
  text-decoration: none;
  margin: 0 8px;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content {
	padding: 24px;
    background: rgba(255, 255, 255, 0.65);
  }

  .footer {
	flex-direction: column;
	gap: 8px;
    padding: 24px
  }
}
