/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  GeneratePress Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     generatepress
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  generatepress-child
 Domain Path:  /languages
*/

/* ============================================
   HELLBLAU COLOR SCHEME - CLEAN VERSION
   ============================================ */

/* Links */
a {
  color: #4DA6D6;
}

a:hover {
  color: #2E7FA3;
}

/* Buttons */
button,
input[type="button"],
input[type="submit"],
.button {
  background-color: #4DA6D6;
  color: #fff;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover {
  background-color: #2E7FA3;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #2E7FA3;
}

/* Header */
.site-header {
  background-color: #f8fbff;
  border-bottom: 3px solid #4DA6D6;
}

/* Footer */
.site-footer {
  background-color: #f8fbff;
  border-top: 3px solid #4DA6D6;
}

.site-footer a {
  color: #4DA6D6;
}

.site-footer a:hover {
  color: #2E7FA3;
}

/* ============================================
   REMOVE GENERATEPRESS FOOTER LINK - STRONG
   ============================================ */

/* Hide GeneratePress link completely */
a[href*="generatepress.com"],
.site-info a[href*="generatepress"] {
  display: none !important;
  visibility: hidden !important;
}

/* Hide text containing GeneratePress */
.site-info {
  font-size: 0;
}

.site-info > * {
  font-size: 16px;
}

/* Alternative - just hide the text */
.site-footer p:has(a[href*="generatepress"]) {
  display: none !important;
}