/*
Theme Name: Fatih Medya YouTube
Theme URI: https://fatihmedya.com.tr/
Author: Fatih Medya
Author URI: https://fatihmedya.com.tr/
Description: YouTube 1000 Abone ve 4000 Saat Para Kazanma Açma Hizmeti Özel WordPress Teması
Version: 1.0.0
Text Domain: fatih-medya-youtube
*/

:root {
    --primary: #FF0000;
    --primary-dark: #CC0000;
    --dark: #0F0F0F;
    --gray: #606060;
    --light-bg: #F4F6F8;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE5D;
    --shadow: 0 15px 35px rgba(0,0,0,0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

/* Hero Header */
.hero {
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.15rem;
    color: #BBB;
    max-width: 650px;
    margin: 0 auto;
}

/* Main Content Container */
.container {
    max-width: 800px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Pricing Card */
.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
    text-align: center;
    position: relative;
}

.package-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.package-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 25px;
}

.price-box {
    background: #FFF5F5;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px dashed #FFCCCC;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 5px;
    font-weight: 600;
}

/* Feature List */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    text-align: left;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F9F9F9;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.feature-item i {
    color: #2E7D32;
    font-size: 1.1rem;
}

/* Main CTA Button */
.btn-wp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--whatsapp);
    color: var(--white);
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wp-large:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badges div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Floating WhatsApp Button */
.wp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.wp-float:hover {
    transform: scale(1.1);
}

/* SEO Text Area */
.seo-content {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.seo-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.seo-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--gray);
    text-align: center;
    padding: 25px 20px;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    .package-card {
        padding: 35px 20px;
    }
    .price-amount {
        font-size: 2.6rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}
