/*
Theme Name: dabdab.tr Core
Version: 1.1.0
Author: Eser Muti Art Concept
Description: Google Style Footer & Ultra-Minimalist Right Sidebar Menu.
*/

:root {
    --bg-color: #ffffff;
    --text-color: #202124;
    --google-gray: #f8f9fa; /* Google About Footer Rengi */
    --accent-blue: #4285f4;
    --border-color: #dadce0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Header & Hamburger */
.dabdab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4%;
    position: fixed;
    width: 92%;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo a {
    font-weight: 600;
    font-size: 22px;
    text-decoration: none;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

/* Hamburger İkonu */
#menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: block; /* Her zaman görünür */
}

.hamburger-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: 0.3s ease;
}

/* Sağdan Sola Açılan Menü (Masaüstü & Mobil Ortak) */
.nav-sidebar {
    position: fixed;
    right: -100%; /* Başlangıçta ekranın dışında */
    top: 0;
    width: 350px; /* Masaüstü genişliği */
    max-width: 85%; /* Mobil uyumu için */
    height: 100vh;
    background: #ffffff;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 2000;
}

.nav-sidebar.active {
    right: 0;
}

/* Kapatma Çarpısı (X) */
.close-menu {
    text-align: right;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 30px;
    color: var(--text-color);
}

.nav-sidebar ul { list-style: none; padding: 0; }
.nav-sidebar ul li { margin-bottom: 20px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.nav-sidebar ul li a { color: var(--text-color); text-decoration: none; font-size: 18px; font-weight: 500; }

/* Hero / İçerik Alanı */
.content-area {
    padding: 120px 5% 60px;
    min-height: 60vh;
}

/* Google Style Footer (Beyaz/Gri Konsept) */
.google-footer {
    background: var(--google-gray);
    color: #5f6368;
    padding: 40px 5%;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h4 { color: #3c4043; margin-bottom: 15px; font-weight: 500; }
.footer-grid p { margin: 8px 0; cursor: pointer; }
.footer-grid p:hover { color: var(--accent-blue); }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}