/* Işıltılı Saçlar Blog CSS - Güzellik ve Saç Bakım Tasarımı */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F689A0;
    --text-color: #35383d;
    --bg-color: #fafafa;
    --white: #ffffff;
    --light-gray: #e5e5e5;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Header Bar - Sosyal Medya ve Arama */
.top-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.top-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: var(--bg-color);
    white-space: nowrap;
}

.social-link-with-text {
    gap: 6px;
    padding: 0 10px;
}

.social-link-with-text span {
    font-size: 13px;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-divider {
    width: 1px;
    height: 24px;
    background: var(--light-gray);
}

.search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.search-icon:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

/* Main Header - Logo Section */
.header {
    background: var(--white);
    padding: 40px 30px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-section {
    text-align: center;
    position: relative;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.logo-line {
    flex: 1;
    height: 1px;
    background: var(--light-gray);
    max-width: 200px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo-main {
    font-size: 32px;
    font-weight: 300;
    color: #9e9e9e;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-blog {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-section a {
    text-decoration: none;
}

/* Navigation Menu */
.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(246, 137, 160, 0.05);
}

.nav-link .chevron {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(246, 137, 160, 0.08);
    color: var(--primary-color);
    padding-left: 24px;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-color);
    padding: 40px 20px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-text {
    margin-bottom: 15px;
    color: #757575;
    font-size: 14px;
}

.footer-legal {
    color: #9e9e9e;
    font-size: 12px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-header-content {
        padding: 0 15px;
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .social-links {
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .social-link-with-text span {
        font-size: 12px;
    }
    
    .social-link {
        min-width: 28px;
        height: 28px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .logo-main,
    .logo-blog {
        font-size: 24px;
    }
    
    .logo-line {
        max-width: 100px;
    }
    
    .main-nav {
        gap: 4px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .dropdown-menu {
        min-width: 180px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-main,
    .logo-blog {
        font-size: 20px;
    }
    
    .logo-line {
        max-width: 60px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
}
