/*
 Theme Name:   Soleil Child Theme
 Theme URI:    http://soleil.axiomthemes.com/
 Description:  Soleil Child Theme
 Author:       AxiomThemes
 Author URI:   http://axiomthemes.com
 Template:     soleil
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  soleil
*/


/* =Child-Theme customization starts here
------------------------------------------------------------ */
/* Grundlegender Stil für Soleil-ähnliche Buttons */
.soleil-button {
    display: inline-block;
    background-color: #f39c12; /* Primäre Farbe */
    color: #ffffff; /* Textfarbe */
    padding: 10px 20px; /* Innenabstand */
    border-radius: 30px; /* Abgerundete Ecken */
    text-transform: uppercase; /* Großbuchstaben */
    font-size: 14px; /* Schriftgröße */
    font-weight: bold; /* Fettschrift */
    border: none; /* Kein Rahmen */
    cursor: pointer; /* Hand-Cursor bei Hover */
    transition: all 0.3s ease; /* Weicher Übergang bei Hover */
    text-align: center; /* Zentrierter Text */
    text-decoration: none; /* Entfernt Unterstreichung */
}

/* Hover-Zustand */
.soleil-button:hover {
    background-color: #e67e22; /* Dunklere Farbe beim Hover */
    color: #ffffff; /* Sicherstellen, dass der Text lesbar bleibt */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optionaler Schatten-Effekt */
}
