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

#wpadminbar {
  display: none;
}

:root {
  --color-dark: #0a0a0a;
  --color-darker: #050505;
  --color-gold: #b69733;
  --color-gold-hover: #867950;
  --color-dark-white: #c6cccc;
  --color-gray: #808080;
  --color-card: #2a2a2a;
  --color-background: #1a1a1a;
  --color-red: #822929;
  --font-heading: 'Playfair Display', serif;
  --font-body: sans-serif;
  --font-style-heading: "Poiret One", sans-serif;
  --font-card-title: "Amarante", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --text-font-size: 16px;

  --text-card-background: #2a2a2a;
  --gallery-card-background: #362c2c;

  --text-font-color: white;
  /*--card-title-color: */
  /*--page-title-color:*/

  --text-font-size: 16px;
  --card-title-font-size: 2.2rem;
  --card-title-mobile-font-size: 1.8rem;
  --page-title-font-size: 5rem;


  --text-font-family-he: "IBM Plex Sans Hebrew", sans-serif;
  --text-font-family-en: "Varela", sans-serif;
  --card-title-font-family-he: "Playpen Sans Hebrew", cursive;
  --card-title-font-family-en: "Rock salt", cursive;
  --page-title-font-family-he: "Secular One", sans-serif;
  --page-title-font-family-en: "Squada One", sans-serif;

}

body {
  background-color: var(--color-background);
  ;
  color: var(--color-dark-white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.rtl {
  direction: rtl;
  text-align: right;
}


.page-transition {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(3px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.page-transition.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* סקרול מודרני לכל האתר */
::-webkit-scrollbar {
  width: 20px;/
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
  border-radius: 10px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  width: 12px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FFA500 0%, #FF8C00 100%);
}

* {
  scrollbar-width: auto;
  scrollbar-color: var(--color-gold) transparent;
}


/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-dark-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.brand {
  margin: 0;
}

.brand .logo {
  color: var(--color-darker);
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand .logo img {
  width: 70px;
  height: auto;
  transition: all 0.3s ease;
  margin-top: 5px;
}

/* LOGO SCROLLED */
.site-header.scrolled .brand .logo {
  color: var(--color-gold);

}

.site-header.scrolled .brand .logo img {
  width: 50px;
  transform: translateY(-4px);
  margin-top: 10px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
}

.logo img:hover {
  color: var(--color-gold);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  font-family: "IBM Plex Sans Hebrew", sans-serif;

}

.nav-menu a {
  color: var(--color-darker);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .nav-link.is-active {
  color: var(--color-gold);
}

.nav-menu .nav-link.is-active::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;


  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--color-gold);
}

.lang-separator {
  color: var(--color-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-dark);
  transition: var(--transition);
}

/* רספונסיביות לנייד */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* מתחבא מחוץ למסך מצד שמאל */
    width: 250px;
    height: 100%;
    background-color: var(--color-dark-white);
    flex-direction: column;
    padding: 5rem 1rem;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
    /* נפתח מהצד השמאלי */
  }

  .mobile-menu-toggle {
    display: flex;
  }
}



/************************** ABOUT *****************************/
.about-content {
  /* existing styles... */
  opacity: 0;
  transform: translateY(30px) scale(0.995);
  transition: opacity 0.6s cubic-bezier(.22, .9, .35, 1), transform 0.6s cubic-bezier(.22, .9, .35, 1);
  will-change: opacity, transform;
  margin-top: 40px;
}

/* when in view */
.about-content.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* optional stagger for children (if you want) */
.about-content.in-view .about-text,
.about-content.in-view .cta-buttons {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: none;
}

.text-right .card-title{
    font-family: var(--card-title-font-family-he);
    
}

.text-right .about-text {
    font-family: var(--text-font-family-he);
}

/* ensure children start hidden if using stagger */
.about-text,
.cta-buttons {
  transform: translateY(8px);
}

.about-section {
  background: #1a1a1a;
  color: var(--color-dark-white);
  font-family: var(--text-font-family-en)
  overflow: hidden;
  margin: 100px auto;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.about-image {
  flex: 1 1 35%;
  position: relative;
  transform: translateY(0) rotate(0deg) scale(1);
  animation: float-image 5s ease-in-out infinite;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.image-line {
  position: absolute;
  right: -15px;
  top: 0;
  width: 6px;
  height: 100%;
  background: #d4af37;
  /* זהב חמים */
  border-radius: 3px;
}

.about-content {
  flex: 1 1 55%;
}

.text-frame {
  position: relative;
  border: 2px solid #a09662;
  padding: 40px;
  border-radius: 20px;
  background: var(--text-card-background);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  overflow: visible;
}


.about-content .frame-title {
  position: absolute;
  top: -97px;
  left: 15%;
  transform: translateX(-50%);
  padding: 0 15px;
  font-family: var(--text-font-family-en);
  font-weight: 700;
  font-size: 5rem;
  color: var(--color-red);
  text-transform: uppercase;
  z-index: 10;
}

.about-content h2 {
  font-family: var(--card-title-font-family-en);
  font-weight: 700;
  font-size: 4rem;
  margin: 20px;
  color: var(--color-gold);
  text-align: center;
}

.about-content .text-right {
  direction: rtl;
}

.about-text {
  font-family: var(--text-font-family-en);
  font-size: var(--text-font-size);
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--color-dark-white);
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1rem;
}

/* ספוטיפי */
.spotify-btn {
  background-color: var(--color-gold);
  ;
}

.spotify-btn:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px) scale(1.05);
}

/* יוטיוב */
.youtube-btn {
  background-color: var(--color-gold);
}

.youtube-btn:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px) scale(1.05);
}

/* אייקון בגודל אחיד */
.cta-btn i {
  font-size: 1.2rem;
}

.whatsappGroup {
  border: none;
  padding: 12px 18px;
  box-sizing: border-box;
  border-radius: 10px;
  background: transparent;
  display: block;
  width: auto;
  max-width: 100%;
  word-break: break-word;
}

/* אנימציה חיה על התמונה */
@keyframes float-image {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-15px) rotate(-1deg) scale(1.03);
  }

  50% {
    transform: translateY(10px) rotate(1deg) scale(1.05);
  }

  75% {
    transform: translateY(-5px) rotate(-0.5deg) scale(1.04);
  }
}

/* ריספונסיביות */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 0.5rem;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .about-section {
    padding: 60px 5px;
    margin: 50px auto;


  }

  .about-image,
  .about-content {
    flex: 1 1 100%;
    min-width: 0;
    margin: 0 auto;
    display: block;
  }

  .about-image {
    max-width: 320px;
    margin: 0 auto 12px auto;
    width: 100%;
    display: block;
  }

  .about-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }

  .about-content .frame-title {
    position: static;
    display: block;
    font-size: var(--page-title-mobile-font-size);
    margin-bottom: 12px;
    text-align: center;
    top: unset;
    left: unset;
    transform: none;
    padding: 0;
  }

  .about-content h2 {
    font-size: var(--card-title-mobile-font-size);
    margin: 10px 0;
    text-align: center;
  }

  .text-frame {
    padding: 18px 8px;
    font-size: 1rem;
  }

  .about-text {
    font-size: var(--text-font-size);
    margin-bottom: 18px;
    padding: 0 2px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 10px 20px;
  }
}