/*
Theme Name: Fırat Yılmaz Çakıroğlu Anma Sitesi
Theme URI: http://localhost/deneme
Description: Fırat Yılmaz Çakıroğlu anma sitesi için özel WordPress teması
Version: 1.0.0
Author: Admin
Author URI: http://localhost/deneme
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: firat-theme
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar a {
    color: #fff;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #ffc107;
}

.top-bar .lang {
    border-left: 1px solid #555;
    padding-left: 20px;
}

/* Main Header */
.main-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #8B0000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section .logo {
    height: 60px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input,
.search-box button {
    padding: 10px 15px;
    border: none;
    font-size: 14px;
}

.search-box input {
    width: 200px;
}

.search-box button {
    background: #8B0000;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #a00000;
}

/* Main Navigation */
.main-nav {
    background: #8B0000;
    padding: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.main-nav > .container > ul > li {
    position: relative;
}

.main-nav > .container > ul > li > a {
    display: block;
    padding: 15px 18px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s;
}

.main-nav > .container > ul > li > a:hover,
.main-nav > .container > ul > li > a.current-menu-item {
    background: #a00000;
}

/* Dropdown */
.main-nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    flex-direction: column;
}

.main-nav li:hover > ul {
    display: flex;
}

.main-nav ul ul li {
    width: 100%;
}

.main-nav ul ul a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.main-nav ul ul a:hover {
    background: #f5f5f5;
    color: #8B0000;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #333;
}

.slider-container {
    height: 100%;
}

