/* ============================================================
   YZ Restaurant — Güneş Home (Frontpage) — gh-* prefix
   ============================================================
   Hibrit landing page CSS
   Reuses: --gr-* palette from brand.css

   Sections:
     1. Hero          .gh-hero
     2. Proof Strip   .gh-proof
     3. Story         .gh-story
     4. Chef's Picks  .gh-picks
     5. Reviews       .gh-reviews
     6. Event Card    .gh-event
     7. Visit/Loc     .gh-visit
     [Menu/Cat List]  .gh-menu-section

   Built: May 2026 — KobiZeka™
============================================================ */

/* ============================================================
   SHARED — Section eyebrow + title + buttons
============================================================ */
.gh-section-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gr-accent);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.gh-section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gr-cream);
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}
@media (min-width: 768px) {
    .gh-section-title { font-size: 2.25rem; }
}

.gh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 200ms ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.gh-btn-sm { padding: 10px 22px; font-size: 0.875rem; }

.gh-btn-primary {
    background: linear-gradient(135deg, var(--gr-primary) 0%, var(--gr-accent-dark) 100%);
    color: var(--gr-text-on-primary);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}
.gh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(230, 126, 34, 0.5);
    background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-primary) 100%);
    color: var(--gr-text-on-primary);
}

.gh-btn-ghost {
    background: transparent;
    color: var(--gr-cream);
    border: 2px solid rgba(230, 126, 34, 0.35);
}
.gh-btn-ghost:hover {
    background: rgba(230, 126, 34, 0.1);
    border-color: var(--gr-primary);
    color: var(--gr-cream);
    transform: translateY(-2px);
}

/* Deniz mavisi buton — Şezlong & Loca Rezervasyon CTA'sı için */
.gh-btn-sea {
    background: linear-gradient(135deg, #0096c7 0%, #023e7d 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(2, 62, 125, 0.35);
}
.gh-btn-sea:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(2, 62, 125, 0.5);
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: #ffffff;
}

.gh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gr-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 180ms ease;
}
.gh-link-arrow svg {
    transition: transform 180ms ease;
}
.gh-link-arrow:hover {
    color: var(--gr-primary);
}
.gh-link-arrow:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   1️⃣ HERO — Typography only (no image)
============================================================ */
.gh-hero {
    position: relative;
    padding: 70px 24px 50px;
    background:
        radial-gradient(circle at 50% 0%, rgba(230, 126, 34, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, var(--gr-bg-2) 0%, var(--gr-bg-1) 100%);
    overflow: hidden;
    text-align: center;
}
.gh-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 100%, rgba(249, 180, 35, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.gh-hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.gh-hero-title {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--gr-cream);
    margin: 0 0 40px;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-family: Georgia, "Playfair Display", serif;
}
@media (min-width: 768px) {
    .gh-hero-title { font-size: 4rem; }
}
@media (min-width: 1100px) {
    .gh-hero-title { font-size: 4.75rem; }
}

.gh-hero-tagline {
    font-size: 1.0625rem;
    color: var(--gr-cream-muted);
    margin: 0 0 32px;
    font-style: italic;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .gh-hero-tagline { font-size: 1.25rem; }
}

.gh-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    color: var(--gr-cream-dim);
    font-size: 0.8125rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gh-hero-meta-sep {
    color: var(--gr-accent);
    opacity: 0.6;
}

.gh-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   2️⃣ SOCIAL PROOF STRIP
============================================================ */
.gh-proof {
    background: var(--gr-bg-2);
    padding: 28px 24px;
    border-top: 1px solid rgba(230, 126, 34, 0.08);
    border-bottom: 1px solid rgba(230, 126, 34, 0.08);
}
.gh-proof-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.gh-proof-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--gr-cream);
    transition: transform 180ms ease;
    text-align: center;
}
.gh-proof-block:hover { transform: translateY(-2px); }

a.gh-proof-block:hover .gh-proof-rating-num {
    color: var(--gr-primary);
}

