/*
Theme Name: Bio Link Theme
Description: Modern bio link teması. Tek sayfada tüm sosyal medya ve web linklerinizi paylaşın.
Version: 1.0.0
Author: Your Name
Text Domain: bio-link-theme
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bio-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #667eea;
    overflow: hidden;
    background: #f0f0f0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.verified-badge,
.fa-solid.fa-circle-check,
.fas.fa-check-circle,
.fa-check-circle,
.fa-circle-check,
i.fa-solid.fa-circle-check,
i.fas.fa-check-circle {
    color: #1da1f2 !important;
    font-size: 20px;
    filter: drop-shadow(0 0 3px rgba(29, 161, 242, 0.3)) !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.profile-bio {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.bio-link {
    display: block;
    padding: 15px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-link:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.bio-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.bio-link:hover::before {
    left: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    color: #667eea;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* Responsive tasarım */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .bio-container {
        padding: 30px 20px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .profile-bio {
        font-size: 14px;
    }
    
    .bio-link {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Mavi tick - en güçlü kurallar - Font Awesome 6 Compatible */
.profile-name .verified-badge,
.profile-name .fa-solid.fa-circle-check,
.profile-name .fas.fa-check-circle,
.profile-name i.fa-solid.fa-circle-check,
.profile-name i.fas.fa-check-circle,
h1 .verified-badge,
h1 .fa-solid.fa-circle-check,
h1 .fas.fa-check-circle,
h1 i.fa-solid.fa-circle-check,
h1 i.fas.fa-check-circle {
    color: #1da1f2 !important;
    font-size: 20px !important;
    filter: drop-shadow(0 0 3px rgba(29, 161, 242, 0.3)) !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    margin-left: 8px !important;
}

/* Özelleştirme için CSS değişkenleri */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} 