/* NEO-BRUTALISM THEME */
:root {
    --bg: #f3f3f3;
    --yellow: #f4d03f;
    --pink: #ff85a1;
    --green: #05ff44;
    --black: #000000;
    --white: #ffffff;
    --border: 4px solid #000;
    --shadow: 8px 8px 0px #000;
}

body {
    background-color: var(--bg);
    background-image: radial-gradient(var(--black) 1px, transparent 0);
    background-size: 30px 30px;
    font-family: 'Arial Black', sans-serif;
    margin: 0;
    padding: 20px;
    color: var(--black);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
header {
    background: var(--white);
    border: var(--border);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: -2px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background: white;
    border: var(--border);
    padding: 30px;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3rem;
    margin-top: 0;
    line-height: 0.9;
}

.highlight {
    color: var(--pink);
}

/* Profil Fotoğrafı Düzenlemesi */
.photo-frame {
    border: var(--border);
    box-shadow: var(--shadow);
    background: var(--pink);
    overflow: hidden;
    line-height: 0;
    max-width: 100%;
    height: 500px; /* İstediğin boyut */
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buttons */
.btn {
    display: block;
    text-align: center;
    padding: 20px;
    margin: 15px 0;
    border: var(--border);
    box-shadow: 5px 5px 0px #000;
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    transition: 0.1s;
    text-transform: uppercase;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000;
}

.btn-kick { background: var(--green); }
.btn-donate { background: var(--yellow); }
.btn-tiktok { background: var(--pink); }

/* Neler Yapıyorum? - Galeri & Fotoğraf Dengesi */
.gallery-title {
    background: var(--black);
    color: white;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.gallery {
    display: flex; /* Eşit boylar için Flex kullanıldı */
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    background: white;
    border: var(--border);
    box-shadow: var(--shadow);
    padding: 10px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%; /* Kartın boyuna göre uzar */
    min-height: 250px;
    object-fit: cover;
    border: 2px solid #000;
}

/* Text Kartları */
.text-card h3 {
    margin-top: 0;
    background: var(--black);
    color: white;
    padding: 5px 10px;
    display: inline-block;
}

.coder-card { background: var(--white) !important; }
.social-card { background: var(--white) !important; }

.skills-tags span {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    margin: 5px 5px 0 0;
    font-size: 0.8rem;
    display: inline-block;
}

/* Footer */
footer {
    margin: 80px 0 40px;
    text-align: center;
}

.footer-card {
    background: white;
    border: var(--border);
    display: inline-block;
    padding: 10px 40px;
    box-shadow: 4px 4px 0px #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .gallery-item { flex: none; width: 100%; }
}