/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --background-color: #000000;
    --accent-color: #666666;
    --highlight-color: #f0f0f0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Bölüm Stilleri */
section {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header ve Navigasyon */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--highlight-color);
}

/* Yan Menü */
.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dots {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-dot i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.nav-dot::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-dot:hover::before {
    opacity: 1;
    visibility: visible;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--highlight-color);
    color: var(--background-color);
    transform: scale(1.1);
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    padding-top: 80px; /* Header yüksekliği kadar padding */
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 4rem;
}

.name-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.profile-image {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-left: 4rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--highlight-color);
    line-height: 1.4;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary-color);
    opacity: 0.9;
}

/* Experience Bölümü */
.experience {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    padding: 0;
}

.experience .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 4rem;
}

.mega-title {
    font-size: 5rem !important;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 4rem;
    line-height: 1.2;
    text-align: left !important;
    padding-left: 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 100%;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0; /* Taşmayı önlemek için */
}

.experience-number {
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--highlight-color);
    opacity: 0.3;
    z-index: 1;
}

.experience-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.experience-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.experience-card:hover .image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    color: var(--highlight-color);
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--highlight-color);
    margin-top: auto;
}

.experience-card p {
    font-size: 1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Background Bölümü */
.background {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.background .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 4rem;
}

.background-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.background-text {
    flex: 0 0 60%;
    padding-right: 2rem;
}

.background-text .section-title {
    text-align: left;
    font-size: 4rem;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.quote-container {
    text-align: left;
    max-width: none;
    padding: 0;
}

.quote-container blockquote {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    font-style: italic;
    color: var(--highlight-color);
    opacity: 0.9;
}

.background-image {
    flex: 0 0 40%;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.background-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.background-image .image-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--highlight-color);
}

/* Skills Bölümü */
.skills {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    padding-top: 4rem;
}

.skills .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 4rem;
}

.skills .mega-title {
    font-size: 5rem !important;
    margin-bottom: 6rem;
    text-align: left !important;
}

.skills-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    width: 100%;
}

.skills-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.skills-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.skills-group:hover::before {
    transform: translateX(100%);
}

.skills-group h3 {
    color: var(--highlight-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.skills-group h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

.skills-group:hover h3::after {
    width: 100px;
}

.skills-list {
    list-style: none;
}

.skills-list li {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
    transition: var(--transition);
}

.skills-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.skills-list li:hover {
    padding-left: 2rem;
    opacity: 1;
}

.skills-list li:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.skills-list ul {
    list-style: none;
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.skills-list ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.skills-list ul li::before {
    content: '•';
}

/* Skills Responsive */
@media (max-width: 1200px) {
    .skills .container {
        padding: 0 2rem;
    }

    .skills .mega-title {
        font-size: 4rem !important;
        text-align: center !important;
        margin-bottom: 4rem;
    }

    .skills-content {
        gap: 2rem;
    }

    .skills-group {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .skills-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-content {
        grid-template-columns: 1fr;
    }

    .skills .mega-title {
        font-size: 3rem !important;
    }

    .skills-group h3 {
        font-size: 1.5rem;
    }
}

/* Contact Bölümü */
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.contact .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 4rem;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    width: 100%;
}

.contact-left {
    flex: 0 0 40%;
    padding-right: 2rem;
}

.contact-left .mega-title {
    font-size: 8rem !important;
    padding-left: 0;
    text-align: left !important;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--highlight-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--highlight-color);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-right {
    flex: 0 0 60%;
}

.contact-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.contact-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.contact-image .image-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--highlight-color);
}

/* Contact Responsive */
@media (max-width: 1200px) {
    .contact .container {
        padding: 0 2rem;
    }

    .contact-left .mega-title {
        font-size: 4rem !important;
    }

    .contact-item {
        font-size: 1.2rem;
    }

    .contact-item i {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .contact-left {
        flex: 0 0 100%;
        padding-right: 0;
        text-align: center;
    }

    .contact-left .mega-title {
        text-align: center !important;
    }

    .contact-content {
        align-items: center;
    }

    .contact-right {
        flex: 0 0 100%;
        max-width: 800px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-left .mega-title {
        font-size: 3rem !important;
        margin-bottom: 3rem;
    }

    .contact-item {
        font-size: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--highlight-color);
}

/* Experience Responsive */
@media (max-width: 1400px) {
    .experience .container {
        padding: 0 2rem;
    }
}

@media (max-width: 1200px) {
    .mega-title {
        font-size: 4rem !important;
        text-align: center !important;
        padding-left: 0;
    }

    .experience-grid {
        gap: 3rem;
    }

    .experience-number {
        font-size: 3rem;
        top: -1.5rem;
    }

    .background .container {
        padding: 0 2rem;
    }

    .background-text .section-title {
        font-size: 3rem;
    }

    .quote-container blockquote {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .background-content {
        flex-direction: column;
        gap: 3rem;
    }

    .background-text,
    .background-image {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
    }

    .background-text .section-title {
        text-align: center;
    }

    .quote-container {
        text-align: center;
    }

    .background-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 3rem !important;
        margin-bottom: 3rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .experience-card {
        max-width: 100%;
        padding: 2rem;
    }

    .experience-number {
        font-size: 2.5rem;
        top: -1.2rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
        justify-content: center;
    }

    .hero-left {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .name-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .profile-image {
        max-width: 250px;
    }

    .hero-content {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .side-nav {
        right: 0.5rem;
    }

    .nav-dot {
        width: 30px;
        height: 30px;
    }

    .nav-dot::before {
        display: none;
    }

    .name-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .profile-image {
        max-width: 200px;
    }
}
.full-width{
    width: 100%;
    height: 100%;
    object-fit: cover;
}