<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="author" content="Ömer Faruk Karadeniz">
    <meta name="description" content="Personal Website">
    <meta name="keywords" content="Ömer Faruk Karadeniz, Software Engineer, Backend Engineer, Software Developer, Backend Developer, Frontend Developer">
    <title>Ömer Faruk Karadeniz</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            height: 100%;
        }

        body {
            height: 100%;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.75;
            background-color: #f0f4f8;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Cpath fill='%239C92AC' fill-opacity='0.25' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: background-color 0.5s ease;
        }

        body.linkedin-bg {
            background-color: rgba(10, 102, 194, 0.1);
        }
        
        body.github-bg {
            background-color: rgba(24, 23, 23, 0.1);
        }
        
        body.instagram-bg {
            background-color: rgba(228, 64, 95, 0.1);
        }
    
        body.twitter-bg {
            background-color: rgba(29, 161, 242, 0.1);
        }
        
        body.medium-bg {
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        body.stackoverflow-bg {
            background-color: rgba(244, 128, 36, 0.1);
        }
        
        body.gmail-bg {
            background-color: rgba(212, 70, 56, 0.1);
        }

        .content-wrapper {
            max-width: 100%;
            width: 100%;
            padding: 20px 0;
        }

        .name {
            font-family: 'Poppins', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            margin-bottom: 10px;
            color: #212529;
            letter-spacing: -0.5px;
        }

        .title, .company {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: #6c757d;
            margin-bottom: 8px;
        }

        .company {
            margin-bottom: 40px;
        }
        
        .company a {
            color: #0A66C2;
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .company a:hover {
            color: #0056b3;
        }
        
        .company a:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #0A66C2;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .company a:hover:after {
            transform: scaleX(1.25);
        }
        
        
        .social-links {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .social-links li a {
            color: #343a40;
            font-size: 2.2rem;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .social-links li a:hover {
            transform: scale(1.5);
        }

        .social-links li a.linkedin:hover { color: #0A66C2; }
        .social-links li a.github:hover { color: #181717; }
        .social-links li a.instagram:hover { color: #E4405F; }
        .social-links li a.twitter:hover { color: #1DA1F2; }
        .social-links li a.medium:hover { color: #000000; }
        .social-links li a.stackoverflow:hover { color: #F48024; }
        .social-links li a.gmail:hover { color: #D44638; }
        
        /* SVG styling */
        .social-links li svg {
            width: 2.4rem;
            height: 2.4rem;
            vertical-align: middle;
            fill: currentColor;
            transition: transform 0.3s ease;
        }

        @media (max-width: 600px) {
            .name {
                font-size: 2.2rem;
            }
            .title, .company {
                font-size: 1.3rem;
            }
            .social-links {
                gap: 25px;
            }
            .social-links li a {
                font-size: 2rem;
            }
            .social-links li svg {
                width: 2rem;
                height: 2rem;
            }
        }
        @media (max-width: 400px) {
            .name {
                font-size: 1.9rem;
            }
             .title, .company {
                font-size: 1.1rem;
            }
            .social-links {
                gap: 20px;
            }
             .social-links li a {
                font-size: 1.8rem;
            }
            .social-links li svg {
                width: 1.8rem;
                height: 1.8rem;
            }
        }
    </style>
    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const socialLinks = document.querySelectorAll('.social-links li a');
            
            socialLinks.forEach(link => {
                const socialClass = Array.from(link.classList).find(cls => 
                    ['linkedin', 'github', 'instagram', 'twitter', 'medium', 'stackoverflow', 'gmail'].includes(cls)
                );
                
                if (socialClass) {
                    link.addEventListener('mouseenter', () => {
                        document.body.className = `${socialClass}-bg`;
                    });
                    
                    link.addEventListener('mouseleave', () => {
                        document.body.className = '';
                    });
                }
            });
        });
    </script>
</head>
<body>
    <div class="content-wrapper">
        <h1 class="name">Ömer Faruk Karadeniz</h1>
        <p class="title">Senior Software Engineer</p>
        <p class="company"><a href="https://iyzico.com" target="_blank" rel="noopener noreferrer">@iyzico</a></p>

        <ul class="social-links">
            <li>
                <a href="https://www.linkedin.com/in/farukkaradeniz" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn Profile" class="linkedin">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                        <path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/>
                    </svg>
                </a>
            </li>
            <li>
                <a href="https://github.com/FarukKaradeniz" target="_blank" rel="noopener noreferrer" aria-label="Github Profile" class="github">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512">
                        <path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/>
                    </svg>
                </a>
            </li>
            <li>
                <a href="https://www.instagram.com/omeerfk" target="_blank" rel="noopener noreferrer" aria-label="Instagram Profile" class="instagram">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                        <path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/>
                    </svg>
                </a>
            </li>
            <li>
                <a href="https://twitter.com/omeerfk" target="_blank" rel="noopener noreferrer" aria-label="Twitter Profile" class="twitter">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
                        <path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM351.3 199.3v0c0 86.7-66 186.6-186.6 186.6c-37.2 0-71.7-10.8-100.7-29.4c5.3 .6 10.4 .8 15.8 .8c30.7 0 58.9-10.4 81.4-28c-28.8-.6-53-19.5-61.3-45.5c10.1 1.5 19.2 1.5 29.6-1.2c-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3c-9-6-16.4-14.1-21.5-23.6s-7.8-20.2-7.7-31c0-12.2 3.2-23.4 8.9-33.1c32.3 39.8 80.8 65.8 135.2 68.6c-9.3-44.5 24-80.6 64-80.6c18.9 0 35.9 7.9 47.9 20.7c14.8-2.8 29-8.3 41.6-15.8c-4.9 15.2-15.2 28-28.8 36.1c13.2-1.4 26-5.1 37.8-10.2c-8.9 13.1-20.1 24.7-32.9 34c.2 2.8 .2 5.7 .2 8.5z"/>
                    </svg>
                </a>
            </li>
            <li>
                <a href="https://medium.com/@OmeerFK" target="_blank" rel="noopener noreferrer" aria-label="Medium Profile" class="medium">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512">
                        <path d="M180.5 74.3C80.8 74.3 0 155.6 0 256S80.8 437.7 180.5 437.7 361 356.4 361 256 280.2 74.3 180.5 74.3zm288.3 10.6c-49.8 0-90.2 76.6-90.2 171.1s40.4 171.1 90.3 171.1 90.3-76.6 90.3-171.1H559C559 161.5 518.6 84.9 468.8 84.9zm139.5 17.8c-17.5 0-31.7 68.6-31.7 153.3s14.2 153.3 31.7 153.3S640 340.6 640 256C640 171.4 625.8 102.7 608.3 102.7z"/>
                    </svg>
                </a>
            </li>
            <li>
                <a href="https://stackoverflow.com/users/8040692/omeerfk" target="_blank" rel="noopener noreferrer" aria-label="Stack Overflow Profile" class="stackoverflow">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
                        <path d="M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z"/>
                    </svg>
                </a>
            </li>
            <li>
                <a href="mailto:krdnzomer@gmail.com" aria-label="Send Email" class="gmail">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
                        <path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/>
                    </svg>
                </a>
            </li>
        </ul>
    </div>
</body>
</html>