.blog-slider-section {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    max-width: 750px;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.07);
}

.blog-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.blog-slider {
    position: relative;
    overflow: hidden;
    min-height: 100px;
    flex: 1;
}

.blog-slide {
    display: none;
    padding: 1rem;
    border-radius: 10px;
    background: #f4f6fb;
    box-shadow: 0 1px 6px rgba(44,62,80,0.05);
    transition: all 0.3s;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    align-items: start;
}

    .blog-slide.active {
        display: grid;
    }

.blog-thumb {
    width: 100%;
    height: 200px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(44,62,80,0.10);
    object-fit: cover;
    background-color: #f4f6fb;
    grid-column: 1;
    grid-row: 1 / span 3;
}

.blog-slide h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    grid-column: 2;
    grid-row: 1;
}

    .blog-slide h3 a,
    .blog-slide h3 a:visited {
        color: #ffa787 !important;
        text-decoration: none !important;
        font-weight: bold;
        font-size: 1.15rem;
        transition: color 0.2s;
        outline: none;
    }

        .blog-slide h3 a:hover,
        .blog-slide h3 a:focus {
            color: #ff5303 !important;
            text-decoration: underline !important;
        }

.blog-content {
    grid-column: 2;
    grid-row: 2;
}

    .blog-content p {
        margin: 0 0 0.5rem 0;
    }

    .blog-content small {
        color: #666;
    }

@media (max-width: 600px) {
    .blog-slide {
        display: none;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

        .blog-slide.active {
            display: block;
        }

        .blog-thumb,
        .blog-slide h3,
        .blog-content {
            width: 100%;
            display: block;
            margin: 0 auto 1rem auto;
            grid-column: 1;
        }

        .blog-slide h3 {
            margin-bottom: 1rem;
        }

    .blog-thumb {
        margin-bottom: 1rem;
        height: 200px;
        object-fit: cover;
        background-color: #f4f6fb;
    }

    .blog-content {
        margin-bottom: 0;
    }
}

.blog-content {
    grid-column: 2;
}

    .blog-content p {
        margin: 0 0 0.5rem 0;
    }

    .blog-content small {
        color: #666;
    }

.blog-slider-arrow {
    background: #ffa787;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    box-shadow: 0 1px 6px rgba(44,62,80,0.08);
}

    .blog-slider-arrow:hover {
        background: #ff5303;
    }

@media (max-width: 600px) {
    .blog-slider-section {
        padding: 1rem 0.5rem;
    }

    .blog-slider-wrapper {
        gap: 0.3rem;
    }

    .blog-slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .blog-slide {
        display: none;
        padding: 1rem;
        border-radius: 10px;
        background: #f4f6fb;
        box-shadow: 0 1px 6px rgba(44,62,80,0.05);
        transition: all 0.3s;
    }

        .blog-slide.active {
            display: block;
        }

        .blog-slide h3,
        .blog-thumb,
        .blog-content {
            width: 100%;
            display: block;
            margin: 0 auto 1rem auto;
        }

        .blog-slide h3 {
            margin-bottom: 1rem;
        }

    .blog-thumb {
        margin-bottom: 1rem;
        height: 200px;
        object-fit: cover;
        background-color: #f4f6fb;
    }

    .blog-content {
        margin-bottom: 0;
    }
}

.blog-thumb {
    width: 100%;
    height: 200px;
    display: block;
    margin: 0 auto 1rem auto;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(44,62,80,0.10);
    object-fit: cover;
    background-color: #f4f6fb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6fb;
    color: #222;
}

header {
    background: linear-gradient(90deg, #ff5303 60%, #ffa787 100%);
    color: #fff;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    header p {
        font-size: 1.2rem;
        font-weight: 300;
        margin-top: 0;
    }

section {
    background: #fff;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    max-width: 750px;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.07);
    transition: box-shadow 0.2s;
}

    section:hover {
        box-shadow: 0 4px 32px rgba(44,62,80,0.13);
    }

h2 {
    color: #ffa787;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.skills-list {
    margin: 0.5rem 0 1.5rem 0;
}

.badge {
    display: inline-block;
    background: #ffa787;
    color: #fff;
    border-radius: 12px;
    padding: 0.3em 0.9em;
    font-size: 0.95em;
    margin: 0.15em 0.25em 0.15em 0;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background 0.2s;
}

    .badge:hover {
        background: #ff5303;
    }

form {
    margin-top: 1.5rem;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 0.7em;
    margin: 0.5em 0 1em 0;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1em;
    background: #f8fafc;
    transition: border 0.2s;
}

    input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
        border: 1.5px solid #ffa787;
        outline: none;
    }

button[type="submit"] {
    background: #ffa787;
    color: #fff;
    border: none;
    padding: 0.7em 2em;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

    button[type="submit"]:hover {
        background: #ff5303;
    }

/* Modern Footer */
footer {
    background: linear-gradient(90deg, #ff5303 60%, #ffa787 100%);
    color: #fff;
    padding: 1.2rem 0 1.2rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    box-shadow: 0 -2px 8px rgba(44,62,80,0.08);
}

.footer-content {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .footer-content a {
        margin: 0 0.5em;
        display: inline-block;
        vertical-align: middle;
        opacity: 0.85;
        transition: opacity 0.2s;
    }

        .footer-content a:hover {
            opacity: 1;
        }

.footer-left, .footer-center, .footer-right {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.footer-center {
    flex: 1;
    justify-content: center;
}

@media (max-width: 800px) {
    section, .footer-content {
        padding: 1.2rem;
        max-width: 98vw;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.7em;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .blog-slide {
        display: none !important; /* Diğer slaytlar gizli kalsın */
    }

        .blog-slide.active {
            display: flex !important;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

    .blog-thumb {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .blog-slide h3 {
        margin-bottom: 0.5rem;
    }

    .blog-slide p {
        margin-bottom: 0.5rem;
    }

    .blog-slide small {
        display: block;
        color: #888;
    }
}
