/*
 Theme Name:     Divi Child Theme
 Theme URI:      http://example.com/
 Description:    Mein eigenes Child Theme für die Divi Webseite.
 Author:         Ihr Name
 Author URI:     http://example.com/
 Template:       Divi
 Version:        1.0.0
*/

<head>
<style>

/* --- Modul-Container, um die Position festzulegen --- */
.sun-orb-container {
/* Positioniert die Sonne in der Mitte des Containers */
display: flex;
justify-content: center;
align-items: center;
/* Beispiel: fixierte Position, passt dies an Ihre Bedürfnisse an */
position: fixed;
bottom: 10%;
left: 50%;
transform: translateX(-50%);
z-index: 5;
}

/* --- Die schwebende Sonne --- */
.sun-orb {
width: 150px;
height: 150px;
border-radius: 50%;

/* Farbverlauf für den Flammen-Effekt */
background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 1) 100%);

/* Innerer und äußerer Glüh-Effekt */
box-shadow: 
  0 0 15px 10px rgba(044, 076, 154, 0.6), /* Heller innerer Glühen */
  0 0 50px 30px rgba(044, 076, 154, 0.35), /* Mittlerer Glühen */
  0 0 150px 50px rgba(142, 177, 255, 0.2); /* Großer äußerer Glühen */

/* Animation für das Schwebeflug */
animation: float-sun 5s infinite ease-in-out;
}

/* --- Keyframes-Animation für das Schwebeflug --- */
@keyframes float-sun {
0% {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
25% {
  transform: translateY(-20px) scale(1.15);
  opacity: 0.95;
}
50% {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
75% {
  transform: translateY(20px) scale(0.97);
  opacity: 0.95;
}
100% {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
}

/* Styling der Sidebar */
.contact-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  padding: 30px;
  background-color: rgba(30, 30, 30, 0.9); /* Dunkler, leicht transparenter Hintergrund */
  color: #ffffff;
  font-family: Arial, sans-serif;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  
  /* Übergangseffekt für den Mauszeiger */
  transition: background-color 0.3s ease;
}

.contact-sidebar h4 {
  margin-top: 0;
  font-size: 1.5rem;
}

.contact-sidebar p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact-sidebar a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: border-bottom 0.3s ease;
}

.contact-sidebar a:hover {
  border-bottom: 1px solid #ffffff;
}

/* Mauszeiger-Effekt */
.contact-sidebar:hover {
  /* Ändert den Mauszeiger zu einem "@"-Symbol */
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Arial" font-size="28" fill="white">@</text></svg>'), default;
  background-color: rgba(40, 40, 40, 0.9);
}


</style>
</head>
