/* Eti Pak — canlı tanıtım (HTML5 / CSS3) — fontlar HTML’de yüklenir */

:root {
    --lp-cream: #fff8f0;
    --lp-paper: #fffdfb;
    --lp-ink: #1c1410;
    --lp-ink-soft: #4a3f36;
    --lp-orange: #e85d04;
    --lp-orange-deep: #c2410c;
    --lp-gold: #f4b942;
    --lp-mint: #2dd4bf;
    --lp-rose: #fb7185;
    --lp-card-shadow: 0 20px 50px rgba(28, 20, 16, 0.12);
    --lp-radius: 1.25rem;
    --lp-radius-lg: 1.75rem;
    --lp-sans: "DM Sans", system-ui, sans-serif;
    --lp-serif: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lp {
    margin: 0;
    font-family: var(--lp-sans);
    background: var(--lp-cream);
    color: var(--lp-ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.lp-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

a {
    color: var(--lp-orange-deep);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--lp-orange);
}

.lp-skip {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lp-skip:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    background: #fff;
    color: #000;
    border-radius: 0.5rem;
    outline: 3px solid var(--lp-orange);
}

/* —— Header —— */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(255, 253, 251, 0.97) 0%, rgba(255, 248, 240, 0.92) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 93, 4, 0.12);
    box-shadow: 0 4px 24px rgba(28, 20, 16, 0.06);
}

.lp-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.lp-brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-deep) 50%, #9a3412 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.45);
    flex-shrink: 0;
}

.lp-brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.lp-brand__name {
    font-family: var(--lp-serif);
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.15;
}

.lp-brand__tag {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--lp-orange-deep);
}

.lp-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.9rem;
}

.lp-nav a:not(.lp-btn) {
    color: var(--lp-ink-soft);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}

.lp-nav a:not(.lp-btn):hover {
    color: var(--lp-orange);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:focus-visible {
    outline: 3px solid var(--lp-gold);
    outline-offset: 3px;
}

.lp-btn--primary {
    background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-deep) 100%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(232, 93, 4, 0.42);
}

.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 93, 4, 0.5);
    color: #fff;
}

.lp-btn--ghost {
    background: #fff;
    color: var(--lp-ink);
    border: 2px solid rgba(232, 93, 4, 0.35);
    box-shadow: 0 2px 12px rgba(28, 20, 16, 0.06);
}

.lp-btn--ghost:hover {
    border-color: var(--lp-orange);
    color: var(--lp-orange-deep);
}

.lp-btn--dark {
    background: var(--lp-ink);
    color: #fff;
}

.lp-btn--dark:hover {
    background: #2d241e;
    color: #fff;
    transform: translateY(-2px);
}

.lp-btn--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border: none;
}

.lp-btn--ig:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* —— Hero —— */
.lp-hero {
    position: relative;
    min-height: min(88vh, 720px);
    overflow: hidden;
    background: #1a0f0a;
}

.lp-hero__slides {
    position: absolute;
    inset: 0;
}

.lp-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: lpHeroFade 18s infinite;
}

.lp-hero__slide:nth-child(1) {
    animation-delay: 0s;
}

.lp-hero__slide:nth-child(2) {
    animation-delay: 6s;
}

.lp-hero__slide:nth-child(3) {
    animation-delay: 12s;
}

@keyframes lpHeroFade {
    0%,
    2% {
        opacity: 0;
        z-index: 0;
    }
    6%,
    30% {
        opacity: 1;
        z-index: 1;
    }
    34%,
    100% {
        opacity: 0;
        z-index: 0;
    }
}

.lp-hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lp-bgimg {
    position: absolute;
    inset: 0;
    /* 1) foto (yüklenmezse), 2) parlak sıcak gradientler (her zaman), 3) hafif doku */
    background-image:
        var(--lp-img, none),
        radial-gradient(1200px 800px at 20% 20%, rgba(244, 185, 66, 0.55), rgba(244, 185, 66, 0) 55%),
        radial-gradient(1000px 700px at 80% 30%, rgba(232, 93, 4, 0.42), rgba(232, 93, 4, 0) 55%),
        linear-gradient(145deg, #2b120a 0%, #120a07 35%, #2a140b 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
}

@media (prefers-reduced-motion: no-preference) {
    .lp-hero__photo {
        animation: lpKen 22s ease-in-out infinite alternate;
    }
    .lp-bgimg {
        animation: lpKen 22s ease-in-out infinite alternate;
    }
}

@keyframes lpKen {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

.lp-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(15, 10, 8, 0.88) 0%,
        rgba(40, 22, 14, 0.55) 42%,
        rgba(15, 10, 8, 0.45) 100%
    );
    z-index: 1;
}

