/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
    /* Ana renkler */
    --primary-color: #FFD700;        /* Altın sarısı */
    --primary-color-alt: #FFC800;    /* Koyu altın sarısı */
    --primary-color-lighter: #FFF7D6; /* Açık altın sarısı */
    
    /* Nötr renkler */
    --title-color: #FFFFFF;          /* Beyaz başlıklar */
    --text-color: #E0E0E0;           /* Açık gri yazılar */
    --text-color-light: #AAAAAA;     /* Orta gri yazılar */
    --body-color: #121212;           /* Koyu siyah arkaplan */
    --container-color: #1E1E1E;      /* Biraz daha açık siyah */
    --border-color: #333333;         /* Koyu gri border */
    
    /* Özel renkler */
    --accent-color: #000000;         /* Siyah (altın butonlar için) */
    --error-color: #FF3B30;          /* Kırmızı */
    --success-color: #28A745;        /* Yeşil */
    --shadow-color: rgba(0, 0, 0, 0.3);

    /* Font ailelerini tanımla */
    --title-font: 'Playfair Display', serif;
    --body-font: 'Nunito', sans-serif;

    /* z-index değerleri */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* HEADER */
.header {
    width: 100%;
    background-color: var(--container-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: var(--z-fixed);
    border-bottom: 1px solid var(--border-color);
    padding-top: 0.5rem;
}

/* Masaüstü menü stilleri */
@media screen and (min-width: 769px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .nav_overlay,
    .blur-bg {
        display: none;
    }

    .nav_list {
        display: flex;
        gap: 2rem;
    }
}

/* Mobil menü stilleri */
@media screen and (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--container-color);
        z-index: var(--z-fixed);
        padding-top: 0;
    }

    .nav {
        height: 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .nav_menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: 100vh;
        padding: 2rem;
        background-color: var(--container-color);
        transition: 0.4s ease-in-out;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        z-index: var(--z-fixed);
    }

    .nav_menu.show-menu {
        right: 0;
    }

    .nav_list {
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .nav_link {
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .nav_toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        cursor: pointer;
        color: var(--text-color);
        background: transparent;
        border: none;
        border-radius: 50%;
    }

    .nav_overlay {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        z-index: calc(var(--z-fixed) - 1);
    }

    .nav_overlay.show {
        visibility: visible;
        opacity: 1;
    }

    .blur-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        z-index: calc(var(--z-fixed) - 2);
    }

    .blur-bg.show {
        visibility: visible;
        opacity: 1;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav_logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 1rem 0;
    }

    #about.hero {
        padding-top: 0.5rem;
    }
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.nav_logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--title-color);
}

.nav_items {
    display: flex;
    gap: 2rem;
}

.nav_link {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav_link:hover {
    color: var(--primary-color);
}

.nav_close {
    position: absolute;
    right: 1.3rem;
    bottom: .5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.nav_close:hover {
    color: var(--primary-color);
}

/* Giriş/Çıkış butonu stilleri */
.nav_auth_btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav_auth_btn i {
    font-size: 1rem;
}

.nav_auth_btn:hover {
    background: var(--primary-color-alt);
    transform: translateY(-2px);
}

/* Mobil görünüm için */
@media screen and (max-width: 768px) {
    .nav_auth_btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        background: var(--primary-color);
        color: var(--accent-color);
    }

    .nav_auth_btn i {
        font-size: 0.9rem;
    }

    /* Menü açıkken butonun görünümü */
    .nav_menu.show-menu ~ .nav_right .nav_auth_btn {
        color: var(--accent-color);
    }
}

/* Ana sayfa butonu stilleri */
.nav_home_btn {
    display: none;
}

/* Mobil görünüm için */
@media screen and (max-width: 768px) {
    .nav_home_btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
        border-radius: 2rem;
        background: var(--container-color);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-size: 0.8rem;
        font-weight: 500;
    }

    .nav_home_btn i {
        font-size: 0.9rem;
    }

    .nav_home_btn:hover {
        background: var(--primary-color);
        color: var(--accent-color);
        transform: translateY(-2px);
    }
}

/* Auth sayfaları için stiller */
.auth-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-box {
    background: var(--container-color);
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-color);
    padding: 40px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.auth-box:hover {
    transform: translateY(-5px);
}

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

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.auth-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.input-group {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--container-color);
    display: flex;
    align-items: center;
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: var(--text-color);
    padding-right: 48px;
}

.input-group input:focus {
    outline: none;
}

.input-group .fas.fa-envelope,
.input-group .fas.fa-lock,
.input-group .fas.fa-user,
.input-group .fas.fa-at {
    position: absolute;
    left: 16px;
    color: var(--text-secondary);
    font-size: 20px;
}

