/* ═══════════════════════════════════════════
   home.css — Ana Sayfa
   site.css zaten nav/footer/lang/animations içerir.
   Burada SADECE Home'a özel stiller var.
   ═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: 60px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--gold);
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--navy);
}

.hero-title em {
    font-style: italic;
    color: var(--navy-mid);
}

.hero-motto {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 440px;
    font-weight: 300;
    border-left: 2.5px solid var(--gold);
    padding-left: 1.2rem;
    font-style: italic;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    transition: all 0.2s;
}

.tag:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--navy-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Hero Right (Photo) ── */
.hero-right {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.photo-frame {
    position: relative;
    width: 320px;
    height: 380px;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border: 2px solid var(--gold);
    border-radius: 18px;
    z-index: 0;
}

.photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(15, 34, 72, 0.18);
}

.photo-badge {
    position: absolute;
    z-index: 2;
    bottom: -16px;
    left: -20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.badge-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.badge-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ── Stats Strip ── */
.stats-strip {
    background: var(--navy);
    padding: 40px 5%;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    letter-spacing: -0.03em;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* ── What I Do ── */
.section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15,34,72,0.12);
    border-color: transparent;
}

.card:hover::after { transform: scaleX(1); }

.card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.7rem;
}

.card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ── Notes Preview ── */
.notes-section {
    background: #d9d2c8;
    padding: 100px 5%;
}

.notes-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.note-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    border: 1.5px solid var(--border);
    text-decoration: none;
    display: block;
    transition: all 0.25s;
}

.note-card:hover {
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,34,72,0.1);
}

.note-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.note-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.note-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--navy-light);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.notes-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ── Podcast Strip ── */
.podcast-strip {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.podcast-card {
    background: var(--navy);
    border-radius: 20px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.podcast-card::before {
    content: '🎙';
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.08;
}

.podcast-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.podcast-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.podcast-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    max-width: 460px;
    line-height: 1.7;
    font-weight: 300;
}

.podcast-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.podcast-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.podcast-btn.spotify { background: #1DB954; color: white; }
.podcast-btn.apple { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.2); }
.podcast-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* ── Blog Preview ── */
.blog-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 680px;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(15,34,72,0.1);
    border-color: var(--navy);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.blog-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* ── Contact CTA ── */
.contact-section {
    background: var(--navy);
    padding: 100px 5%;
    text-align: center;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.6rem;
    color: white;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.contact-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.contact-email {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-decoration: none;
    display: block;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}

.contact-email:hover { opacity: 0.8; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Home Responsive ── */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 120px;
        gap: 40px;
        text-align: center;
    }
    .hero-motto { margin: 0 auto; }
    .hero-eyebrow { justify-content: center; }
    .hero-tags { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-right { flex: none; width: 100%; }
    .photo-frame { width: 260px; height: 310px; }
    .cards-grid { grid-template-columns: 1fr; }
    .notes-grid { grid-template-columns: 1fr; }
    .podcast-card { flex-direction: column; gap: 1.5rem; padding: 2rem; }
}

/* ── BLOG PREVIEW (HOME) ── */
.blog-featured-card {
    display: flex;
    gap: 2rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1.2rem;
    transition: all 0.25s;
}

    .blog-featured-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(15,34,72,0.1);
        border-color: transparent;
    }

.blog-featured-img {
    width: 200px;
    min-width: 200px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.blog-featured-img-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-align: center;
    line-height: 1.2;
}

.blog-featured-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-featured-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    line-height: 1.3;
}

.blog-featured-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.blog-read-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
}

.blog-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 0;
}

.blog-mini-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.25s;
}

    .blog-mini-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(15,34,72,0.1);
        border-color: transparent;
    }

.blog-mini-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.35;
}

.blog-mini-excerpt {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

@media (max-width: 768px) {
    .blog-featured-card {
        flex-direction: column;
    }

    .blog-featured-img {
        width: 100%;
        min-width: unset;
        height: 120px;
    }

    .blog-mini-grid {
        grid-template-columns: 1fr;
    }
}