/* Yunus Akarsu — Clean editorial theme */

:root {
    --bg: #090909;
    --bg-soft: #111111;
    --bg-card: #161616;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f5f5f5;
    --muted: #888888;
    --accent: #e11d48;
    --accent-hover: #be123c;
    --radius: 12px;
    --radius-lg: 20px;
    --wrap: min(1120px, 90%);
    --header: 72px;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: var(--wrap); margin-inline: auto; }
.narrow { max-width: 560px; }
.center { text-align: center; margin-top: 40px; }

::selection { background: var(--accent); color: #fff; }

/* Header */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header);
    transition: background 0.3s, border-color 0.3s;
}

.header.scrolled {
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active { color: var(--text); }

.nav-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--text);
    color: var(--bg) !important;
    border-radius: 999px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: transform 0.2s, opacity 0.2s !important;
}

.nav-ig:hover { transform: scale(1.03); opacity: 0.92; }

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s;
}

/* Hero */
.hero {
    padding: calc(var(--header) + 48px) 0 80px;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.live-pill i {
    font-size: 6px;
    color: #22c55e;
}

.refresh {
    color: var(--muted);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.refresh:hover { color: var(--text); }

.hero h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 28px;
}

.quote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text);
    margin-bottom: 32px;
    max-width: 420px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn-fill {
    background: var(--accent);
    color: #fff;
}

.btn-fill:hover { background: var(--accent-hover); }

.btn-line {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-line:hover { border-color: rgba(255,255,255,0.25); }

.btn-wide { width: 100%; }

.metrics {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.metric-val {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}

.metric dd {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual { text-align: center; }

.photo-frame {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 420px;
    width: 100%;
    background: var(--bg-card);
}

.photo-frame img,
.photo-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--muted);
}

.verified {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    border: 3px solid var(--bg);
}

.photo-caption {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--muted);
}

.photo-caption i { color: var(--accent); }

/* Blocks */
.block {
    padding: 96px 0;
}

.block-muted {
    background: var(--bg-soft);
    border-block: 1px solid var(--line);
}

.block-head {
    margin-bottom: 56px;
}

.block-head.center { text-align: center; }
.block-head.left { margin-bottom: 40px; }

.block-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-top: 12px;
}

.label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sub {
    color: var(--muted);
    margin-top: 12px;
    font-size: 0.95rem;
}

/* Viral */
.viral-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: start;
}

.phone-wrap {
    display: flex;
    justify-content: center;
}

.viral-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.card h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card h3 i { color: var(--accent); font-size: 0.8rem; }

.card p { color: var(--muted); font-size: 0.95rem; }

.card .highlight {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    font-style: italic;
    margin-bottom: 8px;
}

.card strong { color: var(--text); }

/* iPhone */
.iphone-device {
    position: relative;
    width: min(270px, 72vw);
}

.iphone-bezel {
    background: #1a1a1a;
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.iphone-btn {
    position: absolute;
    background: #222;
    z-index: 2;
}

.iphone-btn-silent { left: -2px; top: 90px; width: 3px; height: 26px; border-radius: 2px 0 0 2px; }
.iphone-btn-vol-up { left: -2px; top: 130px; width: 3px; height: 44px; }
.iphone-btn-vol-down { left: -2px; top: 184px; width: 3px; height: 44px; }
.iphone-btn-power { right: -2px; top: 150px; width: 3px; height: 64px; border-radius: 0 2px 2px 0; }

.iphone-island {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 26px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.island-cam {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #333;
}

.iphone-screen {
    border-radius: 36px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9/19.5;
}

.reels-app { position: relative; width: 100%; height: 100%; }

.reels-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    padding: 12px 18px 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
}

.reels-status { display: flex; gap: 4px; font-size: 0.6rem; }

.reels-player {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.reels-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}

.reels-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
    pointer-events: none;
    z-index: 1;
}

.reels-side-actions {
    position: absolute;
    right: 8px;
    bottom: 80px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reels-action {
    background: none;
    border: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.6rem;
    font-family: var(--font);
    cursor: pointer;
}

.reels-action i { font-size: 1.2rem; }
.reels-action:first-child i { color: #ff4458; }

.reels-mute-btn {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    justify-content: center;
}

.reels-bottom {
    position: absolute;
    left: 12px;
    right: 44px;
    bottom: 24px;
    z-index: 3;
    color: #fff;
    pointer-events: none;
}

.reels-user {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.reels-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #fff;
}

.reels-caption {
    font-size: 0.65rem;
    opacity: 0.9;
    line-height: 1.4;
}

.reels-play-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 56px; height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding-left: 3px;
    transition: opacity 0.3s;
}

.reels-player.is-playing .reels-play-center { opacity: 0; pointer-events: none; }

.iphone-home-indicator {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 99px;
    z-index: 10;
}

/* About — modern bento */
.about-section {
    overflow: hidden;
}

.about-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.about-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 12px;
    margin-bottom: 28px;
}

