


@font-face {
  font-family: 'NumiB7';
  src: url('../fonts/NumiB7-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #b80018;            /* האדום של לוגו נומי */
  --red-dark: #8f0012;
  --dark: #111111;           
  --light: #fafafa;          
  --text-dark: #1c1c1c;
  --text-light: #f2f2f2;
  --grey: #777;
  --font-body: 'Heebo', sans-serif;
  --font-hand: 'Amatic SC', cursive;   
  --font-numi: 'NumiB7', 'Amatic SC', cursive;   
}


.numi-font {
  font-family: var(--font-numi);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  line-height: 1.45;
  font-weight: normal;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  direction: rtl;
  color: var(--text-dark);
  background: var(--light);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }



.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;   
}

.site-header > * { pointer-events: auto; }


.logo {
  position: absolute;
  right: 30px;
  top: -14px;
  font-family: var(--font-hand);
  font-size: 2.2rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
}


.logo-img { height: 64px; width: auto; }


.img-missing.logo-img {
  height: 54px;
  min-height: 54px;
  min-width: 110px;
  padding: 4px 8px;
  font-size: 0.6rem;
  background: rgba(255,255,255,.85);
}


body:not(.home) main { padding-top: 130px; }


.main-nav {
  background: rgba(255,255,255,.96);
  border: 1px solid #eee;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.14);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  padding: 0 10px;
}

.main-nav li { position: relative; }

.main-nav a,
.main-nav .drop-btn {
  display: block;
  padding: 10px 13px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.main-nav a:hover,
.main-nav .drop-btn:hover,
.main-nav a.active { color: var(--red); }


.dropdown .drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  min-width: 210px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.dropdown:hover .drop-menu,
.dropdown:focus-within .drop-menu { display: block; }

.drop-menu a { padding: 10px 16px; white-space: nowrap; }


.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}


@media (max-width: 860px) {
  .site-header {
    position: fixed;
    top: 0;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    height: 60px;
    padding: 0 14px;
    border-bottom: 1px solid #e5e5e5;
    pointer-events: auto;
  }
  
  .logo {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
  }
  .nav-toggle { margin-right: 0; }
  .logo-img, .img-missing.logo-img { height: 54px; min-height: 54px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: #fff;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    display: none;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0; }
  .dropdown .drop-menu {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    background: #f5f5f5;
    min-width: 0;
  }
  body:not(.home) main { padding-top: 60px; }
  body.home .hero { padding-top: 60px; }

  /* נאבר שחור בדף הבית (מובייל) */
  body.home .site-header {
    background: #0d0d0d;
    border-bottom-color: #222;
  }
  body.home .nav-toggle { color: #fff; }
}



.hand-title {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--red);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  text-align: center;
}

.hand-title.dark-ink { color: var(--text-dark); }

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
}



.hero {
  position: relative;
  min-height: 92vh;
  background: var(--dark);
  color: var(--text-light);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}


/* התמונה צמודה לימין, מוקטנת כך שרואים את היד, המיקרופון והלוגו בחולצה */
.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: min(62vw, 980px);
  height: 100%;
  object-fit: cover;
  object-position: 26% 8%;
  transform: translateY(10%);   /* מוריד את התמונה למטה - תעלה/תוריד את האחוז */
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(to left, #000 72%, transparent);
  mask-image: linear-gradient(to left, #000 72%, transparent);
}

@media (max-width: 860px) {
  .hero-bg {
    right: 0;
    left: 0;
    width: 100%;
    object-position: 32% 10%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,.65), rgba(0,0,0,.15));
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 5vw 9vh;
  width: max-content;
  max-width: 100%;
  margin-right: auto;
  text-align: left;
}


/* עמודה: לוגו רוקסטאר כפרה -> נגטיב אדום -> שנות חיים + רשתות */
.hero-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}


.hero-rockstar {
  width: min(330px, 68vw);
  margin-bottom: 2px;
}

