/* 0) בסיס טיפוגרפיה */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400;1,600&family=Cormorant+Garamond:wght@400;500&display=swap');

:root {
    --bg: #121212;
    --text: #EAE3D7;
    --paper: #F2EEE7;
    --paper-border: #D9D2C4;
    --ink: #0F0F0F;
    --muted: #B9B2A6;
    --accent: #EDE6DA;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* קונטיינר צר יותר כמו בתמונה */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 20px 140px;
}

/* Header Section */
.header {
    margin-bottom: 60px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.header-left {
    flex: 1;
}

/* 1) כותרת */
.artist-name {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.2rem, 7vw, 6rem);
    letter-spacing: .04em;
    line-height: 1;
    margin: 0 0 12px;
    text-align: left;       /* במקום center */
    color: var(--accent);
}

.profession {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    color: var(--text);
    margin-bottom: 6px;
    text-align: left;
}

.contact-inline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .95rem;
    color: var(--muted);
    opacity: .9;
}

/* 2) כרטיס התמונה העליון + כפתור עגול צף */
.decorative-card {
    position: relative;
    width: 210px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
    box-shadow: var(--shadow);
}

.decorative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-fab {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--text);
    background: rgba(0, 0, 0, .25);
    color: var(--text);
    display: grid;
    place-items: center;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all .25s ease;
}

.nav-fab:hover {
    background: var(--text);
    color: var(--bg);
}

.nav-fab svg {
    width: 20px;
    height: 20px;
}

/* Sections */
.designs-section,
.tattoos-section {
    margin-bottom: 80px;
}

/* 3) גריד הסקיצות — כמו בצילום: 2 ריבועים, אח"כ מלבניים נמוכים */
.designs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin: 32px 0 12px;
}

/* מראה "דף נייר" */
.paper {
    background: var(--paper);
    border: 1px solid var(--paper-border);
    box-shadow:
        inset 0 0 0.5px rgba(0, 0, 0, .25),
        0 8px 20px rgba(0, 0, 0, .25);
}

.design-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.design-item.large {
    aspect-ratio: 1 / 1;          /* ריבוע כמו בתמונה */
}

.design-item.small {
    aspect-ratio: 16 / 11;         /* מלבני נמוך */
}

.design-item.paper img {
    width: 100%;
    height: 100%;
    object-fit: contain;              /* חשוב! שלא ייחתך */
    padding: 22px;                    /* שוליים של "דף" */
    filter: contrast(1.02);
}

/* 4) גלריית הקעקועים על הגוף */
.tattoos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-top: 18px;
}

.tattoo-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;               /* צילום אנכי */
    background: #1b1b1b;
    box-shadow: var(--shadow);
}

.tattoo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 5) פוטר קטן שמודבק לפינה הימנית-תחתונה */
.footer {
    position: fixed;
    bottom: 28px;
    right: 28px;
    text-align: right;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    opacity: .9;
    transition: opacity .2s ease;
}

.social-link:hover {
    opacity: .65;
}

/* רספונסיביות */
@media (max-width: 820px) {
    .header-content {
        flex-direction: column;
        gap: 24px;
    }

    .decorative-card {
        margin-inline: auto;
    }

    .designs-grid,
    .tattoos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer {
        position: static;
        margin-top: 36px;
        text-align: center;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 14px;
    }
}
