/*
Theme Name: Twenty Twenty-Five Child - SeekMyClient
Theme URI: https://seekmyclient.com
Author: SeekMyClient
Author URI: https://seekmyclient.com
Description: Custom child theme for SeekMyClient.com built on Twenty Twenty-Five
Template: twentytwentyfive
Version: 1.0.1
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* Custom styles for SeekMyClient */

/* Brand Colors */
:root {
    --seekmyclient-primary: #2c3e50;
    --seekmyclient-secondary: #3498db;
    --seekmyclient-accent: #e74c3c;
    --seekmyclient-success: #27ae60;
    --seekmyclient-text: #333333;
    --seekmyclient-light: #ecf0f1;
}

/* Custom Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Header Customizations */
.site-header {
    background-color: var(--seekmyclient-primary);
    padding: 20px 0;
}

/* Navigation Enhancements */
.wp-block-navigation {
    font-weight: 500;
}

.wp-block-navigation-item a:hover {
    color: var(--seekmyclient-secondary);
    transition: color 0.3s ease;
}

/* Button Styles */
.wp-block-button__link {
    background-color: var(--seekmyclient-secondary);
    border-radius: 5px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover {
    background-color: var(--seekmyclient-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Form Styling */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border: 1px solid var(--seekmyclient-light);
    border-radius: 4px;
    padding: 10px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--seekmyclient-secondary);
    outline: none;
}

/* Footer Customization */
.site-footer {
    background-color: var(--seekmyclient-primary);
    color: white;
    padding: 40px 0 20px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--seekmyclient-secondary), var(--seekmyclient-primary));
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }
    
    .cta-section {
        padding: 40px 0;
    }
}