/*
Theme Name: Conservator Insurance
Theme URI: https://conservatorinsurance.com
Author: Conservator Insurance LLC
Author URI: https://conservatorinsurance.com
Description: Custom WordPress theme for Conservator Insurance LLC, featuring consistent branding with navy blue (#0B2D5C) and teal (#19A7A0) color scheme. Optimized for Florida insurance agency with pages for auto, home, flood, life, and commercial insurance.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conservator-insurance
Tags: insurance, business, florida, custom, responsive

Conservator Insurance WordPress Theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2A2A2A;
    line-height: 1.6;
}

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

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

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0B2D5C;
    margin: 0;
}

.site-tagline {
    font-size: 0.9rem;
    color: #19A7A0;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #2A2A2A;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #19A7A0;
}

/* Footer Styles */
.site-footer {
    background-color: #0B2D5C;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #5CCAC4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: white;
}

.site-info {
    border-top: 1px solid #19A7A0;
    padding-top: 30px;
    text-align: center;
    color: #5CCAC4;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #19A7A0;
    color: white;
}

.btn-primary:hover {
    background-color: #5CCAC4;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: white;
    color: #0B2D5C;
}

.btn-secondary:hover {
    background-color: #F4F6F8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0B2D5C 0%, #19A7A0 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: #5CCAC4;
}

/* Content Sections */
.content-section {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0B2D5C;
    margin-bottom: 20px;
}

/* Utility Classes */
.bg-white {
    background-color: white;
}

.bg-light {
    background-color: #F4F6F8;
}

.bg-primary {
    background-color: #0B2D5C;
}

.bg-secondary {
    background-color: #19A7A0;
}

.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}
