/*
Theme Name: Bandwidth for Leaders
Theme URI: https://bandwidthforleaders.com
Author: Bandwidth for Leaders
Author URI: https://bandwidthforleaders.com
Description: Professional leadership development and bandwidth optimization framework
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bandwidth-for-leaders
Domain Path: /languages
*/

/* Color Scheme */
:root {
    --primary-color: #2c3e50;      /* Gunmetal Grey */
    --secondary-color: #e67e22;    /* Orange Accent */
    --accent-color: #3498db;       /* Blue for highlights */
    --light-grey: #f8f9fa;
    --dark-grey: #343a40;
    --white: #ffffff;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WordPress Core Styles */
.wp-block-image {
    margin: 20px 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

p {
    margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.site-logo span {
    color: var(--secondary-color);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #d35400;
}

.cta-button.secondary {
    background-color: var(--accent-color);
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background-color: #2980b9;
}

/* Main Content */
main {
    padding: 40px 0;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.entry-content {
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Principles Section */
.principles-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

.principles-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.principle-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.principle-number {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.principle-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.principle-excerpt {
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.principle-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.principle-link:hover {
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.equation {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.equation h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-grey);
}

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

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-excerpt {
    color: var(--dark-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--dark-grey);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--secondary-color);
}

.simple-contact-form .cta-button {
    width: 100%;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        display: block;
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }

    .cta-button.secondary {
        margin-left: 0;
    }

    .principles-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .equation h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .principle-card,
    .service-card,
    .testimonial-card {
        padding: 20px;
    }
}
