/*
Theme Name: Bewins Giriş - Resmi Site
Theme URI: https://bewinsresmi.com
Author: PhieLui
Description: Bewins resmi giriş adresi için özel tasarlanmış, SEO uyumlu profesyonel WordPress teması.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bewins-theme-01
*/

:root {
    --primary-color: #FDB913;
    --secondary-color: #FF8C00;
    --accent-green: #00C853;
    --dark-bg: #0A0A0A;
    --dark-secondary: #141414;
    --dark-card: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --accent-gold: #FFD700;
    --gradient-primary: linear-gradient(135deg, #FDB913 0%, #FF8C00 100%);
    --gradient-green: linear-gradient(135deg, #00C853 0%, #00E676 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.site-header {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 4px 30px rgba(253, 185, 19, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-giris, .btn-kayit {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-giris {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(253, 185, 19, 0.4);
}

.btn-giris:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(253, 185, 19, 0.6);
}

.btn-kayit {
    background: var(--gradient-green);
    color: var(--dark-bg);
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
}

.btn-kayit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 200, 83, 0.6);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    margin-top: 85px;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

/* ==================== SLIDER BANNER ==================== */
.slider-banner {
    background: var(--dark-bg);
    padding: 30px 0;
}

.slider-banner .container {
    max-width: 1000px;
}

.slider-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ==================== WARNING SECTION ==================== */
.warning-section {
    background: var(--dark-secondary);
    padding: 40px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 45px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: 0 5px 25px rgba(253, 185, 19, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(253, 185, 19, 0.7);
}

.btn-secondary {
    background: var(--gradient-green);
    color: var(--dark-bg);
    box-shadow: 0 5px 25px rgba(0, 200, 83, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 200, 83, 0.7);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-icon {
    font-size: 20px;
}

/* ==================== WARNING BOX ==================== */
.warning-box {
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px 30px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
}

.warning-box h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.warning-box p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== BONUS SECTION ==================== */
.bonus-section {
    padding: 80px 20px;
    background: var(--dark-secondary);
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 800;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--dark-card);
    border: 2px solid rgba(253, 185, 19, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(253, 185, 19, 0.25);
}

.bonus-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(253, 185, 19, 0.1) 0%, var(--dark-card) 100%);
}

.bonus-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
}

.bonus-title {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 15px;
    margin-top: 10px;
}

.bonus-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 15px 0;
    text-shadow: 0 0 30px rgba(253, 185, 19, 0.5);
}

.bonus-description {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ==================== CONTENT / ARTICLE SECTION ==================== */
.content-section {
    padding: 80px 20px;
    background: var(--dark-secondary);
}

.main-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.article-content {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 35px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(253, 185, 19, 0.3);
}

.article-content h3:first-of-type {
    margin-top: 0;
}

.article-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 18px !important;
    color: var(--text-light) !important;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px !important;
}

.step-list, .check-list {
    margin: 20px 0 25px 25px;
    color: var(--text-gray);
}

.step-list li, .check-list li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 15px;
}

.check-list {
    list-style: none;
    margin-left: 0;
}

.check-list li {
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.bonus-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.bonus-info-card {
    background: rgba(253, 185, 19, 0.1);
    border: 1px solid rgba(253, 185, 19, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.bonus-info-card h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.bonus-info-card p {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(253, 185, 19, 0.1);
}

.faq-question h3 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark-secondary);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.footer-links-group h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
}

.footer-links-group a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--primary-color);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.badge {
    background: var(--dark-card);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.disclaimer {
    opacity: 0.7;
    font-size: 12px !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-buttons {
        display: none;
    }
    
    .header-buttons.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid var(--primary-color);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    .bonus-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .warning-box {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 15px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .bonus-amount {
        font-size: 42px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
}
