/* ---------- HOMEPAGE STYLES ---------- */

/* Body and base font */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #2C3E50;
  line-height: 1.6;
}

p {
   font-size: 16pt;
}

/* ---------- Header ---------- */
/* Header */
.intro {
  background-color: #2C3E50; /* dark header */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;         /* center elements horizontally */
  border-radius: 0 0 10px 10px;  
  padding: 40px 20px 10px 20px;
  position: relative; /* enables absolute positioning inside */
}

.intro-header-content {
  margin-top: 20px;
}

.intro-phone {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 2rem;
  font-weight: bold;
}

.intro-phone a {
  color: #ffd600;
  text-decoration: none;
}

.intro-phone a:hover {
  color: #f5d742;
  opacity: 0.85;
}


.intro h1 {
   font-size: 38px;
}

.intro p {
   font-size: 24px;
   margin-top: 1em;
}

/* Flex container for H1 + logo */
.intro-header-content {
  display: flex;
  align-items: center;
  justify-content: center;    /* center H1 + logo horizontally */
  gap: 50px;                  /* increased from 40px to 50px for bigger logo */
  flex-wrap: wrap;            /* wrap on small screens */
}

/* Logo inside header */
.intro-logo {
  height: 100px;        /* increased from 60px */
  max-width: 300px;    /* keeps aspect ratio correct */
  margin-top: -8px;
  object-fit: contain;
}

/* ===== Header hamburger menu ===== */
.intro {
  position: relative;
}

.menu-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  margin: 2.5px 0;
  border-radius: 2px;
}

.menu {
  position: absolute;
  top: 65px;
  right: 20px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: none;
  z-index: 9999;
}

.menu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #2C3E50;
  font-weight: 600;
  border-radius: 8px;
}

.menu a:hover {
  background: rgba(69, 81, 196, 0.10);
}

/* Full-width Reviews bar */
.page-callout--blue {
  display: block;
  width: 70%;
  background-color: #2C3E50;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: normal;
  text-align: center;
  box-sizing: border-box;
  margin: 20px auto;
}

* ===============================
   Orange Buttons
   =============================== */
   
/* Header CTA button */
.intro-cta {
  display: inline-block;
  margin: 20px auto 20px auto; /* centers button and adds spacing from header content */	
}

a.intro-cta {
  background-color: #FF6600;
  color: #fff;
  padding: 12px 24px;
  font-size: 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s ease;
}

.intro-cta:hover {
  opacity: 0.85;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.secondary-cta {
  background-color: #FF6600;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .intro-header-content {
    flex-direction: column;
    gap: 15px;
  }
}



/* Reviews page helpers */

.reviews-subtitle{
  margin: 14px auto 0;
  max-width: 900px;
  font-size: 18px;
  opacity: 0.95;
}

.reviews-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
  width: 90%
}

@media (max-width: 780px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

.review{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px 16px 14px;
}

.review-top{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.review-name{
  font-weight: 800;
  font-size: 16px;
}

.review-stars{
  letter-spacing: 1px;
  font-size: 14px;
}

.review-meta{
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 10px;
}

.review-text{
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.reviews-footer-cta{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.reviews-footer-cta h2{
  margin: 0 0 8px;
}

.reviews-footer-cta p{
  margin: 0 auto 14px;
  max-width: 760px;
}

.card{
    margin: 24px auto 0;
    background: #fafafa;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 0 auto;
	width: 100%;
    }



/* ---------- Footer ---------- */
footer {
  background-color: #2C3E50;
  color: #fff;
  font-size: 16pt;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

@media (max-width: 640px) {
  footer a[href^="tel"] {
    color: #ffd600 !important;  /* orange */
  }
}