.about-bio-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.08), rgba(225, 29, 72, 0.02));
    border: 1px solid rgba(225, 29, 72, 0.2);
    border-radius: var(--radius-lg);
    text-align: left;
    animation: bio-glow 4s ease-in-out infinite;
}

@keyframes bio-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(225, 29, 72, 0); }
    50% { box-shadow: 0 0 32px rgba(225, 29, 72, 0.12); }
}

.about-bio-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
    border-radius: 14px;
    color: #fff;
    font-size: 1.25rem;
    animation: icon-bounce 3s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.about-bio-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.about-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-card {
    position: relative;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
    transition-delay: calc(var(--i, 0) * 0.06s);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card-icon {
    position: relative;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    color: var(--accent);
    transition: transform 0.4s var(--ease), color 0.3s;
}

.about-card:hover .about-card-icon i {
    transform: scale(1.15) rotate(-5deg);
    color: #ff4d6d;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.15);
    animation: ring-pulse 2.5s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}

.about-card:nth-child(6) .about-card-icon i { color: #ff6b35; }
.about-card:nth-child(3) .about-card-icon i { color: #a855f7; }
.about-card:nth-child(4) .about-card-icon i { color: #3b82f6; }

.about-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.about-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    transition: transform 0.3s var(--ease), color 0.3s, border-color 0.3s, background 0.3s;
    animation: tag-float 4s ease-in-out infinite;
}

.about-tag:nth-child(1) { animation-delay: 0s; }
.about-tag:nth-child(2) { animation-delay: 0.4s; }
.about-tag:nth-child(3) { animation-delay: 0.8s; }
.about-tag:nth-child(4) { animation-delay: 1.2s; }
.about-tag:nth-child(5) { animation-delay: 1.6s; }

@keyframes tag-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.about-tag i {
    font-size: 0.85rem;
    color: var(--accent);
    transition: transform 0.3s var(--ease);
}

.about-tag:hover {
    color: var(--text);
    border-color: rgba(225, 29, 72, 0.35);
    background: rgba(225, 29, 72, 0.06);
    transform: translateY(-3px) scale(1.03);
    animation: none;
}

.about-tag:hover i {
    transform: rotate(12deg) scale(1.1);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-meta {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.25s;
}

.gallery-item:hover .gallery-meta { opacity: 1; }

/* Contact */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s, transform 0.2s;
}

.contact-row:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateX(4px);
}

.contact-row > i:first-child {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 10px;
    font-size: 1.2rem;
}

.contact-row .fa-whatsapp { color: #25d366; }
.contact-row .fa-instagram { color: #e1306c; }
.contact-row .fa-envelope { color: var(--accent); }

.contact-row strong { display: block; font-size: 0.95rem; }
.contact-row span { font-size: 0.85rem; color: var(--muted); }

.contact-row .arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px 32px;
    align-items: center;
}

.footer-name { font-weight: 700; }
.footer-copy { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

.footer-links {
    display: flex;
    gap: 12px;
}

.footer-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    transition: color 0.2s, border-color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.2);
}

.footer-tagline {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
    font-style: italic;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Top button */
.top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--text);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 99;
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid,
    .viral-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual { order: -1; }
    .photo-frame { max-width: 280px; margin-inline: auto; }

    .metrics { justify-content: center; }

    .viral-details { order: 1; }

    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .menu-btn { display: flex; }

    .nav {
        position: fixed;
        top: var(--header);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s var(--ease), opacity 0.3s, visibility 0.3s;
    }

    .nav.open {
        transform: translateY(8px);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        padding: 14px 16px;
        border-radius: 8px;
    }

    .nav a:hover { background: var(--bg-card); }

    .nav-ig { justify-content: center; margin-top: 8px; }

    .hero { padding-top: calc(var(--header) + 24px); }
    .hero h1 { font-size: 2.5rem; }

    .hero-btns { flex-direction: column; }
    .btn { width: 100%; }

    .metrics {
        flex-wrap: wrap;
        gap: 24px 32px;
        justify-content: flex-start;
    }

    .block { padding: 64px 0; }

    .about-bento { grid-template-columns: 1fr; }

    .about-bio-card { flex-direction: column; text-align: center; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { transition: none; opacity: 1; transform: none; }
}