.gh-proof-rating {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.gh-proof-rating-num {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gr-accent);
    line-height: 1;
    transition: color 180ms ease;
}
.gh-proof-stars {
    display: inline-flex;
    gap: 1px;
    font-size: 1.125rem;
    line-height: 1;
}
.gh-star {
    color: rgba(255, 244, 230, 0.18);
}
.gh-star.filled {
    color: var(--gr-accent);
}

.gh-proof-label {
    font-size: 0.8125rem;
    color: var(--gr-cream-muted);
    letter-spacing: 0.5px;
}

.gh-proof-divider {
    width: 1px;
    height: 50px;
    background: rgba(230, 126, 34, 0.18);
}

.gh-proof-badge {
    flex-direction: row;
    gap: 12px;
}
.gh-proof-badge-icon {
    font-size: 2rem;
}
.gh-proof-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gr-cream);
    line-height: 1.2;
}
.gh-proof-badge-sub {
    font-size: 0.75rem;
    color: var(--gr-accent);
    letter-spacing: 1px;
    font-weight: 600;
}

.gh-proof-rank-num {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gr-cream);
    line-height: 1;
}
.gh-proof-rank-sub {
    font-size: 0.75rem;
    color: var(--gr-cream-muted);
    letter-spacing: 0.5px;
    max-width: 180px;
    line-height: 1.4;
}

@media (max-width: 720px) {
    .gh-proof-divider { width: 80px; height: 1px; }
    .gh-proof-inner { flex-direction: column; gap: 18px; }
    .gh-proof-rank-sub { max-width: none; text-align: center; }
}

/* ============================================================
   3️⃣ STORY PREVIEW
============================================================ */
.gh-story {
    padding: 70px 24px;
    background: var(--gr-bg-1);
}
.gh-story-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.gh-story-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gr-cream-muted);
    margin: 16px 0 28px;
}
@media (min-width: 768px) {
    .gh-story-text { font-size: 1.125rem; }
}

/* ============================================================
   4️⃣ CHEF'S PICKS
============================================================ */
.gh-picks {
    padding: 60px 24px;
    background: var(--gr-bg-2);
}
.gh-picks-header {
    max-width: 980px;
    margin: 0 auto 32px;
    text-align: center;
}

.gh-picks-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.gh-pick-card {
    background: var(--gr-bg-3);
    border: 1px solid rgba(230, 126, 34, 0.12);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--gr-cream);
    display: flex;
    flex-direction: column;
    transition: all 220ms ease;
}
.gh-pick-card:hover {
    transform: translateY(-4px);
    border-color: var(--gr-primary);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.18);
    color: var(--gr-cream);
}

.gh-pick-thumb {
    width: 100%;
    height: 180px;
    background: var(--gr-bg-1);
    overflow: hidden;
    position: relative;
}
.gh-pick-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.gh-pick-card:hover .gh-pick-thumb img {
    transform: scale(1.05);
}

.gh-pick-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gr-bg-3) 0%, var(--gr-bg-2) 100%);
}
.gh-pick-thumb-empty span {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(230, 126, 34, 0.25);
    font-family: Georgia, serif;
}

.gh-pick-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gh-pick-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gr-cream);
    margin: 0 0 8px;
    line-height: 1.3;
}
.gh-pick-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--gr-cream-muted);
    margin: 0 0 14px;
    flex: 1;
}
.gh-pick-price {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gr-accent);
}

/* ============================================================
   5️⃣ GUEST REVIEWS
============================================================ */
.gh-reviews {
    padding: 70px 24px;
    background: var(--gr-bg-1);
}
.gh-reviews-header {
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
}

.gh-reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gh-review-card {
    background: var(--gr-bg-2);
    border: 1px solid rgba(230, 126, 34, 0.12);
    border-radius: 14px;
    padding: 28px 24px 22px;
    position: relative;
    transition: all 220ms ease;
    display: flex;
    flex-direction: column;
}
.gh-review-card:hover {
    border-color: rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
}

.gh-review-quote {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 4.375rem;
    font-family: Georgia, serif;
    line-height: 1;
    color: rgba(230, 126, 34, 0.18);
    pointer-events: none;
}

