/* Genel Stil Ayarları */
body {
    cursor: url('https://example.com/my-custom-cursor.png'), auto;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    background: url('../assets/images/anasayfa.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.hero .btn {
    margin-top: 2rem;
    padding: 0.75rem 2rem;
}

.skills {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.contact {
    padding: 4rem 0;
}



.counter {
    font-size: 2.5rem;
    font-weight: bold;
}

.rounded-circle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-bar {
    transition: width 2s ease-in-out;
}

/* Hover Efektleri */
.navbar-nav .nav-link:hover {
    color: #f8f9fa;
    transition: color 0.3s;
}

.btn:hover {
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease-in-out;
}

.custom-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px 0 30px 0; /* Sağ üst ve sol alt köşeleri yuvarla */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge ekle */
    object-fit: cover;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 1.2rem;
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

a.text-white:hover {
    color: #007bff; /* Hover sırasında renk değişimi */
    transition: color 0.3s ease;
}

.fab:hover {
    color: #007bff; /* Sosyal medya ikonları hover */
    transition: color 0.3s ease;
}

/* Footer Links */
h5.text-uppercase {
    color: #fff; /* Başlık renkleri beyaz */
}

.footer-bottom {
    border-top: 1px solid #444; /* Alt kısımdaki sınır rengi */
}

/* Kayan Animasyonlar */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    footer {
        text-align: center;
    }

    .custom-img {
        max-width: 100%;
        height: auto;
        border-radius: 20px 0 20px 0; /* Daha küçük cihazlar için hafif yuvarlatma */
    }
}



/* Scroll to Top Button Style */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.scroll-to-top i {
    color: white;
    font-size: 1.5rem;
}

/* Progress Border */
.progress-circle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(#007bff 0%, transparent 0%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-circle i {
    position: absolute;
    z-index: 10;
}

/* Show the Scroll to Top button when scrolling down */
.show-scroll {
    opacity: 1;
    visibility: visible;
}

/* Custom Cursor Style */
#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 123, 255, 0.5); /* Yarı saydam mavi */
    border: 2px solid #007bff;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.15s ease-in-out, width 0.2s, height 0.2s, background-color 0.2s;
    z-index: 9999;
}

body {
    cursor: none; /* Varsayılan imleci gizle */
}

/* Hover State */
a:hover #custom-cursor, button:hover #custom-cursor {
    background-color: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 60px;
    border-color: #007bff;
}

