/* General Styles */
:root {
    --red: #EC1C24;
    --yellow: #FFF200;
    --charcol: #353535;
    --white: #FFFFFF;
    --black: #000000;
}
/* fix font sizes */

h1, h2, h3, h4, h5, h6, body {
    font-family: Arial, Helvetica, sans-serif;
  }
.image-logo-solo {
  max-width: 300px;
}
.text-red{
    color: var(--red);
}
.text-grey {
  color: var(--charcol)
}
.text-shadow{
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adjust values as needed */
    
}
  .slanted-nav {
    background-color: var(--red);
    height: 100px; 
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  }
  .hero-image-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
  }
  
  .address-title-location {
    font-size: 1.15rem;
  }
  .address {
    font-size: .65rem;
    /* padding-top: 0.25rem; */
    padding-bottom: 0.6rem;
  }


  /* FOOTER STYLES */
  #logo-text-footer {
    max-width: 150px;
    width: 100%;
    height: auto;
  }
  #logo-image-footer {
    max-width: 300px;
    width: 100%;
    height: auto;
  }
  .footer {
    position: relative;
    background-color: var(--red);  /* Ensures the entire footer background is red */
    color: var(--white);
    text-align: center;
    padding-top: 60px; /* Space above the footer content */
    padding-bottom: 40px; /* Consistent padding at the bottom */
    min-height: 150px; /* Minimum height to prevent shrinking */
    overflow: hidden;  /* Ensures the content doesn't spill over */
  }
  
  .footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Curve height */
    z-index: 2;
    overflow: hidden;
  }
  
  .footer-curve-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .image-max-width {
    max-width: 100px;
  }
/* Media Query - Small Devices */
  @media (max-width: 576px){
    .address-title-location {
      font-size: 1rem !important;
      padding-top:.5rem !important;
    }
    h1 {
      font-size: 2rem !important;
    }
    #logo-text-footer {
      max-width: 100px;
      width: 100%;
      height: auto;
    }
    #logo-image-footer {
      max-width: 200px;
      width: 100%;
      height: auto;
    }
    figcaption {
      font-size: 0.6rem;
    }
  }
  @media (max-width: 576px) {
    h1 {
      font-size: 1.4rem !important;
    }
  }
/* Media Query - Medium Devices */
  @media (max-width: 768px) {
    .hero-image-logo {
      max-width: 400px;
      width: 100%;
      height: auto;
    }
  }
  /* Media Query - Footer Formatting: Dives with touch screens */
  @media (max-width: 1280px) and (pointer: coarse) {
  
    .footer-curve-svg path {
      d: path("M0,0 L1440,0 L1440,150 L0,150 Z"); 
    }
  
    .footer {
      padding-top: 40px; 
      min-height: 150px; 
      background-color: var(--red);  
    }
 
    .footer-curve {
      height: 0; 
    }
  }
  
  

  
  
  
  
  
  
  
  
  
  