.hero-years {
  font-family: var(--font-hand);   /* הפונט הקודם (Amatic SC) */
  font-weight: 700;                /* הבולד שלו עדין מטבעו... */
  -webkit-text-stroke: 0.7px currentColor;   /* ...אז מעבים אותו כדי שייראה מודגש */
  paint-order: stroke fill;
  font-size: 1.7rem;
  letter-spacing: 3px;
  color: #eee;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .hero-years { font-size: 1.4rem; letter-spacing: 2px; }
}


.hero-under { width: 100%; }

/* דסקטופ: הרשתות מתחת לנגטיב האדום בימין, ומולן בשמאל - שנות חייו */
@media (min-width: 861px) {
  .hero-under {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
  }
  .hero-under .socials { margin-top: 0; }
  .hero-under .hero-years { margin-top: 0; }
}

/* האייקונים כמו שהיו - שורה מתחת לנגטיב, מיושרים לימין התוכן */
.hero-under .socials { justify-content: flex-end; margin-top: 10px; }

.hero-under .hero-years { text-align: left; margin-top: 10px; }


.hero-name {
  font-family: var(--font-numi);
  font-size: clamp(1.6rem, 4.8vw, 3.6rem);
  color: #fff;
  background: var(--red);
  display: inline-block;
  padding: 4px 26px 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  font-weight: normal;
  margin: 8px 0 0;
  white-space: nowrap;
}

.hero-name .zl { font-size: 0.5em; color: #fff; }

.hero-album-link {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.7rem;
  color: var(--text-light);
  border-bottom: 2px solid var(--red);
  margin: 14px 0 22px;
}

.hero-album-link:hover { color: var(--red); }

.hero-manager {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 18px;
}


.socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.socials a:hover { background: var(--red); transform: translateY(-3px); }

.socials svg { width: 22px; height: 22px; fill: #fff; }


.footer .socials a { background: rgba(0,0,0,.08); }
.footer .socials a:hover { background: var(--red); }
.footer .socials svg { fill: var(--text-dark); }
.footer .socials a:hover svg { fill: #fff; }



.music-section {
  background:
    linear-gradient(rgba(18,18,18,.5), rgba(18,18,18,.5)),
    url('../images/תמונות נועם/75242079_10157149770846523_7205837421873725440_n_edited_edited copy.jpg') center/cover no-repeat;
  color: var(--text-light);
  padding: 70px 6vw;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .music-section { grid-template-columns: 1fr; }
}

.music-section iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
}

.video-wrap { position: relative; padding-top: 56.25%; }

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.embed-caption {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.6rem;
  margin-top: 14px;
}



.quote-section {
  background: var(--dark);
  color: var(--text-light);
  text-align: center;
  padding: 80px 6vw 100px;
}

.quote-text {
  font-family: var(--font-numi);   
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  line-height: 1.6;
  color: var(--red);
  max-width: 760px;
  margin: 0 auto;
}

.quote-credit { margin-top: 18px; color: #bbb; }

@media (max-width: 600px) {

  .quote-text { font-size: 1.12rem; letter-spacing: 0.04em; word-spacing: 0.15em; }
}



.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.hidden { display: none; }

.popup-box {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--dark);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  color: var(--text-light);
}

.popup-box img { width: 100%; }

.popup-text {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  padding: 16px;
}

.popup-close {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.5);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
}



.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}



.bio-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

@media (max-width: 800px) {
  .bio-top { grid-template-columns: 1fr; }
}

.bio-facts h1 { font-size: 2rem; }

.bio-facts h2 {
  font-family: var(--font-hand);
  color: var(--red);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.bio-facts ul { list-style: none; margin-top: 18px; }

.bio-facts li { margin-bottom: 10px; }

.bio-facts li strong { font-weight: 700; }

.bio-portrait img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.bio-story h2 {
  font-family: var(--font-hand);
  color: var(--red);
  font-size: 2.6rem;
  margin: 50px 0 16px;
  text-align: center;
}

.bio-story p { margin-bottom: 16px; }

.bio-story blockquote {
  background: #f0eeea;
  border-right: 4px solid var(--red);
  padding: 20px 24px;
  margin: 20px 0;
  font-family: var(--font-numi);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  line-height: 1.7;
  font-size: 1.25rem;
}



.timeline {
  position: relative;
  margin-top: 30px;
  padding-right: 34px;
}


.timeline::before {
  content: "";
  position: absolute;
  right: 7px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), #d9a49e);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 42px;
}

