/*
Theme Name: Bosa Child - WPCWallThai
Theme URI: https://wpcwallthai.com
Description: Child theme for WPCWallThai SEO optimization
Author: WPCWallThai
Template: bosa
Version: 1.0.0
Text Domain: bosa-child
*/

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

/* Custom styles for WPCWallThai */
:root {
    --primary-color: #2E7D32;
    --secondary-color: #FFA000;
    --text-color: #212121;
    --bg-color: #FAFAFA;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    background: #FFA000;
    color: white !important;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Mobile CTA Bar */
@media (max-width: 768px) {
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: flex;
        z-index: 9999;
    }
    
    .mobile-cta-bar a {
        flex: 1;
        padding: 15px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
    }
}