/*
Theme Name: HTS Analiz Theme
Theme URI: https://htsanaliz.net.tr
Author: Kadir Ferhat YILMAZ
Author URI: https://kadirferhatyilmaz.com.tr
Description: HTS Analiz eklentisi için özel olarak tasarlanmış profesyonel WordPress teması. Eklentinin tüm özelliklerini destekler ve modern, kullanıcı dostu bir arayüz sunar.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: htsanaliztheme
Tags: custom, business, professional, dark, purple, analysis

================================================================================
TELİF HAKKI BİLGİLERİ - SİLİNEMEZ VE DEĞİŞTİRİLEMEZ
================================================================================
Site: htsanaliz.net.tr
Kodlama ve Tasarım: Kadir Ferhat YILMAZ
Developer: https://kadirferhatyilmaz.com.tr

Bu bilgiler telif hakkı koruması altındadır ve hiçbir şekilde 
değiştirilemez veya silinemez.
================================================================================
*/

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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: linear-gradient(to right, #380A48 0%, #24062B 100%);
    color: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #4D2C5F 0%, #5A3A6D 100%);
    border-bottom: 2px solid #FF00DC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 2px #FF00DC, 0 0 20px rgba(255, 0, 220, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo h1 {
    margin: 0;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo h1 i {
    font-size: 28px;
    color: #FF00DC;
    text-shadow: 0 0 15px rgba(255, 0, 220, 0.6);
}

.site-logo a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.main-navigation {
    flex: 1;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
}

.main-menu a i {
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s;
    color: #FF00DC;
}

.main-menu a:hover {
    background: rgba(255, 0, 220, 0.2);
    color: #FF00DC;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 220, 0.3);
}

.main-menu a:hover i {
    opacity: 1;
    transform: scale(1.2);
    color: #FF00DC;
    text-shadow: 0 0 10px rgba(255, 0, 220, 0.5);
}

.main-menu .current-menu-item a {
    background: rgba(255, 0, 220, 0.2);
    color: #FF00DC;
    border: 1px solid rgba(255, 0, 220, 0.5);
}

/* Main Content */
.site-main {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.content-area {
    background: linear-gradient(135deg, #4D2C5F 0%, #5A3A6D 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 2px #FF00DC, 0 0 20px rgba(255, 0, 220, 0.2);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 0, 220, 0.3);
}

.content-area h1 {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FF00DC;
}

.content-area h1 i {
    color: #FF00DC;
    font-size: 28px;
    text-shadow: 0 0 15px rgba(255, 0, 220, 0.6);
}

.content-area h2 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-area h2 i {
    color: #FF00DC;
    text-shadow: 0 0 10px rgba(255, 0, 220, 0.5);
}

.content-area h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.content-area p {
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-area a {
    color: #FF00DC;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255, 0, 220, 0.5);
}

.content-area a:hover {
    color: #FF33E6;
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(255, 0, 220, 0.7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #4D2C5F 0%, #5A3A6D 100%);
    color: #fff;
    border: 2px solid #FF00DC;
    box-shadow: 0 0 15px rgba(255, 0, 220, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5A3A6D 0%, #4D2C5F 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 0, 220, 0.7), 0 6px 20px rgba(255, 0, 220, 0.4);
    border-color: #FF00DC;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 0, 220, 0.5);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: rgba(255, 0, 220, 0.2);
    border-color: #FF00DC;
    color: #FF00DC;
    box-shadow: 0 0 20px rgba(255, 0, 220, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #380A48 0%, #24062B 100%);
    color: #fff;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 3px solid #FF00DC;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3), 0 0 0 2px #FF00DC, 0 0 20px rgba(255, 0, 220, 0.2);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: #FF00DC;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget h3 i {
    font-size: 20px;
}

.footer-widget p,
.footer-widget li {
    color: #CCCCCC;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-widget a {
    color: #FF00DC;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255, 0, 220, 0.5);
}

.footer-widget a:hover {
    color: #FF33E6;
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(255, 0, 220, 0.7);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 220, 0.3);
}

.footer-bottom p {
    margin: 0;
    color: #CCCCCC;
    font-size: 14px;
}

.footer-bottom a {
    color: #FF00DC;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255, 0, 220, 0.5);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #FF33E6;
    text-decoration: underline;
    text-shadow: 0 0 15px rgba(255, 0, 220, 0.7);
}

.footer-company {
    color: #FF00DC;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 0, 220, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-menu {
        justify-content: center;
        width: 100%;
    }
    
    .main-menu li {
        flex: 1;
        text-align: center;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* WordPress Core Styles */
.wp-block-group {
    margin-bottom: 30px;
}

.wp-block-image {
    margin: 20px 0;
}

.wp-block-image img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

