body {
    font-family: 'Raleway', sans-serif;
    background-color: #fff; 
    color: #333;             
    line-height: 1.6;         
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2 {
    font-family: 'Indie Flower', cursive;
}

header, main, footer {
    width: 100%;
    max-width: 900px; 
    padding: 20px;
    box-sizing: border-box; 
    text-align: center; 
    align-items: center;
}
/* ------------------------------------------------------------------------------------------ */
/* --- NAVBAR STİLLERİ --- */
.navbar {
    width: 100%;
    background-color: #222;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100; 
}

.navbar ul {
    display: flex; 
    justify-content: center; 
    list-style-type: none; 
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Indie Flower', cursive; 
    font-size: 2em; 
    padding: 10px 15px;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #cccccc; 
}

.language-switcher {
    margin-top: 15px;
}

.language-switcher button {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'Indie Flower', cursive; 
    transition: background-color 0.3s;
}

.language-switcher button:hover {
    background-color: #555;
}
/* --- NAVBAR STİLLERİ --- */
/* ------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------ */
/* --- ANA SAYFA DÜZENİ --- */
.about-page {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 20px; 
    width: 100%;
    max-width: 1200px; 
    margin: 10px auto; 
    padding: 10px;
    box-sizing: border-box;
}
/* --- SOL SÜTUN: METİN İÇERİKLERİ --- */
.about-text {
    flex: 1; 
    display: flex;
    flex-direction: column; 
    gap: 20px; 
}

.about-text h2 {
    font-family: 'Indie Flower', cursive;
    font-size: 2.5em; 
    margin-bottom: 10px; 
    color: #333;
    border-bottom: 2px solid #f0f0f0; 
    padding-bottom: 10px;
}

#deneyim-listesi, #beceri-listesi {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.deneyim-item, .beceri-item {
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9; 
}

.deneyim-item:last-child, .beceri-item:last-child {
    border-bottom: none; 
}

.deneyim-item h3, .beceri-item h3 {
    font-family: 'Indie Flower', cursive; 
    margin-bottom: 5px;
}

.about-image {
    flex: 1; 
    position: relative; 
    text-align: center; 
}

.about-image img.profile-photo {
    width: 100%;
    max-width: 400px; 
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}

.cv-button {
    position: absolute;
    bottom: 25px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 12px 25px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cv-button:hover {
    background-color: #555;
    transform: translateX(-50%) translateY(-3px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
/* --- ANA SAYFA DÜZENİ --- */
/* ------------------------------------------------------------------------------------------ */
/*giris page  */
body.light-page {
    margin: 0;
    padding: 0;
    overflow: hidden; 
}
.entry-container {
    position: relative; 
    width: 100vw;
    height: 100vh;
}

.gif-background-layer {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; 
    z-index: 1; 
}

.gif-background-layer .gif-link {
    flex: 1; 
    height: 100%;
    transition: transform 0.3s ease;
}

.gif-background-layer .background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.center-image-layer {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 2; 
}

.center-image-layer .center-image {
    max-width: 350px; 
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); 
    display: block;
}
/*giris page  */
/* ------------------------------------------------------------------------------------------ */
.navbar-gif-section {
    position: relative; 
    width: 100%;
    height: 700px;    
}

.navbar-gif-section .full-width-gif {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; 
}

.gif-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.4s ease; 
    pointer-events: none; 
}

.navbar-gif-section:hover .gif-overlay {
    opacity: 1; 
    pointer-events: auto; 
}

.overlay-text {
    color: white;
    font-size: 2.2em; 
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    font-family: 'Indie Flower', cursive; 
    transform: translateY(20px); 
    opacity: 0; 
    transition: transform 0.4s ease, opacity 0.4s ease; 
}

.navbar-gif-section:hover .overlay-text {
    opacity: 1;
    transform: translateY(0); 
}

/* sosyal medya icon */
.social-icons-grid {
    display: flex;          
    justify-content: center;   
    align-items: center;  
    flex-wrap: wrap;           
    gap: 20px;                 
    padding: 20px;
    margin-top: 20px;
}

.social-icons-grid a {
    display: inline-block; 
    transition: transform 0.3s ease;
}


.social-icons-grid img {
    width: 60px;   
    height: 60px; 
    border-radius: 50%; 
    object-fit: cover; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.social-icons-grid a:hover {
    transform: scale(1.15) translateY(-5px); 
}



.iletisim-alt-gorsel {
    display: block; 
    
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px; 


    width: 100%; 
    max-width: 600px; 

}


.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px; 
    padding: 20px 0;
}

.project-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.project-date {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 8px;
    text-align: right;
}

.project-title {
    font-family: 'Indie Flower', cursive; 
    font-size: 2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

.project-description {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
    flex-grow: 1; 
    margin-bottom: 20px;
}

.project-tech-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech-list li {
    background-color: #f0f0f0;
    color: #444;
    font-size: 0.85em;
    padding: 5px 12px;
    border-radius: 20px;
}

.project-link {
    display: inline-block;
    background-color: #222;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: auto; 
}

.project-link:hover {
    background-color: #555;
}

.project-link .fab {
    margin-left: 8px; 
}