/*
Theme Name: CECIE
Theme URI: https://cecie.com
Author: Cabinet CECIE
Author URI: https://cecie.com
Description: Thème Cabinet CECIE - Expert-Comptable à Grenoble
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cecie
Tags: business, professional, accounting
*/

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header - Style minimaliste */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 2rem 0;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-decoration: none;
}

.site-title a {
    color: #2c3e50;
    text-decoration: none;
}

.site-tagline {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 300;
}

.site-location {
    font-size: 0.95rem;
    color: #3498db;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.nav-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.main-navigation li {
    display: inline-block;
}

.main-navigation a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: #3498db;
}

.main-navigation .current-menu-item a {
    color: #3498db;
}

/* Main Content */
.site-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-area {
    margin-bottom: 4rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: #2c3e50;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Intro Section */
.intro-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    margin: 0 -2rem 3rem -2rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.intro-values {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-item {
    font-size: 0.95rem;
    color: #3498db;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-box:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-box h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-box ul {
    list-style: none;
    padding-left: 0;
}

.service-box li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
}

.service-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}

/* Expertise List */
.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.expertise-item {
    background-color: #f8f9fa;
    padding: 0.8rem 1.5rem;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #2c3e50;
}

/* Local Content Box */
.local-content {
    background-color: #f8f9fa;
    padding: 2rem;
    border-left: 3px solid #3498db;
    margin-top: 1.5rem;
}

.local-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.local-content strong {
    color: #2c3e50;
}

.local-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.local-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.local-content li {
    padding: 0.4rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.local-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #3498db;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #555;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: white !important;
    padding: 1rem 2rem;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* News Categories */
.news-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.news-category {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Blog Posts */
.post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.entry-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: #2c3e50;
    text-decoration: none;
}

.entry-title a:hover {
    color: #3498db;
}

.entry-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

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

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.site-footer p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Widgets */
.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2rem;
    }
    
    .main-navigation ul {
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .intro-section {
        margin: 0 0 3rem 0;
    }
    
    .intro-values {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* WordPress Specific */
.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: -999px;
}

.skip-link:focus {
    left: 0;
    background: #3498db;
    color: white;
    padding: 1rem;
    z-index: 9999;
}