/**
 * Modernes Branchenprofil-Layout für Branchenbuch Pro
 */

/* Allgemeine Styles */
.branchenbuch-modern-profile {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Header-Bereich */
.branchenbuch-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.branchenbuch-profile-header-content {
  flex: 1;
}

.branchenbuch-profile-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #2c3e50;
}

.branchenbuch-profile-rating {
  margin-bottom: 15px;
  color: #f39c12;
  font-size: 1.2rem;
}

.branchenbuch-profile-rating .fa-star,
.branchenbuch-profile-rating .fa-star-half-alt {
  margin-right: 2px;
}

.branchenbuch-rating-value,
.branchenbuch-rating-count {
  color: #666;
  font-size: 0.9rem;
  margin-left: 5px;
}

.branchenbuch-profile-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.branchenbuch-profile-tag {
  display: inline-block;
  padding: 5px 12px;
  background-color: #e9f7fe;
  color: #3498db;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.branchenbuch-profile-tag:hover {
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
}

.branchenbuch-profile-logo {
  width: 200px;
  height: 200px;
  margin-left: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.branchenbuch-profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branchenbuch-profile-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #aaa;
  font-size: 4rem;
}

/* Tabs-Navigation */
.branchenbuch-profile-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.branchenbuch-tab-button {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.branchenbuch-tab-button:hover {
  color: #3498db;
}

.branchenbuch-tab-button.active {
  color: #3498db;
  border-bottom-color: #3498db;
}

/* Tab-Inhalte */
.branchenbuch-tab-pane {
  display: none;
}

.branchenbuch-tab-pane.active {
  display: block;
}

/* Sektionen */
.branchenbuch-profile-section {
  margin-bottom: 40px;
}

.branchenbuch-profile-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.branchenbuch-profile-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

/* Beschreibung */
.branchenbuch-profile-description {
  line-height: 1.8;
  color: #555;
}

/* Öffnungszeiten */
.branchenbuch-profile-opening-hours {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}

.branchenbuch-opening-hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.branchenbuch-opening-hours-day {
  font-weight: 600;
}

.branchenbuch-opening-hours-time.branchenbuch-closed {
  color: #e74c3c;
}

/* Karte */
.branchenbuch-profile-map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Services */
.branchenbuch-profile-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.branchenbuch-profile-service-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.branchenbuch-profile-service-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.branchenbuch-profile-service-icon {
  font-size: 1.5rem;
  color: #3498db;
  margin-right: 15px;
  padding-top: 5px;
}

.branchenbuch-profile-service-details {
  flex: 1;
}

.branchenbuch-profile-service-details h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.branchenbuch-profile-service-details p {
  margin: 0;
  color: #666;
}

/* Kontakt */
.branchenbuch-profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.branchenbuch-profile-contact-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.branchenbuch-profile-contact-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.branchenbuch-profile-contact-icon {
  font-size: 1.5rem;
  color: #3498db;
  margin-right: 15px;
  padding-top: 5px;
}

.branchenbuch-profile-contact-details {
  flex: 1;
}

.branchenbuch-profile-contact-details h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.branchenbuch-profile-contact-details p {
  margin: 0;
}

.branchenbuch-profile-contact-details a {
  color: #3498db;
  text-decoration: none;
}

.branchenbuch-profile-contact-details a:hover {
  text-decoration: underline;
}

/* Social Media */
.branchenbuch-profile-social {
  margin-bottom: 30px;
}

.branchenbuch-profile-social-links {
  display: flex;
  gap: 15px;
}

.branchenbuch-profile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  color: #555;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.branchenbuch-profile-social-link:hover {
  background-color: #3498db;
  color: #fff;
  transform: translateY(-3px);
}

/* Kontaktformular */
.branchenbuch-profile-contact-form {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.branchenbuch-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.branchenbuch-form-group {
  margin-bottom: 20px;
}

.branchenbuch-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.branchenbuch-form-group input,
.branchenbuch-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.branchenbuch-form-group input:focus,
.branchenbuch-form-group textarea:focus {
  border-color: #3498db;
  outline: none;
}

.branchenbuch-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.branchenbuch-submit-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.branchenbuch-submit-button .button-icon {
  margin-left: 10px;
}

.branchenbuch-form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
}

.branchenbuch-form-message.success {
  background-color: #d4edda;
  color: #155724;
}

.branchenbuch-form-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

/* News */
.branchenbuch-profile-news {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.branchenbuch-profile-news-item {
  display: flex;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.branchenbuch-profile-news-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.branchenbuch-profile-news-date {
  width: 100px;
  padding: 20px;
  background-color: #3498db;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.branchenbuch-profile-news-content {
  flex: 1;
  padding: 20px;
}

.branchenbuch-profile-news-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.branchenbuch-profile-news-text {
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .branchenbuch-profile-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .branchenbuch-profile-logo {
    margin-left: 0;
    margin-top: 20px;
    width: 150px;
    height: 150px;
  }

  .branchenbuch-profile-tabs {
    flex-wrap: wrap;
  }

  .branchenbuch-tab-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .branchenbuch-form-row {
    grid-template-columns: 1fr;
  }

  .branchenbuch-profile-news-item {
    flex-direction: column;
  }

  .branchenbuch-profile-news-date {
    width: 100%;
    padding: 10px;
  }
}

