/*
Theme Name: Taner Özay CV
Theme URI: https://tanerozay.com
Author: Taner Özay
Author URI: https://tanerozay.com
Description: SEO uyumlu, schema markup destekli profesyonel gazeteci CV teması
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: taner-ozay-cv
Tags: cv, resume, portfolio, journalist, seo, schema
*/

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.site-title {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.site-description {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.8;
}

/* Navigation */
.main-navigation {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.main-navigation li {
    margin: 0 20px;
}

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

.main-navigation a:hover {
    color: #2a5298;
}

/* Main Content */
.site-content {
    background: #fff;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    color: #1e3c72;
    font-size: 2.5em;
    margin-bottom: 20px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

.about-section p {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

/* Experience Section */
.experience-section {
    margin-bottom: 50px;
}

.experience-section h2 {
    color: #1e3c72;
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

.experience-item {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #2a5298;
    border-radius: 4px;
}

.experience-item h3 {
    color: #1e3c72;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.experience-meta {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.experience-item p {
    line-height: 1.8;
}

/* Skills Section */
.skills-section {
    margin-bottom: 50px;
}

.skills-section h2 {
    color: #1e3c72;
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.skill-item h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

/* Articles Section */
.articles-section {
    margin-bottom: 50px;
}

.articles-section h2 {
    color: #1e3c72;
    font-size: 2.5em;
    margin-bottom: 30px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

.article-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    transition: background 0.3s;
}

.article-item:hover {
    background: #e9e9e9;
}

.article-item h3 {
    color: #1e3c72;
    margin-bottom: 10px;
}

.article-item h3 a {
    color: #1e3c72;
    text-decoration: none;
}

.article-item h3 a:hover {
    color: #2a5298;
}

.article-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background: #1e3c72;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

.site-footer p {
    margin-bottom: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1.2em;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2em;
    }
    
    .site-description {
        font-size: 1.1em;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-navigation li {
        margin: 10px 0;
    }
    
    .site-content {
        padding: 20px;
    }
    
    .about-section h2,
    .experience-section h2,
    .skills-section h2,
    .articles-section h2 {
        font-size: 2em;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .main-navigation,
    .site-footer {
        display: none;
    }
    
    .site-header {
        background: #fff;
        color: #000;
    }
    
    .site-content {
        box-shadow: none;
    }
}
