/*
Theme Name: Yazarın Sesi
Theme URI: https://www.yazarinsesi.com
Author: Your Name
Author URI: https://www.yourwebsite.com
Description: Yazarlar için özel tasarlanmış, Redux Framework ile güçlendirilmiş WordPress teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yazarin-sesi
Tags: yazar, kitap, edebiyat, redux-framework
*/

/* Base Styles */
:root {
    --primary-color: #9c4649;
    --secondary-color: #f5eeee;
    --text-color: #333;
    --light-text: #666;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #803538;
}

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

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 0;
}

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

.site-branding img {
    height: 50px;
    width: auto;
}

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

.main-navigation ul li {
    margin-left: 25px;
}

.main-navigation ul li a {
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #803538;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
    margin-right: 10px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    max-width: 450px;
    margin-top: 30px;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--body-font);
}

.search-box button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background-color: #803538;
}

/* Medals Section */
.medals-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 0;
}

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

.medal-item {
    text-align: center;
    width: 120px;
}

.medal-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.medal-icon img {
    width: 40px;
    height: auto;
}

.medal-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.medal-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.medals-content {
    max-width: 300px;
}

.medals-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.medals-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* Excellence Section */
.excellence-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--light-text);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-number {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(156, 70, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Author Section */
.author-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.author-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.author-image {
    flex: 1;
    text-align: left;
}

.author-image img {
    max-width: 100%;
    height: auto;
}

.author-content {
    flex: 1;
    padding-left: 50px;
}

.author-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.author-desc {
    color: var(--light-text);
    margin-bottom: 30px;
}

.author-quote {
    font-family: var(--heading-font);
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-position {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.features-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    width: 22%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    opacity: 0.7;
}

.contact-info span {
    font-size: 0.9rem;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles will be in responsive.css */
