:root {
  --primary-color: #e86d48;
  --secondary-color: #505050;
  --text-dark: #272727;
  --text-light: #fff;
  --bg-light: #f5f5f5;
}

:root {
  --phone-number: "587-857-5131";
}

.phone::after {
  content: var(--phone-number);
}


body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #fff;
  color: var(--text-dark);
}

h1, h2, h3 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}

/* HERO */
.hero {
  background: #fff; /* only for nav */
}

.hero-banner {
  background: url('../images/hero-bg.jpg') no-repeat center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-content {
  text-align: center;
  padding: 60px 20px;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 2.1rem;
  color: var(--primary-color);
}

.hero-text-top{
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: -10px;
  text-shadow: 2px 2px 4px rgba(69,69,69,0.6); 
}

.hero-text-bottom{
  font-weight: 400;
}

.hero-bottom {
  display: flex;
  flex-wrap: wrap;      /* allow wrapping instead of overflowing */
  justify-content: center;
  color: darkgray;
  text-align: center;
  padding: 15px;
  gap: 40px;            /* use gap instead of margins */
  max-width: 100%;      /* ensure it doesn’t exceed viewport */
  box-sizing: border-box;
  overflow-x: hidden;   /* safety net */
}

.hero-bottom div {
  margin: 0; /* remove the horizontal margin */
}

.hero-bottom-info h1{
  font-size: 50px;
  color: var(--text-dark);
}

.hero-bottom p{
  margin-top: -10px;
  font-size: 20px;
}

.hero-bottom div{
  margin: 0 25px;
}


.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.logo {
  max-width: 180px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: bold;
  text-decoration: none;
}



.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}


/* INFO SECTION */
.info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.info-text h2 {
  font-size: 4rem;
}

.info-text h3 {
  font-weight: normal;
  margin-bottom: 20px;
}

.info-text span {
  color: var(--primary-color);
}

.our-services {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.our-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.our-services li {
  margin: 8px 0;
}

.services-heading {
  text-align: center;
  font-size: 4rem;
  margin: 40px 0 20px;
  color: var(--text-dark);
}

.testimonial-container{
  padding: 20px;
}

.testimonial {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 50px;
}

.testimonial-text{
  color: var(--secondary-color);
}

.testimonial-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; /* center everything on the same line */
  gap: 15px;           /* add spacing between avatar and text */
  margin-bottom: 15px;
  margin-top: -10px;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.testimonial-name{
  font-weight: bold;
  margin: 0;
  
}

.glow-gold{
  border: 1px solid rgb(240 173 78); /* shorthand includes width, style, color */
  box-shadow: 0 8px 32px rgb(240 173 78);
}

.glow-red{
  border: 1px solid rgb(217 83 79); /* shorthand includes width, style, color */
  box-shadow: 0 8px 32px rgb(217 83 79);
}

.glow-blue{
  border: 1px solid rgb(91 192 222); /* shorthand includes width, style, color */
  box-shadow: 0 8px 32px rgb(91 192 222);
} 

.glow-green{
  border: 1px solid rgb(92 184 92); /* shorthand includes width, style, color */
  box-shadow: 0 8px 32px rgb(92 184 92);
}

.glow-rainbow{
  border: 1px solid rgb(255 0 255); /* shorthand includes width, style, color */
  box-shadow: 0 8px 32px rgb(255 0 255);
}

.testimonial h3{
  font-size: 1.5rem;
  margin-top: -5px;
}

.testimonial-date{
  font-size: 0.9rem;
  color: gray;
  margin-top: 10px;
  text-align: left;
  margin-bottom: -10px;
}

.testimonial img{
  border-radius: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  object-fit: cover;
  display: block;
}

.star-gold{
  color: rgb(240 173 78);
}

.star-gray{
  color: gray;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;   /* allows stacking on small screens */
  gap: 40px;         /* space between form and image/social */
  justify-content: center;
  margin-bottom: 50px;
}

.contact-form, .contact-info {
  flex: 1 1 400px;   /* grow, shrink, base width */
  box-sizing: border-box;
}

.contact-info img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
}

.contact-info .social-links {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }
}

.contact-form {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 500px;
  margin: 0 auto;
}

.contact-form h2 {
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 2.2rem;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  font-size: 1rem;
  background: #f9f9f9;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary-color);
  outline: none;
  background: #fff;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form .btn {
    
  margin-top: 10px;
  width: 100%;
  font-size: 1.1rem;
  padding: 12px 0;
}

.contact-form form > div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-form form > div label {
  width: 100%;
}

.contact-form form > div input {
  flex: 1 1 45%;
  min-width: 0;
  margin: 0;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 20px 8px;
  }
  .contact-form form > div {
    flex-direction: column;
    gap: 0;
  }
  .contact-form form > div input {
    width: 100%;
  }
}

.call-us{
  color: white !important;
}

.bottom-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* FOOTER */
.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer p {
  margin: 10px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-color);
}


/* CARDS */
.card-container {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.card-container a {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 4px #000;
  text-decoration: none;
  /*d-image: none !important;
    background-color: #e9e9e9;*/
}

.card-container h3{
  font-size: 2.5rem;
}

.card-icon {
  display: block;
  margin: 0 auto 15px auto; /* center horizontally */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem; /* adjust size as needed */
  border: 3px solid var(--primary-color);
}



.card {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card h1 {
  margin: 0 0 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}


.no-text-shadow{
    text-shadow: none;
}
.contact-us {
  font-size: 3rem;
  margin: 100px auto 50px auto; /* center horizontally */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 40px 20px;
  width: 80%;        /* takes most of the width */
  max-width: 1000px; /* but not too wide on big screens */
  text-align: center;
}

.contact-us-phone {
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
}



.contact-us-email-us {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: -30px;
}


.contact-us-email {
  font-size: 2.1rem;
  color: var(--secondary-color);
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
  display: inline-block;
  text-align: center;
}

.contact-logo{
  max-width: 200px;
  margin-bottom: 55px;
}

span{
  color: var(--primary-color);
}


/* BUTTONS */
.btn {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px; 
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
}

.btn.secondary {
  background: var(--secondary-color);
}


.hover-effect {
  transition: color 0.3s;
}

.hover-effect:hover {
  color: var(--primary-color);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 5rem;
  }

  .info {
    flex-direction: row;
  }

  .info-text, .our-services {
    flex: 1;
  }

  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  padding: 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-banner {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.form-subtitle {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

