/*
Theme Name: PilotXHub Child
Theme URI: https://pilotxhub.com
Author: Gyaanio Media
Author URI: https://gyaaniomedia.com/
Description: Child theme for PilotXHub - Customize and extend the parent theme
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pilotxhub-child
Domain Path: /languages
Template: pilotxhub
Requires at least: 5.0
Requires PHP: 7.4
*/

/**
 * Child Theme Styles
 * Import parent theme styles and add child theme customizations
 */

:root {
    /* You can override parent theme variables here */
    --color-jet-black: #000000;
    --color-pure-white: #FFFFFF;
    --color-charcoal-grey: #2B2B2B;
    --color-silver-grey: #F2F2F2;
    --color-accent: #0A1F44;
}

/* ================================
   CHILD THEME CUSTOMIZATIONS
   ================================ */

/* Add your custom styles here */

/* Example: Custom page backgrounds */
.page-home {
    /* Custom styles for home page */
}

/* Example: Custom section styles */
.section-hero {
    /* Hero section customizations */
}

/* Example: Custom button variations */
.btn-accent {
    background-color: var(--color-accent);
}

.btn-secondary {
    background-color: var(--color-charcoal-grey);
}

/* Example: Custom typography */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-jet-black);
    margin-bottom: 24px;
}

/* Example: Service cards */
.service-card {
    background-color: var(--color-pure-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(10, 31, 68, 0.15);
    transform: translateY(-8px);
}

/* Example: Team member cards */
.team-member {
    text-align: center;
    margin-bottom: 32px;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto 16px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-jet-black);
    margin-bottom: 8px;
}

.team-member-title {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

/* Example: Feature list styles */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

/* Example: Testimonial styles */
.testimonial {
    background-color: var(--color-silver-grey);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-charcoal-grey);
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-jet-black);
}

.testimonial-title {
    font-size: 12px;
    color: var(--color-accent);
}

/* Example: Process steps */
.process-step {
    text-align: center;
    padding: 24px;
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    color: var(--color-pure-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.process-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-jet-black);
    margin-bottom: 8px;
}

.process-step-description {
    color: var(--color-charcoal-grey);
}

/* Example: CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-pure-white);
    padding: 64px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-pure-white);
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

@media (max-width: 768px) {
    .team-member-image {
        width: 150px;
        height: 150px;
    }

    .section-title {
        font-size: 24px;
    }

    .process-step {
        padding: 16px;
    }

    .cta-section {
        padding: 48px 0;
    }
}

/* ================================
   UTILITY ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}
