/*
Theme Name: Seelenportal.at
Template: kadence
Author: Child Theme Configurator
Tags: translation-ready,two-columns,right-sidebar,left-sidebar,footer-widgets,blog,custom-logo,custom-background,custom-menu,rtl-language-support,editor-style,threaded-comments,custom-colors,featured-images,wide-blocks,full-width-template,theme-options,e-commerce
Version: 1.2.21.1745141862
Updated: 2025-04-20 09:37:42

*/

/* Allgemein */
body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fdfdfd;
  color: #102235;
}

/* Überschriften */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: #102235;
}

/* Karten-Stil für Berater:innen */
.berater-karte {
  border: 1px solid #CEA156;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(16, 34, 53, 0.1);
  transition: all 0.3s ease;
}
.berater-karte:hover {
  box-shadow: 0 8px 24px rgba(16, 34, 53, 0.15);
}
.berater-karte h2 {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.berater-karte p {
  font-size: 16px;
  margin: 5px 0;
  color: #333;
}
.berater-karte .mehr-link {
  display: inline-block;
  margin-top: 10px;
  color: #CEA156;
  text-decoration: none;
  font-weight: bold;
}
.berater-karte .mehr-link:hover {
  text-decoration: underline;
}

/* Profilbild */
.berater-karte img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Grid Layout */
.berater-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Einzelprofil Layout */
.berater-profil-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(16, 34, 53, 0.07);
}
.berater-profil-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.berater-profil-header img {
  max-width: 200px;
  border-radius: 12px;
}
.berater-profil-details {
  flex: 1;
}
.berater-profil-details h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
.berater-profil-details p {
  margin: 4px 0;
}
.berater-profil-body {
  margin-top: 30px;
}
.berater-profil-body h3 {
  color: #CEA156;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.berater-profil-body p {
  line-height: 1.6;
}

/* Berater-Archiv Karten-Layout */
.berater-card {
  background: #fff;
  border: 1px solid #CEA156;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(16, 34, 53, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.berater-card:hover {
  transform: translateY(-5px);
}

/* Profilbild in der Mitte, rund */
.berater-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Name */
.berater-card h3 {
  font-family: 'Lora', serif;
  font-size: 20px;
  color: #102235;
  margin: 0 0 8px;
}

/* Ort & Themen */
.berater-card p {
  font-size: 15px;
  color: #444;
  margin: 2px 0;
}

/* Button zum Profil */
.berater-card a {
  margin-top: 12px;
  display: inline-block;
  background: #CEA156;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.berater-card a:hover {
  background: #b58e45;
}


/* elementor berater liste startseite */
.berater-card {
    background: #f9f6f1;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}
.berater-card:hover {
    transform: scale(1.02);
}
.berater-card img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.berater-card h4 {
    font-family: 'Lora', serif;
    color: #102235;
}
.berater-card p {
    color: #444;
}
.berater-card .button {
    margin-top: 0.75rem;
    padding: 0.4rem 1rem;
    background: #CEA156;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
}
/* veranstaltungen*/
.acf-form-wrapper {
    background: #fdfaf5;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Grid Layout für Veranstaltungen */
.veranstaltung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Automatisches Layout */
    gap: 20px;
    margin-top: 20px;
}

/* Stil für jede Veranstaltungskarte */
.veranstaltung-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.veranstaltung-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Bild innerhalb der Veranstaltungskarten */
.veranstaltung-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Details der Veranstaltung */
.veranstaltung-card h2 {
    font-size: 1.25rem;
    margin-top: 0;
    color: #102235;
}

.veranstaltung-card p {
    font-size: 1rem;
    color: #555;
}

.veranstaltung-card .button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #CEA156;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.veranstaltung-card .button:hover {
    background-color: #102235;
}


