/* איפוס ו-Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Heebo', Arial, sans-serif;
  direction: rtl;
}

/* Header מודרני */
.site-header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* לוגו */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2D1B2E;
  text-decoration: none;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: #8B1538;
  transform: rotate(45deg);
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 10px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* תפריט ניווט */
.main-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

.main-nav a {
  color: #2D1B2E;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #8B1538;
}

/* אזור משתמש */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn, .cart-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #2D1B2E;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.search-btn:hover, .cart-btn:hover {
  background: #f5f5f5;
}

.signin-btn {
  padding: 10px 20px;
  border: 1px solid #e5e5e5;
  background: white;
  color: #2D1B2E;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.signin-btn:hover {
  background: #f5f5f5;
}

.cart-btn {
  background: #8B1538;
  color: white;
}

.cart-btn:hover {
  background: #6B0F2A;
}

/* Hero Section */
.hero-section {
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('https://images.unsplash.com/photo-1586370434639-0fe43b2d32d6?ixlib=rb-4.0.3') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 800px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-btn {
  background: #dc3545;
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #c82333;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .header-container {
    padding: 0 15px;
  }
}