.toggle-password {
    position: absolute;
    right: 16px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 20px;
    padding: 4px;
    z-index: 2;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.forgot-link:hover {
    color: var(--primary-color-alt);
}

.auth-button {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--accent-color);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background: var(--primary-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.auth-separator {
    text-align: center;
    position: relative;
    margin: 24px 0;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: var(--border-color);
}

.auth-separator::before {
    left: 0;
}

.auth-separator::after {
    right: 0;
}

.auth-separator span {
    background: var(--container-color);
    padding: 0 16px;
    color: var(--text-color-light);
    font-size: 14px;
}

.social-login {
    margin-bottom: 24px;
}

.social-button {
    width: 100%;
    padding: 16px;
    background: var(--container-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-button:hover {
    border-color: var(--primary-color);
    background: var(--primary-color-lighter);
}

.social-button i {
    font-size: 20px;
}

.auth-footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.auth-footer a:hover {
    color: var(--primary-color-alt);
}

.alert {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background: rgba(255, 59, 48, 0.15);
    border-left: 4px solid var(--error-color);
    color: var(--error-color);
}

.alert i {
    font-size: 20px;
}

/* Dosya yükleme alanı */
.file-input {
    position: relative;
}

.file-input input[type="file"] {
    display: none;
}

.file-input label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--container-color);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.file-input label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.file-input i {
    font-size: 20px;
}

/* Responsive tasarım */
@media (max-width: 480px) {
    .auth-box {
        padding: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

/* BASE */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.nav_logo {
    font-family: var(--title-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* REUSABLE CSS CLASSES */
.section {
    padding: 2rem 0 4rem;
}

.section-title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: var(--mb-3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/* Masaüstü menü stilleri */
@media screen and (min-width: 769px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .nav_overlay,
    .blur-bg {
        display: none;
    }

    .nav_list {
        display: flex;
        gap: 2rem;
    }
}

/* Mobil menü stilleri */
@media screen and (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--container-color);
        z-index: var(--z-fixed);
    }

    .nav {
        height: 3rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .nav_menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: 100vh;
        padding: 2rem;
        background-color: var(--container-color);
        transition: 0.4s ease-in-out;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        z-index: var(--z-fixed);
    }

    .nav_menu.show-menu {
        right: 0;
    }

    .nav_list {
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .nav_link {
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .nav_toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        cursor: pointer;
        color: var(--text-color);
        background: transparent;
        border: none;
        border-radius: 50%;
    }

    .nav_overlay {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        z-index: calc(var(--z-fixed) - 1);
    }

    .nav_overlay.show {
        visibility: visible;
        opacity: 1;
    }

    .blur-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
        z-index: calc(var(--z-fixed) - 2);
    }

    .blur-bg.show {
        visibility: visible;
        opacity: 1;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav_logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 1rem 0;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        padding: 0;
        margin-bottom: 2rem !important;
    }

    .nav_auth_btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        background: var(--primary-color);
        color: var(--accent-color);
    }

    .nav_home_btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
        border-radius: 2rem;
        background: var(--container-color);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-size: 0.8rem;
        font-weight: 500;
    }

    #about.hero {
        padding-top: 0.5rem;
    }
}

/* HERO SECTION */
.hero {
    padding: 8rem 0 2rem;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--body-color) 0%, rgba(18, 18, 18, 0.95) 100%);
}

#about.hero {
    padding-top: 8rem;
}

