:root {
  --primary-color: #007bff;
  --dark-blue: #0A142D;
  --light-blue: #1C2E4A;
  --white: #ffffff;
  --gray: #ccc;
  --text-color: #f0f0f0;
  --live-red: #E74C3C;
  --fair-green: #2ECC71;
  --border-radius: 8px;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body {
  font-family: 'Heebo' !important;
  background-color: var(--dark-blue);
  color: var(--text-color);
  margin: 0;
  padding-top: 56px; /* להתאמה ל-navbar מקובע */
  direction: rtl;
}

.navbar {
  background-color: var(--dark-blue) !important;
  border-bottom: 1px solid var(--light-blue);
}

a.navbar-brand {
    padding-bottom: 0;
    padding-top: 0;
	margin-right: 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  text-align: right;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.hero-section {
  position: relative;
  height: 375px;
  background-image: url('../vendor/media/dlila.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-button {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: var(--white);
  color: var(--dark-blue);
}

.forecast-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.forecast-card {
  background-color: var(--light-blue);
  color: var(--text-color);
  border-radius: var(--border-radius);
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--box-shadow);
  text-align: center;
  flex-grow: 1;
  max-width: 250px;
  margin-bottom: 13px;
}

.forecast-card.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.forecast-time {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.forecast-status {
  font-size: 1rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
}

.forecast-label {
  background-color: var(--fair-green);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.forecast-wave {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 5px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 5px;
}

.live-cameras-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}

.camera-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  background-color: var(--light-blue);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.camera-card:hover {
  transform: translateY(-5px);
}

.camera-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: top;
}

.camera-status {
  position: absolute;
  top: 25px;
  right: 10px;
  background-color: var(--live-red);
  color: var(--white);
  padding: 5px 10px;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 700;
}

.camera-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  color: var(--white);
  padding: 15px;
}

.camera-title-overlay h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

footer {
  background-color: var(--dark-blue);
  padding: 11px 0 0 0;
  border-top: 1px solid var(--light-blue);
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 20px;
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: var(--primary-color);
}

.forecast-container a {
	color: #fff;
    text-decoration: none;
}

.forecast-link-container:hover {
  text-decoration: none;
}


.forecast-container + .google-auto-placed {
  display: none !important;
}



