/* =======================================================
   KAYSERİ TAKSİ & BLOG - PHOTO MAGAZINE CONCEPT (2026)
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-light: #f8fafc;
    --card-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --brand-yellow: #facc15;
    --brand-yellow-hover: #eab308;
    --whatsapp-green: #25d366;
    --border-color: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding-bottom: 90px;
}

/* HEADER */
.site-header {
    background: var(--card-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
}

.logo span {
    background: var(--brand-yellow);
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: 4px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* HD PHOTO SLIDER */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 28px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide-item {
    min-width: 100%;
    height: 340px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
}

/* Fotoğraf üzeri karartma (Text okunabilirliği için) */
.slide-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.slide-tag {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.slide-desc {
    font-size: 0.88rem;
    color: #e2e8f0;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.slider-nav {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    gap: 6px;
    background: rgba(0,0,0,0.4);
    padding: 6px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--brand-yellow);
    width: 18px;
    border-radius: 10px;
}

/* BLOG GRID & FOTOĞRAFLI KARTLAR */
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 24px 0 16px 0;
    color: var(--text-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.blog-card {
    background: var(--card-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.blog-card-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.blog-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.blog-card .tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* MAP SECTION */
.map-card {
    background: var(--card-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-top: 32px;
}

.map-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FIXED BOTTOM BAR */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.bar-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.btn-bar-call {
    flex: 1;
    background: var(--brand-yellow);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-bar-wa {
    flex: 1;
    background: var(--whatsapp-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

footer {
    text-align: center;
    padding: 30px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
}