

/* ===== FONT & COLOR VARIABLES ===== */
.site-header {
  --header-font: "poppins", sans-serif;
  --header-text: #fbfbfb;
  
  --header-bg:  rgb(55, 7, 79);
}

.site-footer {
  --footer-font: "poppins";
  --footer-text: #ffffff;
  --footer-accent: #858585;
  --footer-bg: rgb(74, 28, 117);
  --footer-hover: #a8a8a8;
}

html{
  font-size: 62.5%;
}

/* ===== BASE RESETS ===== */
.site-header *,
.site-footer * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  color: inherit;
}

/* ===== HEADER STYLES ===== */
.site-header {
  width: 100%;
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: var(--header-font);
  color: var(--header-text);
  position: fixed;
  z-index: 999 ;
}

.header-container {
  margin: 0 2%;
  padding: 0 2rem;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
}

.header-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  max-width: 25rem;
}
.footer-logo {
  padding-bottom: 2.5rem;

}

.header-nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  text-decoration: none;

  align-items: center;
  
}

.header-nav-links.active {
  left: 0;
}




.hero-contact-us-link{
border:solid rgb(255, 253, 253) 1.5px;
border-radius: 20rem;
padding:.75rem 3rem;

}
.hero-contact-us-link:hover {
background-color: blueviolet;
color: white;
border:none;

}

.header-nav-links a {
  font-weight: 500;
  font-size: 1.8rem;
  transition: color 0.3s ease;
  text-decoration: none;
  
}

.header-nav-links a:hover {
  color: rgb(249, 247, 250);
}

.header-hamburger {
  display: none;
  cursor: pointer;
  padding: 1rem;
}

.hamburger-line {
  width: 3.5rem;
  height: 5px;
  border-radius: 5rem;
  background: rgb(255, 255, 255);
  margin: .8rem 0;
  transition: all 0.3s ease;
}

/* =******************** FOOTER STYLE ***************** */
/* =******************** FOOTER STYLE ***************** */
/* =******************** FOOTER STYLE ***************** */
/* =******************** FOOTER STYLE ***************** */

.footer-logo {
  max-width: 25rem;
  padding-bottom: 2rem;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  font-family: var(--footer-font);
  padding: 6rem 0 20px;
}

.footer-container {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-logo {
  margin: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: white;
}

.footer-tagline {
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: .75;
}

.footer-contact p {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.phone-line{
    margin:0 auto;
}

.footer-phone-number{
    font-size: 2.2rem;
    margin:1rem 0;
}

.footer-contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: white;
  font-size: 1.6rem;
}

.footer-contact__item svg {
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.footer-hours p {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}

.footer-hours i {
  margin-right: 1rem;
  width: 2rem;
  color: var(--footer-accent);
}

.footer-links {
  margin-left: 12rem;
}

.footer-links ul {
  list-style: none;
  margin-left: 2rem;
}

.footer-links li {
  margin-bottom: 2rem;
}

.footer-links a {
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 1.6rem;
}

.footer-links a:hover {
  color: var(--footer-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 0.2rem solid rgba(255, 255, 255, 0.1);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-contact__item svg {
  margin-right: 1rem;
}
.footer-contact__item a {
  text-decoration: none;
}

.phone-line {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--footer-accent);
  color: var(--footer-bg);
}

.footer-copy {
  font-size: 1.6rem;
}

.pinellas-web-tag {
  text-decoration: none;
}




/* Always hide by default */
.header-hamburger {
  display: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 999;
}

/* Only show on mobile */
@media (max-width: 768px) {
  .header-hamburger {
    display: block;
  }
}





/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .header-nav-links {
    position: fixed;
    top: 8rem;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--header-bg);
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    transition: left 0.3s ease;
    gap: 0;
  }

  .header-container {
    margin: 0 1%;
  }
  .hero-contact-us-link{
border:none;
border-radius:none;
padding:0;

}
.hero-contact-us-link:hover {
background-color: blueviolet;
color: white;
border:none;

}
  .header-nav-links.active {
    left: 0;
  }

  .header-nav-links li {
    width: 100%;
    text-align: center;
    padding:3.5rem 0;
  }

  .header-nav-links a {
    font-size: 2.8rem;
  }

  .header-hamburger {
    display: block;
  }

  .header-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .header-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
    .hero-svg {
    display: none;
  }
}

@media (max-width: 48.8rem) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
  }

  .footer-about {
    order: 2;
  }

  .footer-links {
    order: 1;
  }

  .footer-hours {
    order: 3;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2rem auto;
  }

  .footer-logo a {
    display: flex; /* this was likely the missing piece */
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 250px;
  }

  .footer-heading,
  .footer-tagline {
    display: none;
  }

  .header-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-logo-image {
    width: 22rem;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
     width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .footer-copy-cnt {
    order: 2;
    font-size: 1.4rem;
  }

  .footer-social {
    order: 1;
    margin-bottom: 1rem;
  }
}

.phone-icon {
  margin-top: 0.5rem 0;
  font-style: 2rem;
  font-weight: 700;
}


