/* --------------------------------------------------
   RESET / BASIC STYLES
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 18px;              /* Increased base font size for better readability on desktop */
  line-height: 1.8;             /* Increased line-height for more open, readable text */
  background-color: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Paragraph Spacing */
p {
  margin-bottom: 1.5em;         /* Extra space between paragraphs */
}

/* Headings Spacing */
h2, h3, h4, h5, h6 {
  margin-bottom: 1em;
}

/* Links - Highlighted for better visibility */
a {
  color: #007acc;             /* A clear blue for clickable links */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  width: 40px;
  height: auto;
}

.site-title {
  font-weight: bold;
  font-size: 1.3rem;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  position: relative;
}

nav li {
  position: relative;
}

nav li a {
  padding: 5px 0;
  font-weight: 500;
}

/* Add a visual cue for dropdown items */
nav li.dropdown > a::after {
  content: " ▼";
  font-size: 0.8rem;
  margin-left: 4px;
}

/* Submenu (Dropdown) Base - hidden by default */
nav li ul {
  display: none;
  position: absolute;
  top: 100%;             /* Sits just below the parent li */
  left: 0;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 0;
  min-width: 200px;
  z-index: 200;
}

/* Display dropdown on hover (desktop) */
nav li:hover > ul {
  display: flex;
}

/* Submenu links styling */
nav li ul li {
  margin: 0;
  padding: 5px 15px;
}

/* Hamburger (for mobile) */
.hamburger {
  display: none;          /* Hidden on desktop */
  cursor: pointer;
  font-size: 1.5rem;
  user-select: none;
}

/* --------------------------------------------------
   MAIN CONTENT
-------------------------------------------------- */
main {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
}

/* Hero images (full-width images) */
.hero-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: grayscale(100%);
  object-fit: cover;
}

/* Section box for content separation */
.section-box {
  margin-bottom: 20px;
}

/* Image sizing for specific pages */
/* Default (desktop): images display at 70% width */
.contact-hero-image,
.about-hero-image {
  display: block;
  margin: 20px auto;
  width: 70%;           /* Increased size on desktop */
  height: auto;
  filter: grayscale(100%);
  border-radius: 4px;
}

/* --------------------------------------------------
   CTA BUTTON
-------------------------------------------------- */
.cta-button {
  display: inline-block;
  background-color: #007acc;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #005ea3;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  margin-top: auto;
  width: 100%;
  border-top: 1px solid #ccc;
  background-color: #fff;
  padding: 20px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  margin-bottom: 10px;
}

.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  margin: 0 5px;
}

.footer-logo {
  width: 20px;
  height: auto;
  vertical-align: middle;
}

.small-text {
  font-size: 0.85rem;
  color: #555;
}

/* --------------------------------------------------
   RESPONSIVE: MOBILE STYLES
-------------------------------------------------- */
@media (max-width: 768px) {
  /* Reduce base font size for mobile if needed (optional) */
  body {
    font-size: 16px;
  }

  /* Hamburger: show on mobile */
  .hamburger {
    display: block;
  }

  /* Navigation: full width, vertical layout */
  nav ul {
    position: static;
    flex-direction: column;
    gap: 5px;
    display: none;  /* Hidden until toggled */
    border: none;
  }
  nav ul.nav-open {
    display: flex;
  }
  nav li ul {
    position: static;
    display: none;
    border: none;
    padding: 0;
    min-width: unset;
  }
  nav li:hover > ul,
  nav li ul.nav-open {
    display: flex;
    flex-direction: column;
  }
  nav li ul li {
    margin: 5px 0 0 10px;
  }

  .header-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  main {
    margin: 20px auto;
  }

  /* On mobile, allow hero images to use full width */
  .contact-hero-image,
  .about-hero-image {
    width: 100%;
  }

}

/* --------------------------------------------------
   Separate pricing items correctly
-------------------------------------------------- */

    /* Additional spacing for pricing items */
    .pricing-item {
      margin-bottom: 2em;  /* Extra space between items */
    }