
:root {
    --bg-color: #fff0f5; /* Açık pembe arka plan */
    --text-color: #4a4a4a; /* Koyu gri (yumuşak) */
    --primary-color: #ffb6c1; /* Hafif pembe */
    --accent-color: #e6e6fa; /* Lavanta */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.7;
    font-weight: 300;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: #333;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Navigasyon Stilleri --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--primary-color);
}

/* --- Giriş Stilleri --- */
header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #fffaf0 0%, #fff 100%);
    padding: 0 20px;
    margin-top: 80px; 
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-style: italic;
}

.highlight {
    color: var(--primary-color);
    
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: #666;
}

.coquette-quote {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
}

.coquette-quote i {
    color: var(--primary-color);
    margin-left: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255,182,193,0.4);
}

.btn:hover {
    background-color: #ff99aa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,182,193,0.5);
}

/* --- Hakkımda Stilleri --- */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-skills h3 {
    margin-bottom: 20px;
}

.about-skills li {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    border-left: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.about-skills i {
    color: var(--primary-color);
}

/* --- Projeler Stilleri --- */
.ribbon-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 10px;
    vertical-align: middle;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.project-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

.project-card h3 {
    margin-bottom: 10px;
}

.project-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: auto; 
}

.tags {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags span {
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
}

.project-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.project-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.coming-soon {
    border: 2px dashed #e0e0e0;
    background-color: #fafafa;
    color: #aaa;
}

/* --- İletişim Stilleri --- */
#contact {
    text-align: center;
}

.contact-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--primary-color);
}

.contact-item:hover i {
    color: #fff;
}

/* --- Footer Stilleri --- */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    font-size: 0.8rem;
    color: #888;
}

.coquette-heart {
    color: var(--primary-color);
    margin-left: 5px;
}

/* --- Mobil Uyumu --- */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    nav a {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


.social-dropdown {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.social-links {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 2px dashed var(--primary-color); 
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(255,182,193,0.3);
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
    z-index: 10;
    margin-top: 15px;
    text-align: left;
}

.social-links a {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 8px;
}

.social-links a:hover {
    color: var(--primary-color);
    background-color: var(--accent-color);
}
    
}
