/*
Theme Name: Investiční Expert
Theme URI: https://example.com
Author: Petr Novák
Author URI: https://example.com
Description: Profesionální investiční blog a poradenství - moderní WordPress téma pro finanční experty
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: investicni-expert
Tags: blog, finance, investment, portfolio, modern, gradient, responsive
*/

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Header */
.site-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.site-header h1,
.site-title {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-description,
.tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card,
.post-content,
article {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Author Section */
.author-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.author-info h2 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.author-info p {
    color: #4a5568;
    font-size: 1.1rem;
}

/* Content Section */
.content-section h3,
.post-content h3,
.entry-content h3 {
    color: #2d3748;
    margin: 30px 0 20px;
    font-size: 1.8rem;
    border-left: 5px solid #667eea;
    padding-left: 15px;
}

.content-section p,
.post-content p,
.entry-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.content-section ul,
.content-section ol,
.post-content ul,
.post-content ol,
.entry-content ul,
.entry-content ol {
    margin-left: 25px;
    margin-bottom: 25px;
}

.content-section li,
.post-content li,
.entry-content li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.highlight-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.stat-card h5 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Footer */
.site-footer {
    text-align: center;
    margin-top: 60px;
    color: white;
    opacity: 0.9;
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header h1,
    .site-title {
        font-size: 2.5rem;
    }
    
    .author-section {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-card,
    .post-content {
        padding: 25px;
    }
}

/* WordPress Specific Classes */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

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

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

.wp-caption-text {
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

/* Navigation */
.main-navigation {
    text-align: center;
    margin: 20px 0;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
}

.main-navigation li {
    display: inline-block;
    margin: 0 15px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    background: rgba(255,255,255,0.2);
}
