body {
  font-family: 'Assistant', sans-serif;
  margin: 0;
  background-color: #f7f9fc;
  color: #1a1a1a;
  transition: direction 0.3s ease;
}

header {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #004e7c;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  color: #666;
}

.language-selector {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.language-selector select {
  padding: 0.3rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-around;
  margin-top: 2rem;
}

.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  flex: 1 1 250px;
  text-align: center;
}

.feature h3 {
  color: #004e7c;
}

/* Contact Form Styling */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.contact form label {
  font-weight: 600;
}

.contact form input,
.contact form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact form button {
  background-color: #004e7c;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact form button:hover {
  background-color: #00365a;
}

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #e0e0e0;
  background-color: #fff;
  margin-top: 3rem;
}

:root {
  --primary: #0a2540;
  --accent: #c9a86b;
  --bg: #f5f6f8;
  --text-dark: #1a1a1a;
  --text-light: #888;
  --white: #ffffff;
}

body {
  font-family: 'Assistant', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.7;
}

header {
  background: linear-gradient(to right, var(--primary), #121e2b);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
}

header h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

header p {
  font-size: 1.2rem;
  color: #cbd6e2;
  max-width: 600px;
  margin: 0 auto;
}

.language-selector {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.language-selector select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid #ccc;
}

.feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.contact form button {
  background: linear-gradient(to right, #c9a86b, #b1884d);
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.contact form button:hover {
  background: linear-gradient(to right, #d2b47e, #a67642);
}

footer {
  background-color: var(--primary);
  color: var(--white);
}

.section, .contact, footer {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: block;
  background-image: url('images/hero.jpg'); /* החלף בשם הקובץ שלך */
  background-size: contain;  /* שומר על כל התמונה בלי חיתוך */
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  opacity: 0.3; /* אפשר לשנות או להסיר */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 1rem;
  color: #fff;
}
