/* ─────────────────────────────────────────────────
   Ana Sayfa Bölüm Stilleri (front-page.php)
───────────────────────────────────────────────── */

/* Hero */
.hp-hero { background: var(--ink); position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hp-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.32) saturate(.5); animation: hpBgZoom 22s ease-in-out infinite alternate; }
@keyframes hpBgZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,30,30,.7) 0%, rgba(30,30,30,.2) 60%, transparent 100%); z-index: 2; }
.hp-hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, transparent 8%, var(--gold) 32%, var(--gold-light) 68%, transparent 92%); z-index: 5; }
.hp-hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr auto; gap: clamp(48px,6vw,88px); align-items: center; padding: clamp(80px,10vw,120px) 0; }
.hp-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: rgba(247,247,247,.36); }
.hp-hero-title { font-family: var(--playfair); font-size: clamp(52px,7.5vw,100px); font-weight: 700; color: var(--cream); line-height: .88; letter-spacing: -2.5px; margin-bottom: 24px; }
.hp-hero-title em { display: block; color: var(--gold-light); font-style: italic; font-weight: 400; font-size: .6em; letter-spacing: -.5px; line-height: 1.4; }
.hp-hero-desc { font-family: var(--cormorant); font-style: italic; font-size: 18px; color: rgba(247,247,247,.45); line-height: 1.8; max-width: 440px; margin-bottom: 32px; }
.hp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hp-hero-stats { display: flex; flex-direction: column; gap: 0; min-width: 180px; }
.hp-stat { padding: 20px 24px; border-left: 2px solid rgba(201,164,108,.2); border-bottom: 1px solid rgba(255,255,255,.04); transition: border-left-color .3s; }
.hp-stat:first-child { border-top: 1px solid rgba(255,255,255,.04); }
.hp-stat:hover { border-left-color: var(--gold); }
.hp-stat-num { font-family: var(--playfair); font-size: clamp(36px,4vw,52px); font-weight: 700; color: var(--cream); line-height: 1; }
.hp-stat-suf { color: var(--gold); font-style: normal; }
.hp-stat-lbl { font-size: 10px; font-weight: 300; color: rgba(247,247,247,.3); margin-top: 4px; display: block; letter-spacing: .5px; }

/* Trust Bar */
.hp-trust-bar { background: var(--ink-soft); border-bottom: 1px solid rgba(255,255,255,.04); padding: 18px 0; }
.hp-trust-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.hp-trust-item { display: flex; align-items: center; gap: 10px; }
.hp-trust-icon { font-size: 18px; }
.hp-trust-title { font-size: 12px; font-weight: 600; color: rgba(247,247,247,.7); }
.hp-trust-desc { font-size: 10px; color: rgba(247,247,247,.3); margin-top: 1px; }

