/*
Theme Name:   Astra Child - MonCoachCuisine
Theme URI:    https://moncoachcuisine.com
Description:  Child theme for MonCoachCuisine.com - Cours de cuisine Yvelines
Author:       MonCoachCuisine
Author URI:   https://moncoachcuisine.com
Template:     astra
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:  astra-child
*/

/*
 * Custom styles for MonCoachCuisine.com
 * All parent theme styles are loaded via functions.php
 */

/* CTA Button Styling */
.wp-block-button__link,
.moncoach-cta-button {
    background-color: #e74c3c;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.wp-block-button__link:hover,
.moncoach-cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Testimonial Styling */
.moncoach-testimonial {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
}

.moncoach-testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 12px;
}

.moncoach-testimonial-author {
    font-weight: 600;
    color: #e74c3c;
    font-size: 14px;
}

/* Service Box Styling */
.moncoach-service-box {
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 28px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.moncoach-service-box:hover {
    border-color: #e74c3c;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.moncoach-service-box h3 {
    color: #e74c3c;
    margin-bottom: 12px;
}

/* FAQ Styling */
.moncoach-faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ecf0f1;
}

.moncoach-faq-question {
    font-weight: 700;
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 8px;
}

.moncoach-faq-answer {
    color: #555;
    line-height: 1.6;
}

/* Hero Section */
.moncoach-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.moncoach-hero h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .moncoach-hero h1 {
        font-size: 1.8em;
    }

    .wp-block-button__link,
    .moncoach-cta-button {
        width: 100%;
        display: block;
        text-align: center;
    }

    .moncoach-service-box {
        margin: 15px 0;
    }
}

/* Contact Form Styling */
.sureforms-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

/* Phone/Email Links */
a[href^="tel:"],
a[href^="mailto:"] {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Service Area List */
.moncoach-service-area {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.moncoach-service-area span {
    background: #ecf0f1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #2c3e50;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Hide default page title on homepage (we have custom H1 in content) */
.home .entry-header {
    display: none;
}

/* Ensure our content H1 is properly styled */
.home .entry-content h1:first-of-type {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}
