/* ================================
   Reset בסיסי
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* ================================
   Header / Navigation
================================ */




.header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background-color: black;
  position: fixed;  /* <-- HEADER תמיד על המסך */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;   /* כדי להיות מעל כל תוכן אחר */
}

.header-desktop nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.header-desktop nav ul li {
  font-size: 25px;
}

.header-desktop nav ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-desktop nav ul li a:hover {
  filter: brightness(0) saturate(100%)
    invert(45%) sepia(45%) saturate(550%)
    hue-rotate(15deg) brightness(95%) contrast(95%);
}

.header-desktop .logo img {
  width: 120px;
  height: auto;
}

.header-mobile {
  display: none;
}


/* ================================
   Hero Section
================================ */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero.jpg') no-repeat center center/cover;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
}

/* ================================
   Portfolio Categories
================================ */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px;
}

.category-card {
    background-color: #1e1e1e;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    display: block; /* מכיוון שזה <a> */
    text-decoration: none;
    color: #ffffff;
}

.category-card:hover {
    transform: scale(1.05);
    background-color: #282828;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ================================
   Floating Contact Icons
================================ */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2000;
}

.floating-contact img {
    width: 60px;
    height: 60px;
    transition: 
        transform 0.3s ease,
        filter 0.3s ease;
}

.floating-contact img:hover {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%)
        invert(45%) sepia(45%) saturate(550%)
        hue-rotate(15deg) brightness(95%) contrast(95%);
}

/* ================================
   Footer
================================ */
footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
	margin-top: 150px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.social-icons .row {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: 
        transform 0.3s ease,
        filter 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%)
        invert(45%) sepia(45%) saturate(550%)
        hue-rotate(15deg) brightness(95%) contrast(95%);
}


:root {
    --font-audio: 'Cinzel', serif;
}

.track-title {
    font-family: var(--font-audio);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.artist-name {
    font-family: var(--font-audio);
    font-size: 1rem;
    opacity: 0.85;
}

.cat-name {
    font-family: var(--font-audio);
    font-style: italic;
}