.slide {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide.active {
    opacity: 1;
}

.slider-caption {
    background: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.slider-caption h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.slider-caption p {
    font-size: 16px;
    color: #ccc;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #8B0000 0%, #a00000 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
}

/* Quick Links */
.quick-links {
    background: #f8f8f8;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.link-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    min-width: 120px;
}

.link-box:hover {
    transform: translateY(-5px);
}

.link-box span:first-child {
    font-size: 28px;
}

/* Biography Preview */
.page-content {
    padding: 50px 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bio-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #8B0000;
}

.bio-card h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 20px;
}

.bio-card p {
    color: #555;
    margin-bottom: 15px;
}

.bio-card a {
    color: #8B0000;
    font-weight: 600;
}

/* Profile Section */
.profile-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.profile-image {
    flex: 0 0 350px;
}

.profile-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.profile-info h2 {
    color: #8B0000;
    margin-bottom: 20px;
    font-size: 28px;
}

.profile-info h3 {
    color: #333;
    margin: 25px 0 15px;
    font-size: 20px;
}

.profile-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.profile-info ul {
    list-style: none;
    margin-top: 20px;
}

.profile-info ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.profile-info ul li strong {
    color: #8B0000;
    display: inline-block;
    min-width: 150px;
}

/* Quote Box */
.quote-box {
    background: #f9f9f9;
    border-left: 4px solid #8B0000;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.quote-box cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: #888;
    font-size: 14px;
}

/* Social Section */
.social-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-header {
    padding: 20px;
    text-align: center;
    background: #333;
    color: #fff;
}

.social-card.twitter .social-header {
    background: #000;
}

.social-card.instagram .social-header {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.youtube .social-header {
    background: #FF0000;
}

.social-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.social-header h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.social-header a {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
}

.social-content {
    padding: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Timeline Section */
.timeline-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #8B0000;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #8B0000;
    border-radius: 50%;
    top: 5px;
}

.timeline-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-right: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: right;
}

.timeline-item .date {
    position: absolute;
    left: 20px;
    top: 5px;
    background: #8B0000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.timeline-item h4 {
    color: #8B0000;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #555;
    font-size: 14px;
}

/* Quotes Section */
.quotes-section {
    padding: 50px 0;
    background: #fff;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.quote-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
}

.quote-card p {
    font-size: 16px;
    font-style: italic;
    color: #333;
    line-height: 1.8;
}

.quote-card cite {
    display: block;
    margin-top: 15px;
    color: #888;
    font-size: 14px;
}

/* Announcements */
.announcements {
    padding: 50px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #8B0000;
    margin: 15px auto 0;
}

.announcement-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.announcement-list .date {
    color: #8B0000;
    margin-right: 15px;
    font-weight: 600;
    font-size: 14px;
}

.announcement-list a {
    color: #333;
    transition: color 0.3s;
}

.announcement-list a:hover {
    color: #8B0000;
}

.view-all {
    display: block;
    text-align: center;
    color: #8B0000;
    font-weight: 600;
    margin-top: 20px;
}

/* Gallery */
.gallery {
    padding: 50px 0;
    background: #fff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.photo-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
    background: #ddd;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

/* Main Content Area */
.main-content {
    padding: 50px 0;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffc107;
}

.btn-footer-link {
    display: inline-block;
    color: #ccc;
    padding: 8px 12px;
    background: #ffc107;
    color: #1a1a1a;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-footer-link:hover {
    background: #ffb300;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #ccc;
}

.social-links a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        padding-right: 0;
        padding-left: 50px;
        justify-content: flex-start;
    }

    .timeline-item::before {
        left: 20px;
    }

    .timeline-item .content {
        margin-right: 0;
        text-align: left;
    }

    .timeline-item .date {
        left: 50px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        justify-content: center;
    }

    .main-nav > .container > ul > li > a {
        padding: 12px 10px;
        font-size: 13px;
    }

    .search-box input {
        width: 150px;
    }

    .slider-caption h2 {
        font-size: 18px;
    }

    .slider-caption p {
        font-size: 14px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .links-grid {
        gap: 15px;
    }

    .link-box {
        padding: 15px 20px;
        min-width: 100px;
    }

    .profile-section {
        flex-direction: column;
    }

    .profile-image {
        flex: 0 0 auto;
    }
}

/* İçerik Sayfaları Stilleri */

.page_content {
    max-width: 800px;
    margin: 40px auto;
}

.page_content h2 {
    color: #8B0000;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 3px solid #8B0000;
    padding-bottom: 10px;
}

.page_content h3 {
    color: #a00000;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page_content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.profile-info {
    background-color: #f9f9f9;
    border-left: 5px solid #8B0000;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.profile-info h3 {
    margin-top: 0;
    color: #8B0000;
}

.profile-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-info li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

.profile-info li:last-child {
    border-bottom: none;
}

.profile-info strong {
    color: #8B0000;
}

/* Alıntı Kutuları */
.quote-box {
    background: linear-gradient(135deg, #8B0000 0%, #a00000 100%);
    color: #fff;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-style: italic;
    border-left: 5px solid #fff;
}

.quote-box p {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: #fff;
    line-height: 1.6;
}

.quote-box cite {
    display: block;
    font-size: 0.95rem;
    color: #ffffcc;
    font-style: normal;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Tablet */
@media (max-width: 768px) {
    .page_content {
        margin: 20px 10px;
    }

    .page_content h2 {
        font-size: 1.6rem;
        margin-top: 20px;
    }

    .page_content h3 {
        font-size: 1.1rem;
        margin-top: 18px;
    }

    .profile-info {
        padding: 15px;
        margin: 15px 0;
    }

    .quote-box {
        padding: 20px;
        margin: 20px 0;
    }

    .quote-box p {
        font-size: 1rem;
    }

    .quote-box cite {
        font-size: 0.9rem;
    }

    /* Responsive Header */
    .header-content {
        flex-wrap: wrap;
    }

    .logo-section {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

    .header-right {
        width: 100%;
        gap: 10px;
    }

    .search-box {
        flex: 1;
        min-width: 200px;
    }

    .search-box input {
        flex: 1;
        width: 100%;
    }

    .auth-buttons {
        display: flex !important;
        gap: 8px !important;
        width: 100%;
    }

    .btn {
        flex: 1;
        padding: 8px 10px;
        font-size: 12px;
    }
}