.gh-review-stars {
    color: var(--gr-accent);
    font-size: 1.125rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.gh-review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gr-cream-muted);
    margin: 0 0 22px;
    font-style: italic;
    flex: 1;
}

.gh-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(230, 126, 34, 0.1);
}
.gh-review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gr-primary) 0%, var(--gr-accent-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gr-cream);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.gh-review-author-info {
    flex: 1;
    min-width: 0;
}
.gh-review-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gr-cream);
    line-height: 1.2;
}
.gh-review-loc {
    font-size: 0.75rem;
    color: var(--gr-cream-dim);
    margin-top: 2px;
}
.gh-review-source {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gh-reviews-cta {
    text-align: center;
    margin-top: 32px;
}

/* ============================================================
   6️⃣ SMART EVENT CARD
============================================================ */
.gh-event {
    padding: 24px 24px;
    background: var(--gr-bg-1);
}
.gh-event-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.12) 0%, rgba(249, 180, 35, 0.08) 100%);
    border: 1px solid rgba(249, 180, 35, 0.3);
    border-radius: 16px;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 22px;
    text-decoration: none;
    color: var(--gr-cream);
    transition: all 220ms ease;
}
.gh-event-card:hover {
    transform: translateY(-2px);
    border-color: var(--gr-primary);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.2);
    color: var(--gr-cream);
}

.gh-event-icon {
    font-size: 2.625rem;
    flex-shrink: 0;
}

.gh-event-body {
    flex: 1;
    min-width: 0;
}
.gh-event-eyebrow {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gr-accent);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.gh-event-title {
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--gr-cream);
    margin: 0 0 4px;
    line-height: 1.2;
}
.gh-event-desc {
    font-size: 0.8125rem;
    color: var(--gr-cream-muted);
    margin: 4px 0 8px;
    line-height: 1.4;
}
.gh-event-when {
    display: flex;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--gr-cream-muted);
    flex-wrap: wrap;
}
.gh-event-when-day {
    color: var(--gr-accent);
    font-weight: 600;
}
.gh-event-when-date {
    color: var(--gr-cream);
    font-weight: 600;
}

.gh-event-arrow {
    font-size: 1.5rem;
    color: var(--gr-accent);
    flex-shrink: 0;
    transition: transform 200ms ease;
}
.gh-event-card:hover .gh-event-arrow {
    transform: translateX(4px);
}

@media (max-width: 580px) {
    .gh-event-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .gh-event-arrow { display: none; }
    .gh-event-when { justify-content: center; }
}

/* ============================================================
   7️⃣ VISIT / LOCATION
============================================================ */
.gh-visit {
    padding: 70px 24px;
    background: var(--gr-bg-2);
}
.gh-visit-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.gh-visit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gr-cream-muted);
    font-size: 1rem;
}
.gh-visit-row i {
    color: var(--gr-accent);
    width: 20px;
    text-align: center;
}
.gh-visit-row a {
    color: var(--gr-cream-muted);
    text-decoration: none;
    transition: color 180ms ease;
}
.gh-visit-row a:hover {
    color: var(--gr-accent);
}
.gh-visit-cta {
    margin-top: 24px;
}

/* ============================================================
   MENU SECTION (en alta) — mevcut category list wrapper
============================================================ */
.gh-menu-section {
    padding: 60px 24px 30px;
    background: var(--gr-bg-1);
}
.gh-menu-header {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}
.gh-menu-tagline {
    color: var(--gr-cream-muted);
    font-style: italic;
    font-size: 1rem;
    margin: 8px 0 0;
}

/* ============================================================
   RESPONSIVE TUNES
============================================================ */
@media (max-width: 580px) {
    .gh-hero { padding: 50px 20px 40px; }
    .gh-hero-title { font-size: 2.375rem; }
    .gh-story, .gh-reviews, .gh-visit { padding: 50px 20px; }
    .gh-picks { padding: 45px 20px; }
    .gh-section-title { font-size: 1.5rem; }
    .gh-proof { padding: 24px 16px; }
}
