body {
  font-family: "Arial", sans-serif;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

footer {
  background-color: #343a40;
  color: white;
}
/* Logo Styling */
header {
  margin-bottom: 20px;
}
header img {
  max-height: 80px; /* Increased maximum height for a bigger logo */
  width: auto; /* Ensures the aspect ratio is maintained */
  margin-left: auto; /* Aligns logo to the left */
}

header .btn-success {
  padding: 10px 20px;
  font-size: 1.1rem; /* Slightly larger button text */
  border-radius: 25px;
}

header .logo {
  width: 20%; /* Adjust the percentage as needed */
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Category Separation */
.category-section {
  margin: 60px 0; /* Adds more vertical spacing */
  padding: 20px;
  border: 2px dashed #117a8b; /* Creates a noticeable border */
  border-radius: 10px;
  background-color: #f8f9fa; /* Light background for contrast */
}

/* Category Heading */
.category-section h3 {
  text-align: center;
  font-size: 2rem; /* Larger heading font size */
  color: #117a8b; /* Eye-catching category title color */
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #117a8b; /* Line under the title */
}

/* Card Styling */
.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Button Styling */
.btn {
  margin: 5px 0;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
}

/* Fullscreen Button */
.btn-primary {
  background-color: #117a8b;
  border: none;
}

.btn-primary:hover {
  background-color: #0d6efd;
}

/* Order Now Button */
.btn-success {
  background-color: #28a745;
  border: none;
}

.btn-success:hover {
  background-color: #218838;
}
h1 {
  margin-top: 20px;
}
.hero-section {
  position: relative;
  background: url("https://israelprint.co.il/html/imgs/%D7%94%D7%9B%D7%99%20%D7%9E%D7%9E%D7%95%D7%AA%D7%92.jpg")
    center/cover no-repeat;
  height: 400px; /* Adjust as needed */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(
    250,
    250,
    250,
    0.8
  ); /* Black overlay with 50% opacity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}
