/*
 Theme Name: GeneratePress Child
 Theme URI: https://generatepress.com
 Description: A child theme for GeneratePress with custom styling.
 Author: You
 Template: generatepress
 Version: 1.0
*/

/* Import parent theme styles */
@import url("../generatepress/style.css");

/* Your custom CSS */
body {
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

/* Bubbly CTA Buttons */
.button, button, input[type="submit"] {
    background: #1976d2; /* Primary blue */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.3s ease;
}
.button:hover, button:hover, input[type="submit"]:hover {
    background: #1565c0;
    transform: scale(1.08);
}

/* Navigation */
.main-navigation .main-nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}
.main-navigation .main-nav ul li a:hover {
    color: #ffca28; /* Gold hover accent */
}