.timeline-item:last-child { padding-bottom: 0; }


.timeline-item::before {
  content: "";
  position: absolute;
  right: -33px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--light);
  box-shadow: 0 0 0 2px var(--red);
}


.timeline-item .tl-date {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 6px;
}

.timeline-item p { margin-bottom: 12px; }

.timeline-item p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .timeline { padding-right: 26px; }
  .timeline-item::before { right: -25px; width: 12px; height: 12px; }
}

.singles-list {
  list-style: none;
  background: #f4f2ee;
  padding: 22px 28px;
  border-radius: 6px;
  margin: 20px 0;
  columns: 2;
  column-gap: 40px;
}

@media (max-width: 700px) { .singles-list { columns: 1; } }

.singles-list li { margin-bottom: 8px; break-inside: avoid; }



.lyrics-hero { margin-bottom: 50px; }

.lyrics-hero img {
  width: min(88%, 540px);
  margin: 0 auto;
}

@media (max-width: 700px) {
  .lyrics-hero img {
    width: min(92%, 620px);
  }
}

.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 60px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 700px) { .lyrics-grid { grid-template-columns: 1fr; } }

.lyric-item {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 18px;
}

.lyric-num {
  font-family: var(--font-hand);   /* הפונט הקודם (Amatic SC) */
  font-weight: 700;                /* הבולד של הפונט הזה עדין מאוד מטבעו... */
  -webkit-text-stroke: 0.7px currentColor;   /* ...אז מעבים אותו כדי שייראה מודגש */
  paint-order: stroke fill;
  font-size: 2.4rem;
  color: var(--red);
  min-width: 48px;
  text-align: center;
}

.lyric-item h3 {
  font-family: var(--font-numi);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  font-weight: normal;
  font-size: 1.5rem;
  flex: 1;
}

.lyric-item button {
  background: none;
  border: 1px solid var(--text-dark);
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: all .2s;
}

.lyric-item button:hover { background: var(--red); border-color: var(--red); color: #fff; }


.lyric-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lyric-modal.open { display: flex; }

.lyric-modal-box {
  background: #fff;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 6px;
  padding: 40px;
  position: relative;
}

.lyric-modal-box h3 {
  font-family: var(--font-hand);
  color: var(--red);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 20px;
}

.lyric-modal-box .lyrics-text { white-space: pre-line; text-align: center; }

.lyric-modal-box .notebook-img { margin: 26px auto 0; max-width: 420px; }

.lyric-modal-box .close-modal {
  position: absolute;
  top: 12px;
  left: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--grey);
}



.album-header { text-align: center; padding: 60px 20px 20px; }

.album-year {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  color: var(--text-dark);
}

.track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ddd;
  background: rgba(255,255,255,.94);
}


/* זיגזג: פעם קליפ בימין וטקסט בשמאל, ופעם להפך */
@media (min-width: 801px) {
  .track:nth-of-type(even) .track-media { order: 2; }
}

