/*
Theme Name: Voice Pilot Pro
Theme URI: https://voicepilotpro.com
Description: Custom WordPress theme for Voice Pilot Pro - Command MSFS with Your Voice
Author: Voice Pilot Pro
Author URI: https://voicepilotpro.com
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voice-pilot-pro
*/

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 0 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
    margin-left: 0;
    padding-left: 0;
}

.site-logo img {
    height: 150px;
    width: auto;
    max-width: 600px;
    margin-left: 0;
}

.main-navigation {
    flex-shrink: 0;
    margin-left: auto;
    padding-right: 10px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: #6b9bb0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px 20px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.15;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #6b9bb0;
    color: #fff;
}

.btn-primary:hover {
    background: #5a8a9d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 155, 176, 0.3);
}

.btn-secondary {
    background: #6d8c54;
    color: #fff;
}

.btn-secondary:hover {
    background: #5c7846;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 140, 84, 0.3);
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    background: #6b9bb0;
    padding: 18px 15px;
    color: #fff;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.feature-item {
    padding: 5px 0;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.feature-icon-svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.feature-description {
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.95;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.content-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.entry-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 17px;
    color: #555;
}

.entry-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.entry-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.entry-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 40px;
}

.entry-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.entry-content a {
    color: #6b9bb0;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #5a8a9d;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.entry-content blockquote {
    border-left: 4px solid #6b9bb0;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card-icon {
    width: 100px;
    height: 100px;
    background: #6b9bb0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 50px;
}

.feature-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card.featured {
    border: 3px solid #6d8c54;
    transform: scale(1.05);
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #6b9bb0;
    margin-bottom: 10px;
}

.pricing-period {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.pricing-features li:before {
    content: "✓ ";
    color: #6d8c54;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-features li.disabled {
    color: #999;
}

.pricing-features li.disabled:before {
    content: "✗ ";
    color: #999;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #6b9bb0;
    color: #fff;
    padding: 50px 20px 30px;
    margin-top: 80px;
    clear: both;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    min-height: 100px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul,
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li,
.footer-menu li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .site-logo img {
        height: 60px;
    }
}

/* ==========================================================================
   WooCommerce Support
   ========================================================================== */

.woocommerce-page .content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce button.button {
    background: #6d8c54;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
}

.woocommerce button.button:hover {
    background: #5c7846;
}
