body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.site-logo {
  height: 100px; /* or any size you prefer */
  width: auto;
}
/* Header */
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 {
  text-align: left;
  font-size: 14px;
}

/* Contact Section */
.contact-map-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-map-section h2 {
  margin-bottom: 30px;
  font-size: 32px;
}

.contact-map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form,
.map-container {
  flex: 1 1 400px;
  max-width: 500px;
  width: 100%;
  background-color: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  resize: vertical;
}

.contact-form input {
  height: 40px;
}

.contact-form textarea {
  min-height: 100px;
  max-height: 200px;
  line-height: 1.4;
  font-family: inherit;
}

.contact-form button {
  display: block;
  margin: 10px auto 0 auto;
  background-color: #0077cc;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  border: none;
  aspect-ratio: 1 / 1;
}

/* Nav */
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 */
.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 */
.products {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product {
  width: 200px;
  text-align: center;
}

.product img {
  width: 100%;
  height: auto;
}

/* Nav Bar */
.nav-bar {
  background-color: #f5f5f5;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}

.nav-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nav-inner a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-inner a:hover {
  background-color: #e0e0e0;
  color: #0077cc;
}
.nav-toggle,
.nav-toggle-label {
  display: none;
}

.nav-inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ✅ Mobile Styles */
@media (max-width: 768px) {
  header,
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .contact-map-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .map-container {
    width: 95%;
    max-width: none;
    padding: 16px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 15px;
  }

  .products {
    flex-direction: column;
    align-items: center;
  }

  .about-section {
    height: auto;
    padding: 40px 20px;
  }

  .about-overlay {
    padding: 15px 20px;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section p {
    font-size: 16px;
  }

  .top-bar {
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
  }

  .contact-map-section h2 {
    font-size: 26px;
  }

  .contact-form button {
    width: 100%;
  }
}

.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 */
@media (max-width: 600px) {
    .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;
  }
}