body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.site-logo {
  height: 100px; /* or any size you prefer */
  width: auto;
}
header,
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 30px;
}


/* Targets the Facebook section in your header */
.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Makes the Facebook icon bigger */
.social-icons img {
  width: 48px;
  height: 48px;
}

/* Improves spacing and readability */
.contact-info p {
  margin: 0;
  font-size: 14px;
  text-align: left;
}

.contact-info a {
  color: #663399;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #000;
}

.hot-items {
  display: flex;
  justify-content: space-around; /* or space-between */
  align-items: flex-start;
  gap: 10px; /* space between items */
  text-align: center;
  margin-top: 20px;
  flex-wrap: wrap; /* ensures responsiveness */
}

.machine-item {
  max-width: 300px;
  flex: 1;
}

.machine-item img {
  max-width: 100%;
  height: auto;
}

.machine-item p {
  margin-top: 10px;
  white-space: normal;
}

.machine-item p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.product {
  text-align: center;
  width: 280px;
  flex: 1 1 280px;
}

.image-box {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background-color: white; /* optional, for contrast */
}

.image-box img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.product a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 12px;
}


.product a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

.contact-info {
  text-align: left;
  font-size: 14px;
}

.banner-section {
  background-image: url('banner.png'); /* <- Check this file name! */
  background-size: cover;
  background-position: center;
min-height: 300px;
  padding: 60px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  background-color: rgba(206, 196, 196, 0.5) ;
  padding: 20px 40px;
  color: black;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
}

.pretty-text {
  font-family: 'Georgia', 'Times New Roman', serif; /* Elegant serif font */
  font-size: 2rem; /* Smaller text */
  color: rgb(10, 10, 26); /* Soft dark color */
  line-height: 1.6;
  background-color: transparent; /* Light translucent background */
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px; 
  width: 100%;
  background-color: #eee;
  font-size: 18px; /* increased font size */
  line-height: 1; /* keeps text tighter vertically */
  text-align: center;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.top-bar span {
  flex: 1;
}

.top-bar span:nth-child(2) {
  text-align: center;
}

.top-bar span:first-child {
  text-align: left;
}

.top-bar span:last-child {
  text-align: right;
}

.hero {
  background: url('hero-image.jpg') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.about-section {
  width: 100%;
  background: url('your-image.jpg') center center / cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin: 0;
  padding: 0;
}

.about-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 10px;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 18px;
  margin: 0;
}

.products {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product {
  width: 200px;
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
}

/* Nav styles */
.nav-bar {
  background-color: #f5f5f5;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.nav-bar a,
.nav-inner a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-bar a:hover,
.nav-inner a:hover {
  background-color: #e0e0e0;
  color: #0077cc;
}

.nav-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.nav-toggle,
.nav-toggle-label {
  display: none;
}

.nav-inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer {
  background-color: #f5f5f5;
  padding: 40px 20px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ccc;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
  text-align: center;
}

.footer-hours h3,
.footer-links a {
  color: #333;
  font-weight: bold;
}

.footer-hours h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #555;
  font-size: 14px;
}

.footer-hours li {
  margin: 6px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0077cc;
}

.footer-legal {
  margin-top: 20px;
}

.footer-legal p {
  margin: 6px 0;
  line-height: 1.6;
}

/* Mobile responsiveness */
/* ✅ Universal mobile tweaks for screens <= 768px */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  header,
  .header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .site-logo {
    height: 80px;
  }

  .top-bar {
    flex-direction: column;
    font-size: 14px;
    padding: 10px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
  }

  .product-row {
    flex-direction: column;
    align-items: center;
  }

  .product {
    width: 90%;
    max-width: 320px;
  }

  .banner-section {
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .banner-overlay {
    font-size: 24px;
    padding: 20px;
  }

  .pretty-text {
    font-size: 1.2rem;
    padding: 10px;
    margin: 10px auto;
  }

  .about-section {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
  }
  .site-footer {
    padding: 20px 10px; /* Reduce vertical padding */
  }

  .footer-top {
    gap: 20px; /* Reduce space between sections */
    margin-bottom: 10px; /* Shrink spacing before bottom legal text */
  }

  .footer-section {
    margin-bottom: 10px; /* Reduce spacing between sections */
  }

  .footer-legal {
    margin-top: 10px; /* Shrink space above legal text */
    font-size: 13px;
    line-height: 1.4;
  }

  .footer-legal p {
    margin: 4px 0;
  }
   .nav-toggle-label {
    display: block;
  }

  /* Hide nav links by default */
  .nav-inner {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: #f5f5f5;
    padding: 10px 0;
    border-radius: 5px;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* Show nav links when checkbox checked */
  .nav-toggle:checked + .nav-toggle-label + .nav-bar .nav-inner {
    display: flex;
  }
}