.track:last-of-type { border-bottom: 1px solid #ddd; }

@media (max-width: 800px) { .track { grid-template-columns: 1fr; } }

.track-media {
  background: #000;
  min-height: 300px;
  position: relative;
}

.track-media iframe,
.track-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

@media (max-width: 800px) {
  .track-media { min-height: 0; padding-top: 56.25%; }
}

.track-info {
  padding: 40px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.track-info h3 {
  font-family: var(--font-numi);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  font-weight: normal;
  font-size: 2rem;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.track-info .artist { font-weight: 700; margin-bottom: 10px; }

.track-info p { font-size: 0.92rem; color: #444; }

.track-info .lyrics-btn {
  margin-top: 16px;
  background: none;
  border: 1px solid var(--text-dark);
  padding: 8px 18px;
  cursor: pointer;
  font-family: var(--font-body);
}

.track-info .lyrics-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }



.project {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  margin-bottom: 44px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

@media (max-width: 800px) { .project { grid-template-columns: 1fr; } }


.project:nth-of-type(even) .project-media { order: 2; }

@media (max-width: 800px) { .project:nth-of-type(even) .project-media { order: 0; } }

.project-media {
  min-height: 460px;
  position: relative;
  background: #101010;   
}

.project-media img,
.project-media .img-missing {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   
  border-radius: 0;
}

.project-media .video-wrap {
  position: absolute;
  inset: 0;
  padding-top: 0;
}

@media (max-width: 800px) {
  .project-media { min-height: 0; padding-top: 85%; }
}

.project-body {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.project-date {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.project h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.35;
}

.project-body p { color: #444; }



.tattoo-page {
  
  background:
    linear-gradient(rgba(250,250,250,.92), rgba(250,250,250,.92)),
    url('../images/טקסטים\ מהמחברת/20230903_164251_edited_edited.jpg') center/620px repeat;
}

.tattoo-gallery {
  display: flex;
  overflow-x: auto;
  gap: 4px;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.tattoo-gallery img {
  height: 380px;
  width: auto;
  flex-shrink: 0;
  scroll-snap-align: start;
  object-fit: cover;
}

.tattoo-cta {
  text-align: center;
  margin-top: 60px;
  background: #f4f2ee;
  padding: 44px 24px;
  border-radius: 8px;
}

.tattoo-cta h2 { font-size: 1.6rem; margin-bottom: 14px; }

.tattoo-cta ul { list-style: none; margin: 12px 0 18px; }

.tattoo-cta .email-link {
  font-weight: 700;
  color: var(--red);
  font-size: 1.2rem;
}



.news-slider {
  position: relative;
  background: var(--dark);
  color: var(--text-light);
  overflow: hidden;
  min-height: 70vh;
}

.slide {
  display: none;
  position: relative;
  min-height: 70vh;
  align-items: flex-end;
}

.slide.active { display: flex; }

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 8vw 60px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  width: 100%;
}

.slide-content h2 {
  font-family: var(--font-hand);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.slide-content .btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 10px 26px;
  margin-top: 18px;
  transition: all .2s;
}

.slide-content .btn:hover { background: var(--red); border-color: var(--red); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 10px 18px;
  opacity: .7;
}

.slider-arrow:hover { opacity: 1; }

.slider-arrow.prev { right: 6px; }
.slider-arrow.next { left: 6px; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}

.slider-dots button.active { background: #fff; }



.contact-hero { text-align: center; padding: 60px 20px 30px; }

.contact-hero h1 { font-size: 2.4rem; }

.contact-body {
  background: #eceae6;
  padding: 60px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 800px) { .contact-body { grid-template-columns: 1fr; } }

.contact-portrait {
  border-radius: 50%;
  width: min(500px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.contact-form .full { grid-column: 1 / -1; }

@media (max-width: 700px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full { grid-column: auto; }
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #999;
  background: transparent;
  padding: 8px 2px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}

.contact-form textarea { min-height: 90px; resize: vertical; }

.contact-form button {
  background: #3e6a78;
  color: #fff;
  border: none;
  padding: 12px 44px;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-body);
  grid-column: 1 / -1;
  justify-self: end;   /* בצד שמאל (RTL) */
}

.contact-form button:hover { background: var(--red); }

.form-success {
  grid-column: 1 / -1;
  color: var(--red);
  font-weight: 700;
  display: none;
}

.form-success.show { display: block; }



.grave-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}

.grave-section h2 {
  font-family: var(--font-hand);
  color: var(--red);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.grave-section p { margin-bottom: 24px; }

.grave-map {
  position: relative;
  padding-top: 52%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.grave-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.grave-nav-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-weight: 700;
  border-bottom: 1px solid var(--red);
}



.footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding: 44px 20px 30px;
}

.footer h4 {
  font-family: var(--font-hand);
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.footer .socials { justify-content: center; }

.footer .footer-info {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--grey);
}

.footer .footer-info a { color: var(--red); }



.tattoo-gallery .img-missing {
  height: 380px;
  min-width: 220px;
  flex-shrink: 0;
}

.img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(45deg, #eee, #eee 12px, #e0e0e0 12px, #e0e0e0 24px);
  color: #555;
  border: 2px dashed #aaa;
  font-size: 0.85rem;
  padding: 20px;
  min-height: 180px;
  width: 100%;
  height: 100%;
}



.tattoo-item {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
}

.tattoo-item img {
  height: 380px;
  width: auto;
  object-fit: cover;
  transition: transform .25s, filter .25s;
}

.tattoo-item:hover img { transform: scale(1.03); filter: brightness(1.05); }


.tattoo-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  padding: 26px 12px 10px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.tattoo-item:hover::after { opacity: 1; }


.tattoo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);   /* כהה מספיק כדי שהסיפור יהיה קריא */
  backdrop-filter: blur(6px);    /* מטשטש את הדף מאחור - אפס הסחות דעת */
  -webkit-backdrop-filter: blur(6px);
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tattoo-lightbox.open { display: flex; }

.tattoo-lightbox-inner {
  display: grid;
  grid-template-columns: 300px 1fr;   
  gap: 28px;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
}

.tattoo-story {
  color: #fff;
  text-align: right;
  overflow-y: auto;
  max-height: 80vh;
  padding-left: 6px;
}

.tattoo-story h3 {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--red);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.tattoo-story p { white-space: pre-line; font-size: 0.98rem; line-height: 1.8; }

.tattoo-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.tattoo-photo img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: tattooZoom .3s ease;
}

@keyframes tattooZoom {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.tattoo-lightbox .close-lightbox {
  position: absolute;
  top: 18px;
  left: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: .8;
}

.tattoo-lightbox .close-lightbox:hover { opacity: 1; }

@media (max-width: 800px) {
  /* כל החלונית נגללת - כדי שאפשר יהיה לקרוא סיפורים ארוכים עד הסוף */
  .tattoo-lightbox {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 64px 16px 48px;
  }
  .tattoo-lightbox-inner {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
    align-items: start;
  }
  .tattoo-story { max-height: none; overflow: visible; order: 2; padding-bottom: 10px; }
  .tattoo-photo { max-height: none; }
  .tattoo-photo img { max-height: 55vh; }
  /* כפתור הסגירה תמיד גלוי, גם באמצע גלילה */
  .tattoo-lightbox .close-lightbox {
    position: fixed;
    top: 12px;
    left: 14px;
    background: rgba(0,0,0,.6);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 1;
    z-index: 10;
  }
}



.bio-photo {
  float: none;
  width: min(560px, 100%);
  margin: 26px auto;
}


.bio-story h2, .timeline { clear: both; }

.timeline-item::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 700px) {
  .bio-photo { width: 100%; max-width: 420px; margin: 18px auto; }
}

.bio-photo img,
.bio-photo .img-missing {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
  width: 100%;
}

.bio-photo figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 8px;
}


.timeline .bio-photo { width: min(560px, 100%); }



.project-link {
  display: inline-block;
  margin-top: 30px;
  align-self: center;
  background: var(--red);
  color: #fff;
  padding: 9px 30px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: background .2s, transform .2s;
}

.project-link:hover { background: var(--red-dark); transform: translateY(-2px); }



.lyric-modal-box.two-col {
  max-width: 1040px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;   
}

.lyric-text-side {
  padding: 44px 40px;
  overflow-y: auto;
  max-height: 85vh;
}

.lyric-text-side h3 {
  font-family: var(--font-numi);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  font-weight: normal;
  color: var(--text-dark);
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 6px;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.lyric-credits {
  text-align: center;
  font-size: 9pt;
  color: #555;
  margin-bottom: 22px;
  white-space: pre-line;
}

.lyric-text-side .lyrics-text {
  white-space: pre-line;
  text-align: right;
  font-size: 10.5pt;      /* כדי שהשורות לא ייחתכו */
  line-height: 1.85;
  font-weight: 700;
}

.lyric-credits { font-weight: 400; }

.lyric-notebook {
  background: #f2f0ec;
  display: flex;
  align-items: stretch;
}

.lyric-notebook img,
.lyric-notebook .img-missing {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;           /* כל התמונה נראית - בלי חיתוך */
  object-position: center;
  cursor: zoom-in;
}


/* מודאל בלי צילום מחברת (שירי חמרמורת) - עמודה אחת */
.lyric-modal-box.two-col.no-notebook {
  grid-template-columns: 1fr;
  max-width: 660px;
}

.lyric-modal-box.no-notebook .lyric-notebook { display: none; }


/* רקע עטיפת האלבום מאחורי הטקסט במודאל */
body.songlyrics-page .lyric-text-side,
body.album-rockstar .lyric-text-side {
  background:
    linear-gradient(rgba(255,255,255,.80), rgba(255,255,255,.80)),
    url('../images/גרפיקות/רוקסטאר כפרה-s.jpg') center top / cover;
}

body.album-hamarmoret .lyric-text-side {
  background:
    linear-gradient(rgba(255,255,255,.78), rgba(255,255,255,.78)),
    url('../images/גרפיקות/נומי - חמרמורת_עטיפה.JPG') center top / cover;
}

@media (max-width: 800px) {
  .lyric-modal-box.two-col { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .lyric-text-side { max-height: none; padding: 32px 22px; }
  .lyric-notebook img, .lyric-notebook .img-missing { max-height: 45vh; }
}



.album-cover {
  max-width: 340px;
  margin: 26px auto 10px;
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}



.carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.car-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.car-slide.active { display: block; }

.car-slide img,
.car-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;   
}

.car-slide video { object-fit: contain; background: #000; }

.carousel .car-prev,
.carousel .car-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  font-size: 1.7rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}

.carousel .car-prev:hover,
.carousel .car-next:hover { background: var(--red); }

.carousel .car-prev { right: 10px; }
.carousel .car-next { left: 10px; }

.carousel .car-counter {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 5;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 999px;
  direction: ltr;
}





.yt-facade, .vid-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(184,0,24,.18), transparent 65%),
    linear-gradient(135deg, #181818, #0b0b0b);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.yt-facade .yt-play, .vid-facade .yt-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5px;
  box-shadow: 0 10px 34px rgba(184,0,24,.45);
  transition: transform .2s, box-shadow .2s;
}

.yt-facade:hover .yt-play, .vid-facade:hover .yt-play {
  transform: scale(1.12);
  box-shadow: 0 14px 44px rgba(184,0,24,.65);
}

.yt-facade .yt-label, .vid-facade .yt-label {
  color: #ddd;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.car-slide iframe.yt-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



body.lifesteps-page {
  
  background:
    linear-gradient(rgba(250,250,250,.25), rgba(250,250,250,.25)),
    url('../images/תמונות נועם/Marble Surface_edited.jpg') center/cover fixed no-repeat,
    var(--light);
}

body.contact-page {
  background:
    linear-gradient(rgba(250,250,250,.25), rgba(250,250,250,.25)),
    url('../images/תמונות נועם/Marble Surface_edited.jpg') center/cover fixed no-repeat,
    var(--light);
}

body.songlyrics-page {

  background:
    linear-gradient(rgba(250,250,250,.92), rgba(250,250,250,.92)),
    url('../images/טקסטים מהמחברת/20230903_164251_edited_edited.jpg') center/620px repeat;
}


/* רקע כתב יד "רוקסטאר" מתחת להכל (כשקובץ הדרייב יתווסף - הוא יעלה מעל) */
body.album-rockstar {
  background:
    linear-gradient(rgba(250,250,250,.9), rgba(250,250,250,.9)),
    url('../images/רקע רוקסטאר כתב יד.jpg') center/620px repeat;
}

body.album-hamarmoret {
  background:
    linear-gradient(rgba(250,250,250,.9), rgba(250,250,250,.9)),
    url('../images/טקסטים מהמחברת/20230903_164251_edited_edited.jpg') center/620px repeat;
}


body.projects-page {
  background:
    linear-gradient(rgba(250,250,250,.25), rgba(250,250,250,.25)),
    url('../images/תמונות נועם/Marble Surface_edited.jpg') center/cover fixed no-repeat,
    var(--light);
}



.album-mini {
  max-width: 190px;
  margin: 0 auto 34px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.img-missing.album-mini {
  max-width: 190px;
  min-height: 150px;
  margin: 0 auto 34px;
}



.footer-logo {
  height: 64px;
  width: auto;
  margin: 0 auto 10px;
}



.quote-section {
  background: #0d0d0d;   
}


.quote-credit {
  font-family: var(--font-numi);
  letter-spacing: 0.06em;
  word-spacing: 0.25em;
  font-size: 1.1rem;
  color: var(--red);
  max-width: 760px;
  margin: 16px auto 0;
  text-align: left;
}


.quote-logo {
  max-width: 320px;
  margin: 44px auto 0;
}



.car-slide::before,
.project-media.single-media::before {
  content: "";
  position: absolute;
  inset: -24px;
  background-image: var(--slide-bg, none);
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(.72) saturate(1.1);
  z-index: 0;
}

.car-slide img,
.car-slide video,
.car-slide .yt-facade,
.car-slide .vid-facade,
.project-media.single-media > img {
  position: absolute;
  inset: 0;
  z-index: 1;
}


/* לייטבוקס גלריה במסך מלא (פרוייקטים) */
.project-media img { cursor: zoom-in; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.open { display: flex; }

.gallery-lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  animation: tattooZoom .25s ease;
}

.gallery-lightbox .glb-prev,
.gallery-lightbox .glb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  z-index: 2;
}

.gallery-lightbox .glb-prev:hover,
.gallery-lightbox .glb-next:hover { background: var(--red); }

.gallery-lightbox .glb-prev { right: 18px; }
.gallery-lightbox .glb-next { left: 18px; }

.gallery-lightbox .glb-close {
  position: absolute;
  top: 16px;
  left: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: .85;
  z-index: 2;
}

.gallery-lightbox .glb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0,0,0,.55);
  font-size: 0.85rem;
  padding: 3px 14px;
  border-radius: 999px;
  direction: ltr;
}

@media (max-width: 600px) {
  .gallery-lightbox .glb-prev { right: 6px; }
  .gallery-lightbox .glb-next { left: 6px; }
  .gallery-lightbox .glb-prev, .gallery-lightbox .glb-next { width: 42px; height: 42px; font-size: 1.5rem; }
}

/* ============================================================
   תיקונים - סבב אחרון
   ============================================================ */

/* ---------- צרו קשר: לוגו "רוקסטאר, כפרה" ברקע אזור מילוי הפרטים ----------
   הלוגו ממורכז על הטופס עצמו (ולא על כל הסקשן), כך שרואים אותו בשלמותו
   ולא מוסתר מתחת לתמונה. שקוף מאוד כדי לא להפריע לקריאה. */

.contact-form { position: relative; }

.contact-form::before {
  content: "";
  position: absolute;
  inset: -30px -20px;
  background: url('../images/גרפיקות/עותק של Stiker png_edited.png') center/contain no-repeat;
  opacity: .10;
  pointer-events: none;
  z-index: 0;
}

.contact-form > * { position: relative; z-index: 1; }

/* ---------- דפי אלבומים: חלוקה שווה לכל השירים ----------
   כל מלבן שיר באותו גובה בדיוק (הקרדיטים עברו לתוך חלונית המילים) */

body.album-page .track-media { min-height: 320px; }

body.album-page .track-info {
  min-height: 320px;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 800px) {
  body.album-page .track-info { min-height: 0; padding: 26px 22px; }
}

/* קווי הפרדה בין השירים (על גבי רקע המחברת) */
body.album-page .track { border-top: 1px solid #d9d5cd; }
body.album-page .track:last-of-type { border-bottom: 1px solid #d9d5cd; }

/* ---------- חמרמורת: עטיפת האלבום ברקע המלל (פחות שקוף) ---------- */
body.album-hamarmoret .track {
  background:
    linear-gradient(rgba(255,255,255,.84), rgba(255,255,255,.84)),
    url('../images/גרפיקות/נומי - חמרמורת_עטיפה.JPG') center/cover;
}

/* ---------- רוקסטאר: רקע המחברת מתחת להכל, מלבני המלל לבנים ---------- */
body.album-rockstar .track { background: rgba(255,255,255,.95); }

/* ---------- כפתור זום על צילום המחברת + מציג תמונה מלא מסך ---------- */

.lyric-notebook { position: relative; }

.nb-zoom {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.62);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}

.nb-zoom:hover { background: var(--red); transform: scale(1.08); }

/* מציג התמונה במסך מלא */
.nb-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 700;
  display: none;
}

.nb-viewer.open { display: block; }

.nb-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* מצב ראשוני: התמונה כולה נכנסת למסך */
.nb-scroll img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
}

/* אחרי לחיצה: גודל מקורי, אפשר לגלול ולקרוא כל מילה */
.nb-viewer.zoomed .nb-scroll { align-items: flex-start; justify-content: flex-start; }

.nb-viewer.zoomed .nb-scroll img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  cursor: zoom-out;
}

.nb-viewer .nb-close {
  position: fixed;
  top: 14px;
  left: 16px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.nb-viewer .nb-hint {
  position: fixed;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: #bbb;
  font-size: 0.85rem;
  pointer-events: none;
}

/* ---------- דף הבית: גודל תמונת ההירו במחשב ----------
   התמונה בדיוק בגודל שביקשת: 1336x951 פיקסלים, בלי הקטנה גם אם היא גדולה.
   הסקשן מתארך בהתאם כדי להכיל אותה במלואה.
   במובייל לא נוגעים: שם התמונה נשארת מלאה כמו שהייתה. */
@media (min-width: 861px) {
  .hero { min-height: 951px; }

  /* עוטף התמונה - לא משפיע על הפריסה */
  .hero picture { display: contents; }

  .hero-bg {
    top: 0;
    bottom: auto;
    right: 0;
    left: auto;
    width: 1336px;
    max-width: none;       /* לא להקטין - הגודל נשמר כמו שהוא */
    height: 951px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    transform: none;
  }
}

/* ---------- דף הבית: הכיתוב גלוי מיד בפתיחה (מחשב) ----------
   הסקשן גבוה מהמסך (951px), אז אם הכיתוב צמוד לתחתית הוא יורד מתחת לקיפול.
   מעלים אותו כך שייראה מיד בכניסה לאתר, בכל גובה מסך. */
@media (min-width: 861px) {
  .hero { align-items: center; }
  .hero-content { padding-bottom: 40px; }
}

/* ---------- מובייל: הנאבר מכסה את קצה התמונה ----------
   בדף הבית התמונה מתחילה 97px מלמעלה (ההיסט המקורי שלה), ולכן עם נאבר
   של 60px נשארה רצועה שחשפה את קו החיתוך. מורידים אותו מעט כדי לכסות.
   התמונה עצמה לא זזה - נשארת בדיוק כמו שהייתה. */
@media (max-width: 860px) {
  body.home .site-header { height: 100px; }
  body.home .hero { padding-top: 100px; }
  body.home .main-nav {
    top: 100px;
    max-height: calc(100vh - 100px);
  }
}


/* נגן וידאו מקומי בתוך הקרוסלה */
.car-slide video.local-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