.hero-container {
    width: 100%;
    position: relative;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    justify-content: center;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-social {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.hero-social-link {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.hero-social-link:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.hero-greeting {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-alt));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin: 0.5rem 0;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
    text-decoration: none;
}

.button-primary, .button-outline {
    background: var(--primary-color);
    color: var(--accent-color);
}

.button-primary:hover, .button-outline:hover {
    background: var(--primary-color-alt);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hero-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.hero-img-wrapper:hover img {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: scale(1.05);
}

.hero-experience {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
}

.hero-experience-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-experience-text {
    font-size: 0.875rem;
    color: var(--text-color);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-info {
        align-items: center;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-img-wrapper {
        width: 300px;
        height: 300px;
    }

    .hero-experience {
        right: 0;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-img {
        order: -1;
    }

    .hero-img-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-info {
        text-align: center;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto;
    }

    .hero-experience {
        right: 0;
    }

    .header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
    }

    .main {
        padding-top: var(--header-height);
    }

    .hero {
        padding: 1rem 0;
    }

    #about.hero {
        padding-top: 0.5rem;
    }
}

@media screen and (max-width: 576px) {
    .hero-img-wrapper {
        width: 250px;
        height: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Skills Section Styles */
.skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skills-box {
    background: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.skills-box:hover {
    transform: translateY(-5px);
}

.skills-box-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.skills-box-title i {
    font-size: 1.5rem;
}

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

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.skill-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .skills-box {
        padding: 1.5rem;
    }
}

/* CONTACT */
.contact {
    padding: 4rem 5%;
}

.contact-container {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form {
    background: var(--container-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.contact-content {
    margin-bottom: 2rem;
}

.contact-label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-input {
    width: 100%;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.contact-input::placeholder {
    color: var(--text-color-light);
}

textarea.contact-input {
    resize: vertical;
    min-height: 150px;
}

.button.button-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    background: var(--primary-color);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.button.button-primary:hover {
    background: var(--primary-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.button.button-primary i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
}

/* MEDIA QUERIES */
/* For small devices */
@media screen and (max-width: 350px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .nav_menu {
        padding: 2rem .25rem 4rem;
    }

    .nav_list {
        column-gap: 0;
    }

    .hero-content {
        grid-template-columns: .25fr 3fr;
    }

    .hero-blob {
        width: 180px;
    }
}

/* For medium devices */
@media screen and (min-width: 568px) {
    .hero-content {
        grid-template-columns: max-content 1fr 1fr;
    }

    .hero-data {
        grid-column: initial;
    }

    .hero-img {
        order: 1;
        justify-self: center;
    }

    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    body {
        margin: 0;
    }

    .section {
        padding: 6rem 0 2rem;
    }

    .header {
        top: 0;
        bottom: initial;
    }

    .header,
    .main {
        padding: 0 1rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
        column-gap: 1rem;
    }

    .nav_icon,
    .nav_close,
    .nav_toggle {
        display: none;
    }

    .nav_list {
        display: flex;
        column-gap: 2rem;
    }

    .nav_menu {
        margin-left: auto;
    }
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .header,
    .main {
        padding: 0;
    }

    .hero-blob {
        width: 320px;
    }

    .contact-form {
        width: 460px;
    }

    .contact-inputs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
    }

    .nav_items {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.25rem;
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }
}

/* Modal ile ilgili CSS kurallarını kaldır */
.modal, .form-container {
    display: none;
}

/* Profil sayfası için özel stiller */
.profile-image {
    border: 4px solid var(--primary-color);
}

.profile-image-edit {
    background: var(--primary-color);
    color: var(--accent-color);
}

.profile-image-edit:hover {
    background: var(--primary-color-alt);
}

/* Memory card stilleri */
.memory-card {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.memory-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
}

/* Anı paylaş butonu için özel stil */
.button.button-primary {
    background-color: #FF3B30; /* Kırmızı arka plan */
    color: #FFFFFF; /* Beyaz yazı */
    border: none;
    transition: all 0.3s ease;
}

.button.button-primary:hover {
    background-color: #FF2419; /* Daha koyu kırmızı */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

/* Dosya yükleme butonları için özel stil */
.file-input label {
    color: #FF3B30 !important; /* Kırmızı yazı */
    border-color: #FF3B30; /* Kırmızı border */
}

.file-input label:hover {
    background: rgba(255, 59, 48, 0.1); /* Hafif kırmızı hover efekti */
    border-color: #FF2419;
}

.file-input i {
    color: #FF3B30; /* İkonları kırmızı yap */
}

/* Buton içindeki ikonlar için stil */
.button.button-primary i {
    color: #FFFFFF; /* İkon rengini beyaz yap */
}

/* Memory form container başlığı için stil */
.memory-form-container .section-title {
    color: #FF3B30; /* Başlığı kırmızı yap */
}

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

.nav_login,
.nav_logout {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.25rem;
    padding: 0.4rem;
    transition: color 0.3s ease;
}

.nav_login:hover,
.nav_logout:hover {
    color: var(--primary-color);
}

/* Başlıklar için özel stiller */
.section-title {
    font-family: var(--title-font);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Form başlıkları */
.auth-header h1 {
    font-family: var(--title-font);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Anı kartları başlıkları */
.memory-info strong {
    font-family: var(--title-font);
    font-weight: 600;
}

/* Footer stilleri */
.footer {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
    background-color: var(--container-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-text {
    color: var(--text-color);
    font-size: var(--small-font-size);
    margin: 0;
}

.footer-links {
    margin-top: 0.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: var(--small-font-size);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Main içeriği esnek yap */
.main {
    flex: 1 0 auto;
    width: 100%;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-text, .footer-links a {
        font-size: calc(var(--small-font-size) - 1px);
    }
}

/* Anı medya stilleri */
.memory-media {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
}

.memory-photo {
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.memory-video {
    max-height: 300px;
    background: var(--container-color);
}

.memory-video-container {
    width: 100%;
    max-width: 500px;
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobil görünüm için medya boyutları */
@media screen and (max-width: 768px) {
    .memory-media {
        max-width: 100%;
    }

    .memory-photo {
        max-height: 250px;
    }

    .memory-video {
        max-height: 250px;
    }

    .memory-video-container {
        max-width: 100%;
    }
} 