.lp-hero__content {
    position: relative;
    z-index: 2;
    min-height: min(88vh, 720px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 5.5rem 1.5rem 6rem;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.lp-hero__badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: lpPulse 2s ease-out infinite;
}

@keyframes lpPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.lp-hero__title {
    font-family: var(--lp-serif);
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 1rem;
    color: #fff;
    max-width: 16ch;
    text-wrap: balance;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.lp-hero__title em {
    font-style: italic;
    color: var(--lp-gold);
}

.lp-hero__lead {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255, 248, 240, 0.92);
    margin: 0 0 1.75rem;
    max-width: 32rem;
    font-weight: 500;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lp-hero__dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 3;
}

.lp-hero__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    animation: lpDotPulse 18s infinite;
}

.lp-hero__dots span:nth-child(2) {
    animation-delay: 6s;
}

.lp-hero__dots span:nth-child(3) {
    animation-delay: 12s;
}

@keyframes lpDotPulse {
    0%,
    4% {
        background: rgba(255, 255, 255, 0.35);
        transform: scale(1);
    }
    8%,
    30% {
        background: var(--lp-gold);
        transform: scale(1.25);
    }
    34%,
    100% {
        background: rgba(255, 255, 255, 0.35);
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero__slide,
    .lp-hero__dots span,
    .lp-hero__badge-dot,
    .lp-hero__photo {
        animation: none !important;
    }

    .lp-hero__slide:first-child {
        opacity: 1;
        z-index: 1;
    }

    .lp-hero__slide:not(:first-child) {
        opacity: 0;
    }
}

/* —— “Buradayız” şerit —— */
.lp-here {
    position: relative;
    z-index: 5;
    margin: -2.5rem 1rem 0;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem;
}

.lp-here__inner {
    background: linear-gradient(135deg, #fff 0%, #fff8f0 50%, #ffedd5 100%);
    border-radius: var(--lp-radius-lg);
    padding: 1.15rem 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    box-shadow: var(--lp-card-shadow), 0 0 0 1px rgba(232, 93, 4, 0.15);
    border: 2px solid rgba(244, 185, 66, 0.5);
}

.lp-here__icons {
    display: flex;
    gap: 0.5rem;
}

.lp-here__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.lp-here__icon--1 {
    background: linear-gradient(135deg, var(--lp-orange), #ea580c);
}

.lp-here__icon--2 {
    background: linear-gradient(135deg, var(--lp-mint), #0d9488);
}

.lp-here__icon--3 {
    background: linear-gradient(135deg, var(--lp-rose), #e11d48);
}

.lp-here__icon--4 {
    background: linear-gradient(135deg, var(--lp-gold), #d97706);
}

.lp-here__msg {
    text-align: center;
}

.lp-here__msg strong {
    display: block;
    font-family: var(--lp-serif);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    color: var(--lp-ink);
}

.lp-here__msg span {
    font-size: 0.92rem;
    color: var(--lp-ink-soft);
}

/* —— Özellik ikon şeridi —— */
.lp-strip {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1rem;
}

.lp-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .lp-strip__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .lp-strip__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.lp-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.6rem;
    background: #fff;
    border-radius: var(--lp-radius);
    border: 1px solid rgba(232, 93, 4, 0.12);
    box-shadow: 0 8px 24px rgba(28, 20, 16, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(232, 93, 4, 0.15);
}

.lp-chip__circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.65rem;
}

.lp-chip__circle--fire {
    background: linear-gradient(145deg, #f97316, #ea580c);
}

.lp-chip__circle--egg {
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
}

.lp-chip__circle--cup {
    background: linear-gradient(145deg, #a78bfa, #7c3aed);
}

.lp-chip__circle--shop {
    background: linear-gradient(145deg, #34d399, #059669);
}

.lp-chip__circle--heart {
    background: linear-gradient(145deg, #fb7185, #db2777);
}

.lp-chip__circle--star {
    background: linear-gradient(145deg, #38bdf8, #0284c7);
}

.lp-chip span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.3;
}

/* —— Bölümler —— */
.lp-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3.5rem 1.25rem;
}

.lp-section--alt {
    background: linear-gradient(180deg, #fffdfb 0%, #fff5eb 100%);
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(232, 93, 4, 0.08);
}

.lp-section__head {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 2.25rem;
}

.lp-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lp-orange-deep);
    margin-bottom: 0.5rem;
}

.lp-section__title {
    font-family: var(--lp-serif);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    color: var(--lp-ink);
    margin: 0 0 0.65rem;
    line-height: 1.2;
}

.lp-section__intro {
    color: var(--lp-ink-soft);
    margin: 0;
    font-size: 1.02rem;
}

/* —— Hakkımızda + görsel —— */
.lp-split {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .lp-split {
        grid-template-columns: 1fr 1.05fr;
        gap: 3rem;
    }
}

.lp-split__visual {
    position: relative;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-card-shadow);
    aspect-ratio: 4/5;
    max-height: 520px;
}

.lp-split__visual .lp-bgimg {
    position: absolute;
    inset: 0;
}

.lp-split__float {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--lp-radius);
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.lp-split__float i {
    font-size: 1.75rem;
    color: var(--lp-orange);
}

.lp-split__float strong {
    display: block;
    font-size: 0.95rem;
    color: var(--lp-ink);
}

.lp-split__float small {
    color: var(--lp-ink-soft);
    font-size: 0.8rem;
}

.lp-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    background: #fff;
    border-radius: var(--lp-radius);
    border: 1px solid rgba(232, 93, 4, 0.1);
    box-shadow: 0 6px 20px rgba(28, 20, 16, 0.05);
}

.lp-point__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: var(--lp-orange-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.lp-point h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--lp-ink);
}

.lp-point p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--lp-ink-soft);
}

/* —— Menü kartları (görselli) —— */
.lp-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
}

@media (min-width: 768px) {
    .lp-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-mcard {
    background: #fff;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(232, 93, 4, 0.12);
    box-shadow: var(--lp-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.lp-mcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(232, 93, 4, 0.18);
}

.lp-mcard__img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.lp-mcard__img .lp-bgimg {
    position: absolute;
    inset: 0;
    transition: transform 0.55s ease;
}

.lp-mcard:hover .lp-mcard__img .lp-bgimg {
    transform: scale(1.06);
}

.lp-mcard__tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.95);
    color: var(--lp-orange-deep);
}

.lp-mcard__body {
    padding: 1.25rem 1.2rem 1.35rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lp-mcard__iconrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    color: var(--lp-orange);
    font-size: 1.35rem;
}

.lp-mcard h3 {
    margin: 0 0 0.5rem;
    font-family: var(--lp-serif);
    font-size: 1.2rem;
    color: var(--lp-ink);
}

.lp-mcard p {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: var(--lp-ink-soft);
    flex: 1;
}

.lp-mcard .lp-btn {
    width: 100%;
    margin-top: auto;
}

.lp-muted-note {
    font-size: 0.85rem;
    color: var(--lp-ink-soft);
    margin-top: 0.75rem;
    text-align: center;
}

/* —— İletişim —— */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp-contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-cbox {
    border-radius: var(--lp-radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.lp-cbox:hover {
    transform: translateY(-4px) scale(1.02);
    filter: brightness(1.05);
    color: #fff;
}

.lp-cbox i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.95;
}

.lp-cbox strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.9;
    margin-bottom: 0.35rem;
}

.lp-cbox span {
    font-size: 1.05rem;
    font-weight: 700;
}

.lp-cbox--phone {
    background: linear-gradient(145deg, #ea580c, #c2410c);
}

.lp-cbox--wa {
    background: linear-gradient(145deg, #22c55e, #15803d);
}

.lp-cbox--ig {
    background: linear-gradient(145deg, #e11d48, #9333ea, #2563eb);
}

/* —— Footer —— */
.lp-footer {
    background: var(--lp-ink);
    color: rgba(255, 250, 245, 0.75);
    padding: 2.25rem 1.25rem;
    text-align: center;
    font-size: 0.88rem;
}

.lp-footer a {
    color: var(--lp-gold);
}

.lp-footer a:hover {
    color: #fff;
}
