/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fff;
    --bg-color: #0a0a0a;
    --text-color: #f5f5f5;
    --text-secondary: #a1a1aa;
    --border-color: #2d2d2d;
    --link-hover: #3b82f6;
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --gradient: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.2;
    filter: brightness(0.8) contrast(1.2);
    transition: opacity 0.5s ease, filter 0.5s ease;
    background-color: #000000;
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Stilleri */
.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.2);
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.08);
    opacity: 0.95;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4a90e2;
}

.nav-links a i {
    font-size: 1.2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.3px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 1.1em;
    transition: transform 0.2s ease;
    color: #f0f0f0;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.nav-link:hover i {
    transform: translateY(-1px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
}

.nav-link.active i {
    color: #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 1rem 0;
        flex-direction: column;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        padding: 0.8rem 2rem;
        width: 24px;
        text-align: center;
    }
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Page Sections */
.page-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Page Styles */
.about-content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: rgba(25, 30, 35, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #4a90e2;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.subtitle {
    color: #a0aec0;
    font-size: 1.2rem;
}

.main-title {
    color: #fff;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    text-align: center;
    display: block;
    width: 100%;
}

.rgb-animation {
    background: linear-gradient(90deg, 
        #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000,
        #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbSlide 4s linear infinite;
    display: inline-block;
}

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

/* Section Titles */
.sect.main-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.rgb-animation {
    background: linear-gradient(90deg, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbSlide 8s linear infinite;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: rgbSlide 8s linear infinite;
}

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

.section-title {
color: #fff;
font-size: 2rem;
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 50px;
height: 3px;
background: #4a90e2;
border-radius: 3px;
    background: #4a90e2;
    border-radius: 3px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
}

.info-item i {
    font-size: 2rem;
    color: #4a90e2;
    flex-shrink: 0;
}

.info-item h3 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.info-item p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.95rem;
}

/* Skills Section */
.skills-section {
    margin-top: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-card:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-5px);
}

.skill-card i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.skill-card h4 {
    color: #fff;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.skill-card p {
    color: #a0aec0;
    margin: 0.5rem 0 1rem;
    font-size: 0.95rem;
}

.skill-level {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
}

.skill-level-bar {
    height: 100%;
    background: #4a90e2;
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

/* About Text */
.about-text {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
}

.skills h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Projects Section */
.projects-table-container {
    margin-top: 2rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    color: #e0e0e0;
}

.projects-table th,
.projects-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-table th {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
}

.projects-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.project-link {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #6aa8ff;
}

.project-link::after {
    content: '→';
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
}

.project-link:hover::after {
    transform: translateX(3px);
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.about-section,
.projects-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

/* ======================
   About Page
   ====================== */
.simple-list-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.simple-list > li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.simple-list > li:last-child {
    border-bottom: none;
}

.simple-list ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0 0 0;
}

.simple-list ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.simple-list ul li::before {
    content: '•';
    color: #60a5fa;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-list-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .simple-list {
        font-size: 1rem;
    }
}

/* ======================
   Projects Page
   ====================== */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
}

.projects-table th,
.projects-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-table th {
    background: rgba(0, 0, 0, 0.3);
    color: #60a5fa;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.projects-table tbody tr:hover {
    background: rgba(96, 165, 250, 0.05);
}

.projects-table a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.projects-table a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Responsive Table */
@media (max-width: 768px) {
    .projects-table {
        display: block;
    }
    
    .projects-table thead {
        display: none;
    }
    
    .projects-table tbody {
        display: block;
    }
    
    .projects-table tr {
        display: block;
        margin-bottom: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
    
    .projects-table td {
        display: block;
        padding: 0.5rem 0;
        border: none;
    }
    
    .projects-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #60a5fa;
        display: inline-block;
        width: 120px;
    }
    
    .projects-table td:last-child {
        text-align: right;
    }
}

/* ======================
   Projects Page
   ====================== */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-description {
    color: #a0aec0;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    background: rgba(96, 165, 250, 0.1);
    color: #a0aec0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: white;
    color: #1a1a2e;
}

