/*
Theme Name:   VTF Astra Child
Theme URI:    https://villarditatropicalfarm.com
Description:  Custom child theme for VTF B2C. Lead generation and product showcase website. Built on Astra theme with focus on conversions, product pages, and customer acquisition.
Author:       VTF Team
Author URI:   https://villarditatropicalfarm.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:  vtf-astra-child
Tags:         business, lead-generation, products, b2c, astra-child
*/

/*
 * ==========================================================================
 * Table of Contents:
 * ==========================================================================
 * 1. Brand Variables (Colors, Fonts)
 * 2. Header & Navigation
 * 3. Hero Sections & CTAs
 * 4. Product Pages
 * 5. Lead Generation Forms
 * 6. Company Pages (About, History, etc.)
 * 7. Footer & Contact Info
 * 8. E-commerce (SureCart) Customizations
 * 9. Mobile Responsive
 * 10. Utility Classes
 * ==========================================================================
 */

/* ==========================================================================
   1. Brand Variables (Colors, Fonts)
   ========================================================================== */

:root {
    /* VTF Brand Colors - Update these with your actual brand colors */
    --vtf-primary-color: #0073aa;      /* Main brand color */
    --vtf-secondary-color: #005177;    /* Darker accent */
    --vtf-accent-color: #00a0d2;       /* Light accent */
    --vtf-text-color: #333333;         /* Body text */
    --vtf-heading-color: #1a1a1a;      /* Headings */
    --vtf-cta-color: #e74c3c;          /* Call-to-action buttons */
    --vtf-cta-hover: #c0392b;          /* CTA hover state */
    --vtf-success-color: #27ae60;      /* Success messages */
    --vtf-border-color: #e0e0e0;       /* Borders */
    
    /* Typography */
    --vtf-heading-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --vtf-body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --vtf-section-padding: 80px;
    --vtf-container-width: 1200px;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */

/* Example: Custom header background */
/*
.site-header {
    background-color: var(--vtf-primary-color);
}
*/

/* Example: Logo sizing */
/*
.site-logo img {
    max-height: 60px;
}
*/

/* ==========================================================================
   3. Hero Sections & CTAs
   ========================================================================== */

/* Example: Hero section styling */
/*
.hero-section {
    background: linear-gradient(135deg, var(--vtf-primary-color), var(--vtf-secondary-color));
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
*/

/* Example: CTA button styling */
/*
.cta-button,
.btn-primary {
    background-color: var(--vtf-cta-color);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.cta-button:hover,
.btn-primary:hover {
    background-color: var(--vtf-cta-hover);
}
*/

/* ==========================================================================
   4. Product Pages
   ========================================================================== */

/* Example: Product grid layout */
/*
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-item {
    border: 1px solid var(--vtf-border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
*/

/* Example: Product page layout */
/*
.product-page-header {
    background: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 20px;
}
*/

/* ==========================================================================
   5. Lead Generation Forms
   ========================================================================== */

/* Example: Form styling */
/*
.lead-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--vtf-border-color);
    border-radius: 4px;
}

.lead-form button[type="submit"] {
    background-color: var(--vtf-cta-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
*/

/* Example: Inline contact info */
/*
.contact-info-bar {
    background: var(--vtf-primary-color);
    color: white;
    padding: 15px;
    text-align: center;
}

.contact-info-bar a {
    color: white;
    margin: 0 20px;
}
*/

/* ==========================================================================
   6. Company Pages (About, History, etc.)
   ========================================================================== */

/* Example: About page sections */
/*
.company-timeline {
    padding: 80px 20px;
    max-width: var(--vtf-container-width);
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
*/

/* ==========================================================================
   7. Footer & Contact Info
   ========================================================================== */

/* Example: Footer customization */
/*
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: var(--vtf-container-width);
    margin: 0 auto 40px;
}
*/

/* ==========================================================================
   8. E-commerce (SureCart) Customizations
   ========================================================================== */

/* Add SureCart/e-commerce specific styles here */
/* Example: Product buttons, checkout styling, etc. */

/* ==========================================================================
   8. Mobile Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    /* Add mobile-specific styles here */
}

/* ==========================================================================
   9. Utility Classes
   ========================================================================== */

/* Add custom utility classes here */

