/*
Theme Name: Cipher Finance
Theme URI: https://cipher-finance.com
Author: Cipher Finance Team
Author URI: https://cipher-finance.com
Description: A professional, automated bookkeeping business theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cipher-finance
Tags: one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, rtl-language-support, sticky-post, threaded-comments, translation-ready

This theme is designed for Cipher Finance, an automated bookkeeping business.
*/

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    color: #1A365D;
}

h2 {
    font-size: 2rem;
    color: #1A365D;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #1A365D;
}

a {
    color: #4A90E2;
    text-decoration: none;
}

a:hover {
    color: #1A365D;
    text-decoration: underline;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #1A365D;
    text-decoration: none;
}

.btn-secondary {
    background-color: #1A365D;
}

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

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

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

.site-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A365D;
}

.site-title a {
    color: #1A365D;
}

.site-title a:hover {
    text-decoration: none;
    color: #4A90E2;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
}

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

.main-navigation li {
    margin-left: 2rem;
}

.main-navigation a {
    color: #1A365D;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.main-navigation a:hover {
    color: #4A90E2;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A365D 0%, #4A90E2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background-color: white;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    color: #1A365D;
    margin-top: 0;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4A90E2;
    margin: 1rem 0;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item h3 {
    margin-top: 1rem;
}

/* Process Section */
.process {
    padding: 3rem 0;
    background-color: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.process-step {
    flex: 0 0 calc(50% - 2rem);
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 4px solid #4A90E2;
    background-color: #f8f9fa;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1A365D 0%, #4A90E2 100%);
    color: white;
    text-align: center;
}

.testimonials h2 {
    color: white;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}

/* Call to Action Section */
.cta {
    padding: 3rem 0;
    text-align: center;
    background-color: #f8f9fa;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer Styles */
.site-footer {
    background-color: #1A365D;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    flex: 1;
    min-width: 300px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 0 1rem;
}

.footer-links a {
    color: white;
}

.footer-links a:hover {
    color: #C0C0C0;
}

.copyright {
    margin-top: 2rem;
    color: #C0C0C0;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* Services Page Styles */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.addon-services {
    margin-top: 3rem;
}

/* Process Page Styles */
.process-overview {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.workflow-steps {
    margin: 2rem 0;
}

.workflow-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-left: 4px solid #4A90E2;
    background-color: #f8f9fa;
}

.quality-section {
    margin-top: 3rem;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

/* Blog Styles */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.post-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.post-card h3 {
    margin: 0;
    padding: 1.5rem 1.5rem 0;
}

.post-card p {
    padding: 0 1.5rem 1.5rem;
}

.post-meta {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .main-navigation ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation li {
        margin: 0.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links li {
        margin: 0.5rem;
    }
}