/* Categories */
.hp-cats-header { margin-bottom: 32px; }
.hp-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.hp-cat-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; }
.hp-cat-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.6) saturate(.6); transition: all .7s var(--ease); }
.hp-cat-card:hover .hp-cat-bg { filter: brightness(.45) saturate(.8); transform: scale(1.06); }
.hp-cat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,30,30,.85) 0%, transparent 60%); z-index: 2; }
.hp-cat-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 24px 20px; }
.hp-cat-count { font-size: 8.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.hp-cat-title { font-family: var(--playfair); font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 6px; }
.hp-cat-desc { font-family: var(--cormorant); font-style: italic; font-size: 13px; color: rgba(247,247,247,.5); line-height: 1.6; margin-bottom: 12px; }
.hp-cat-arrow { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .5px; opacity: 0; transform: translateX(-8px); transition: all .4s var(--ease); display: block; }
.hp-cat-card:hover .hp-cat-arrow { opacity: 1; transform: none; }

/* Flamecore Grid */
.hp-section-header-lt { margin-bottom: 40px; }
.hp-fc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.hp-fc-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.04); overflow: hidden; border-top: 2px solid transparent; transition: all .4s var(--ease); }
.hp-fc-card:hover { border-top-color: var(--gold); background: rgba(255,255,255,.07); transform: translateY(-5px); }
.hp-fc-img { aspect-ratio: 16/10; overflow: hidden; background: rgba(255,255,255,.04); }
.hp-fc-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transition: all .6s var(--ease); display: block; }
.hp-fc-card:hover .hp-fc-img img { filter: saturate(1); transform: scale(1.05); }
.hp-fc-body { padding: 16px 18px 20px; }
.hp-fc-title { font-family: var(--playfair); font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.hp-fc-desc { font-family: var(--cormorant); font-style: italic; font-size: 13px; color: rgba(247,247,247,.32); line-height: 1.65; margin-bottom: 8px; }
.hp-fc-price { font-size: 13px; font-weight: 600; color: var(--gold); }

/* Featured Products Grid */
.hp-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Gallery Grid */
.hp-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.hp-gal-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: zoom-in; background: rgba(255,255,255,.04); }
.hp-gal-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) saturate(.7); transition: all .7s var(--ease); display: block; }
.hp-gal-item:hover img { filter: brightness(1) saturate(1); transform: scale(1.07); }
.hp-gal-overlay { position: absolute; inset: 0; background: rgba(30,30,30,.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.hp-gal-item:hover .hp-gal-overlay { opacity: 1; }
.hp-gal-overlay span { font-size: 32px; color: var(--cream); font-weight: 300; line-height: 1; }
.hp-gal-item:first-child { grid-column: span 2; grid-row: span 2; }

/* Blog Grid */
.hp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Reviews Grid */
.hp-reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hp-review-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.04); padding: 26px 24px; border-top: 2px solid transparent; transition: all .35s; }
.hp-review-card:hover { border-top-color: var(--gold); background: rgba(255,255,255,.07); }
.hp-review-text { font-family: var(--cormorant); font-style: italic; font-size: 16px; color: rgba(247,247,247,.55); line-height: 1.8; margin: 12px 0 18px; }
.hp-review-author { display: flex; align-items: center; gap: 12px; }
.hp-review-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hp-review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-review-name { font-size: 13px; font-weight: 600; color: var(--cream); }
.hp-review-meta { font-size: 10px; color: rgba(247,247,247,.28); margin-top: 2px; }

/* SEO Content Area */
.hp-seo-content { max-width: 860px; margin: 0 auto; font-size: 14.5px; color: var(--stone); line-height: 1.95; }
.hp-seo-content h2, .hp-seo-content h3 { font-family: var(--playfair); color: var(--ink); margin: 28px 0 12px; }
.hp-seo-content p { margin-bottom: 14px; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
    .hp-hero-inner { grid-template-columns: 1fr; }
    .hp-hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
    .hp-cats-grid { grid-template-columns: 1fr 1fr; }
    .hp-fc-grid { grid-template-columns: 1fr 1fr; }
    .hp-products-grid { grid-template-columns: 1fr 1fr; }
    .hp-gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
    .hp-blog-grid { grid-template-columns: 1fr 1fr; }
    .hp-reviews-grid { grid-template-columns: 1fr; }
    .hp-trust-inner { justify-content: center; gap: 24px; }
}
@media (max-width: 700px) {
    .hp-cats-grid { grid-template-columns: 1fr; }
    .hp-fc-grid { grid-template-columns: 1fr; }
    .hp-products-grid { grid-template-columns: 1fr; }
    .hp-gallery-grid { grid-template-columns: 1fr 1fr; }
    .hp-gallery-grid .hp-gal-item:first-child { grid-column: span 1; grid-row: span 1; }
    .hp-blog-grid { grid-template-columns: 1fr; }
    .hp-hero-stats { grid-template-columns: 1fr 1fr; }
    .hp-hero-btns { flex-direction: column; }
}
