/* ==== GLOBAL RESET & FONT ==== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
}

/* ==== HEADER (header.php) ==== */

.page-header {
  background: #ffffff;
  padding: 20px 20px 10px;
  border-bottom: 1px solid #ddd;
}

.header-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header-phone {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.header-logo img {
  height: 70px;   /* controls your logo size everywhere */
  width: auto;
  display: block;
}

.header-contact a {
  color: #FFA500;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.header-contact a:hover {
  text-decoration: underline;
}

.header-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 8px 0 0;
  color: #000;
}

/* small screen tweaks */
@media (max-width: 600px) {
  .header-row {
    flex-direction: column;
  }

  .header-logo img {
    height: 50px;
  }

  .header-title {
    font-size: 2.2rem;
  }
}

/* ==== GENERIC PAGE WRAPPER ==== */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 16px 60px;
}

/* ==== FOOTER (footer.php) ==== */

.site-footer {
  background-color: #00143d;
  color: #ffffff;
  text-align: center;
  padding: 25px 20px 30px;
  font-size: 0.95rem;
  margin-top: 0;
}

.footer-company {
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.footer-copy {
  opacity: 0.8;
  font-size: 0.85rem;
}

/* ==== TOP BAR ABOVE HERO (INDEX.PHP) ==== */

.top-bar {
  width: 100%;
  background-color: #00143d;   /* dark blue to match footer */
  color: #ffffff;
  padding: 6px 16px;
  font-size: 0.9rem;
}

.top-contact {
  max-width: 1100px;
  margin: 0 auto;
  text-align: right;
}

.top-contact a {
  color: #FFA500;
  text-decoration: none;
  font-weight: 600;
}

.top-contact a:hover {
  text-decoration: underline;
}

/* ==== SUCCESS MESSAGE BAR UNDER TOP BAR ==== */

.sent-msg {
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: center;
  padding: 10px 16px;
  margin: 0;
  background-color: #e6ffe6;      /* light green */
  border-bottom: 1px solid #c8e6c9;
  font-size: 0.95rem;
  color: #1b5e20;
}

/* Make sure the hero has clean spacing below the bars */
.hero {
  margin: 0;
  padding-top: 20px;               /* space between message and logo section */
}
