@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,400;1,500&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #111;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    /* Cache busting comment */
}

.container {
    width: 90%;
    padding: 0;
    margin: 0 auto;
}

.header {
    margin: 0 auto;
}

/* Hero Section Styles */
.hero-section {
    text-align: center;
    padding: 40px 0;
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.code-icon-container {
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.profile-container {
    margin: 20px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
}


.profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.name-title {
    font-size: 3.5rem;
    margin: 20px 0 10px 0;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, orangered, #fff, orangered, #fff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
    letter-spacing: 2px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.name-part {
    display: inline-block;
    transition: transform 0.3s ease;
}

.name-part.highlight {
    color: orangered;
    text-shadow: 0 0 25px rgba(255, 69, 0, 0.6), 0 0 50px rgba(255, 69, 0, 0.3);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {

    0%,
    100% {
        text-shadow: 0 0 25px rgba(255, 69, 0, 0.6), 0 0 50px rgba(255, 69, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 35px rgba(255, 69, 0, 0.8), 0 0 70px rgba(255, 69, 0, 0.5);
    }
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.job-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.job-title:hover {
    color: orangered;
}

.title-separator {
    font-size: 2rem;
    color: orangered;
    font-weight: bold;
}

.description-text {
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.description-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 10px 0;
    line-height: 1.6;
}

.tech-stack {
    color: orangered !important;
    font-weight: 600;
    font-size: 1rem !important;
    letter-spacing: 1px;
}

.links-section {
    margin-top: 50px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(0, 0, 0, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    margin-top: 3%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    width: 3.5rem;
    color: #fff;
    border-radius: 100%;
    font-size: 3rem;
}

.social-icons:hover {
    color: rgb(255, 69, 0);
}

img {
    border-radius: 50%;
    height: 15%;
    width: 15%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 3px solid rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
}

img:hover {
    border-color: orangered;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.left-img {
    margin-top: 3%;
}

.main-text {
    margin-top: -20px;
}

.main-text a {
    color: #fff;
    text-decoration: none;
}

.main-text a:hover {
    color: orangered;
}

.main-text:hover {
    color: orangered;
}

.down {
    margin-top: -4px;
    font-size: 30px;
}

.down:hover {
    margin-top: -4px;
    font-size: 30px;
    color: rgb(255, 69, 0);
}

.links-link {
    margin-bottom: 20px;
}

.links-link h1 {
    font-size: 2rem;
    margin: 0;
    background: linear-gradient(45deg, #fff, orangered);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.links-link:hover h1 {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 4rem;
    width: 4rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    border: 2px solid rgba(255, 69, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.social .social-icon:hover::before {
    left: 100%;
}

.social .social-icon:hover {
    background: linear-gradient(135deg, orangered, #ff8c42);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    border-color: orangered;
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
}

h1 {
    font-size: 50px;
    margin-bottom: 0px;
}

/* Projeler Bölümü Stilleri */
.projects-section {
    margin-top: 60px;
    padding: 40px 0;
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-header h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 10px;
}

.projects-header h1:hover {
    color: orangered;
    transition: color 0.3s ease;
}

.projects-down {
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.projects-down:hover {
    color: orangered;
    transition: color 0.3s ease;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: orangered;
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.2);
}

.project-logo {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 8px;
}

.logo-container::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.6s ease;
}

.project-card:hover .logo-container::before {
    left: 100%;
}

.logo-container i {
    font-size: 2.5rem;
    color: #fff;
    z-index: 1;
    position: relative;
}

.project-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    z-index: 1;
    position: relative;
}

.project-card:hover .logo-container {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.4);
}

.project-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-card p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-link {
    display: inline-block;
    background: orangered;
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid orangered;
}

.project-link:hover {
    background: transparent;
    color: orangered;
    transform: scale(1.05);
}

.project-note {
    display: inline-block;
    background: linear-gradient(135deg, orangered, #ff8c42);
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 10px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-link-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Teknolojiler Bölümü */
.technologies-section {
    margin: 80px 0;
    padding: 0 20px;
}

.technologies-header {
    text-align: center;
    margin-bottom: 50px;
}

.technologies-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, orangered, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.technologies-down {
    font-size: 1.5rem;
    color: orangered;
    animation: bounce 2s infinite;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    border-color: orangered;
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.2);
}

.tech-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: orangered;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.tech-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
    background: rgba(255, 69, 0, 0.1);
    border-color: orangered;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

/* Linkli tech-item'lar için özel stil */
a.tech-item {
    text-decoration: none;
    color: inherit;
}

a.tech-item:visited {
    color: inherit;
}

a.tech-item:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.tech-item i {
    font-size: 2.5rem;
    color: orangered;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
    color: #fff;
}

.tech-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hakkımda Bölümü */
.about-section {
    margin: 80px 0;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, orangered, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.about-down {
    font-size: 1.5rem;
    color: orangered;
    animation: bounce 2s infinite;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(0, 0, 0, 0.1));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .project-card {
        padding: 25px;
    }

    .projects-header h1 {
        font-size: 35px;
    }

    .project-icon {
        font-size: 2.5rem;
    }

    .project-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .name-title {
        font-size: 2.5rem;
    }

    .title-container {
        flex-direction: column;
        gap: 10px;
    }

    .job-title {
        font-size: 1.3rem;
    }

    .description-text p {
        font-size: 1rem;
    }

    .tech-stack {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 533px) {
    .hero-section {
        min-height: 100vh;
        padding: 20px 0;
    }

    img {
        border-radius: 50%;
        height: 35%;
        width: 35%;
        object-fit: cover;
    }

    .name-title {
        font-size: 1.8rem;
        margin: 15px 0;
    }

    .name-part {
        display: block;
        margin: 3px 0;
    }

    .title-container {
        flex-direction: column;
        gap: 5px;
        margin: 20px 0;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .title-separator {
        display: none;
    }

    .description-text {
        margin: 15px 0;
        padding: 0 15px;
    }

    .description-text p {
        font-size: 0.9rem;
        margin: 8px 0;
    }

    .tech-stack {
        font-size: 0.8rem !important;
    }

    h1 {
        margin-top: 20px;
        font-size: 28px;
        margin-bottom: 0px;
    }

    .social {
        gap: 12px;
    }

    .social .social-icon {
        height: 3rem;
        width: 3rem;
        font-size: 1.3rem;
    }

    .links-section {
        padding: 15px 12px;
        margin: 25px 10px;
    }

    .down {
        font-size: 22px;
    }

    .down:hover {
        font-size: 22px;
    }

    .links-link h1 {
        font-size: 1.3rem;
    }

    .projects-header h1 {
        font-size: 28px;
    }

    .project-card {
        padding: 18px;
    }

    .logo-container {
        width: 65px;
        height: 65px;
        padding: 5px;
    }

    .logo-container i {
        font-size: 1.8rem;
    }

    .project-logo-img {
        border-radius: 10px;
    }

    .project-card h3 {
        font-size: 1.1rem;
    }

    .project-card p {
        font-size: 0.85rem;
    }

    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tech-category {
        padding: 18px;
    }

    .tech-items {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 12px;
    }

    .tech-item {
        padding: 12px 8px;
    }

    .tech-item i {
        font-size: 1.8rem;
    }

    .tech-item span {
        font-size: 0.75rem;
    }

    .about-content {
        padding: 20px;
    }

    .about-content p {
        font-size: 0.85rem;
    }

}