.project-content {
    padding: 1.5rem;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.project-header h2 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

.project-year {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-card p {
    color: #a0aec0;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    background: rgba(96, 165, 250, 0.1);
    color: #60a4fa;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.project-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #3b82f6;
}

.project-link span {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.project-link:hover span {
    transform: translateX(3px);
}

.load-more {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: rgba(96, 165, 250, 0.1);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .profile-card {
        flex-direction: row;
    }
    
    .profile-image {
        width: 300px;
        height: auto;
        flex-shrink: 0;
    }
    
    .profile-info {
        padding: 3rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 767px) {
    .experience {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .exp-item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .exp-number {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    
    .exp-text {
        font-size: 1rem;
    }
    
    .project-card {
        margin-bottom: 1.5rem;
    }
}

.about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.skill-item {
    background: rgba(30, 30, 30, 0.6);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.skill-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.skill-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-item li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.2rem;
}

.skill-item li:before {
    content: "•";
    color: var(--link-hover);
    position: absolute;
    left: 0;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-list a:hover {
    color: var(--link-hover);
}

.contact-list i {
    color: var(--link-hover);
    width: 20px;
    text-align: center;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-card h2 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

.project-year {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-card p {
    color: var(--text-secondary);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tags span {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #3b82f6;
}

.project-link:after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.project-link:hover:after {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content,
    .projects-grid {
        padding: 1.25rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
}

/* Add a subtle animation for section headers */
.about-section h2::before {
    content: '✦';
    margin-right: 0.5rem;
    color: #60a5fa;
}

.about-content {
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text {
    flex: 1;
    color: #e0e0e0;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    width: 300px;
    flex-shrink: 0;
}

.profile-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #e0e0e0;
    transition: all 0.2s ease;
}

.skills-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Announcements Box */
.announcement-box {
    background: rgba(30, 30, 35, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.announcement-title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcement-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.announcement-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.announcement-date {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.announcement-heading {
    color: #4a90e2;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.announcement-box p {
    color: #b0b0b0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Projects Section */
#projelerim {
    background: rgba(10, 10, 15, 0.8);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(25, 25, 30, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.project-info p {
    color: #b0b0b0;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.project-tech {
    display: inline-block;
    background: rgba(74, 144, 226, 0.2);
    color: #6aa8ff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-top: auto;
}

.project-link:hover {
    color: #6aa8ff;
}

.project-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.project-link:hover::after {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 1.5rem auto 0;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 3rem 0;
    }
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.page-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Projects Table */
.projects-table-container {
    background: rgba(30, 30, 35, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow-x: auto;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
    color: #e0e0e0;
}

.projects-table th,
.projects-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-table th {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.projects-table a {
    color: #4a90e2;
    text-decoration: none;
}

.projects-table a:hover {
    text-decoration: underline;
}

/* About Page */
.about-content {
    background: rgba(30, 30, 35, 0.6);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-content h2 {
    color: #4a90e2;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.skills-list,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.skills-list li,
.contact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.contact-list i {
    margin-right: 0.75rem;
    color: #4a90e2;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-container {
        flex-direction: column;
    }
    
    .welcome-right {
        width: 100%;
    }
    
    .projects-table th,
    .projects-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-container {
        padding: 1rem;
    }
    
    .projects-table {
        display: block;
        white-space: nowrap;
    }
    
    .projects-table th,
    .projects-table td {
        min-width: 150px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Nav link active state */
.nav-link.active {
    color: #4a90e2;
}

.nav-link.active i {
    color: #4a90e2;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.main-title {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.subtitle {
    display: block;
    font-size: 1.1rem;
    color: #a0a0a0;
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.7;
    position: relative;
    display: inline-block;
    padding-left: 1rem;
}

.section-title .subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--link-hover);
    border-radius: 2px;
}

/* Welcome Section */
.welcome-section {
    padding: 2rem 0;
}

.welcome-text {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 1.5rem;
    max-width: 600px;
}

/* Centered Content */
.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #fff;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin: 0;
    opacity: 0.9;
}

/* Announcements Section */
.announcements-section {
    padding: 1rem 0;
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.announcement {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.announcement:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.announcement h3 {
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.announcement p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.announcement-date {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* Image Carousel */
.image-carousel {
    margin: 3rem 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.image-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.image-carousel .section-title {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 400px;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-origin: center;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: block;
}

/* Loading state for images */
.carousel-slide img.loading {
    filter: blur(10px) brightness(0.8);
    transform: scale(1.05);
}

.carousel-slide img.loaded {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: blur(0) brightness(1) contrast(1.05);
}

.carousel-slide:hover img {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.1);
}

@keyframes fadeIn {
    from { 
        opacity: 0.7;
        transform: scale(1.05);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev::before,
.carousel-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--link-hover), #4f46e5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: translateY(-3px);
    border-color: var(--link-hover);
}

.carousel-prev:hover::before,
.carousel-next:hover::before {
    opacity: 1;
}

.carousel-prev:active,
.carousel-next:active {
    transform: translateY(-1px);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 0.8rem 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--link-hover);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
    background: transparent;
    border-color: var(--link-hover);
    transform: scale(1.2);
}

.carousel-dot.active::before {
    transform: scale(0.6);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-track {
        height: 300px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 38px;
        height: 38px;
    }
    
    .carousel-dots {
        gap: 0.6rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-section {
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--container-bg);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .theme-toggle {
        margin-left: auto;
    }
}

/* Simple Project List */
.project-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.project-item {
    background: rgba(30, 35, 40, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #4a90e2;
}

.project-item h2 {
    color: #fff;
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.project-year {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: block;
}

.project-item p {
    color: #a0aec0;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.project-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #7fb1f0;
    text-decoration: underline;
}

/* Simple About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-text h2 {
    color: #fff;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.about-text p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.simple-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.simple-list li {
    color: #a0aec0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.simple-list li:before {
    content: '•';
    color: #4a90e2;
    position: absolute;
    left: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-item,
    .about-content {
        padding: 1rem;
    }
    
    .project-item h2,
    .about-text h2 {
        font-size: 1.3rem;
    }
}
