        @font-face {
  font-family: 'Brandon_Grotesque';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_regular-BF64a625c9311e1.otf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'Brandon_Grotesque bold';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_bold-BF64a625c9151d5.otf') format('opentype');
  font-style: normal;
}

        @font-face {
  font-family: 'BebasNeue-Regular';
  src: url('../fonts/BebasNeue-Regular.otf') format('opentype');
  font-style: normal;
}
    
 /* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
    font-family: 'Brandon_Grotesque';
}

/* ===== OFFER STRIP ===== */
.offer-strip{
  width:100%;
  background:#8EAD52;
  color:#fff;
  text-align:center;
  padding:1vh 2vw;
  font-size:1.2rem;
  font-family: 'Brandon_Grotesque bold';
}

/* ===== LOGO STRIP ===== */
.logo-strip{
  width:100%;
  background:#FFF0D7;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:2vh 0;
}

.logo-strip img{
    width: 7vw;
    /* min-width: 94px; */
    /* max-width: 200px; */
    height: auto;
}

/* ===== HERO SECTION ===== */
.hero{
  position:relative;
  width:100%;
  height:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background-size:cover;
  background-position:center;
}

/* Desktop Image */
.hero{
  background-image:url("../images/locations.jpg");
}

/* Overlay */
.hero::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  top:0;
  left:0;
}

/* Hero Content */
.hero-content{
  position:relative;
  z-index:2;
  width:90%;
}

.hero h1{
    margin-bottom: 2vh;
    font-family: 'Brandon_Grotesque bold';
    font-size: 50px;
    text-transform: uppercase;
}

.hero p{
      font-size: 2.3rem;
  margin-bottom:3vh;
  font-family: 'Brandon_Grotesque';
}
.hero h1 sup{
    text-transform: lowercase;
    font-size: 0.6em;
    vertical-align: super;
     font-family: 'Brandon_Grotesque';
}

.hero button{
  padding:0.5em 1.5em;
  font-size:1.55rem;
  border:none;
  background:#8EAD52;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
 font-family: 'Brandon_Grotesque';
      border-radius: 3rem;
}

.hero button:hover{
  background:#556b1f;
}

/* ===== MAP SECTION ===== */
.map-section{
  width:100%;
  height:60vh;
}

.map-section iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ===== FOOTER TOP ===== */
.footer{
  background:#fcf6ed;
  padding:0vh 8vw;
  font-family: 'Brandon_Grotesque';
}

.footer-container{
  display:flex;
justify-content: flex-start;
  flex-wrap:wrap;
}

.footer-column{
    min-width: 20vw;
}

.footer-column h3{
  font-size:1.2rem;
  letter-spacing:0.15em;
  margin-bottom:3vh;
  color:#58595b;
   font-family: 'Brandon_Grotesque bold';
}

.footer-column ul{
  list-style:none;
    font-family: 'Brandon_Grotesque';
}

.footer-column ul li{
  margin-bottom:1.5vh;
   font-family: 'Brandon_Grotesque';
}

.footer-column ul li a{
  text-decoration:none;
  color:#58585A;
  font-size:0.95rem;
  transition:0.3s;
    font-family: 'Brandon_Grotesque';
}

.footer-column ul li a:hover{
  text-decoration:underline;
    font-family: 'Brandon_Grotesque';
}

/* Contact Specific */
.contact-info p{
  margin-bottom:1.2vh;
  font-size:0.95rem;
   color:#58585A;
   font-weight:900;
    font-family: 'Brandon_Grotesque';
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom{
background:#fcf6ed;
  padding:3vh 8vw;
  font-size:1rem;
  color:#444;
    font-family: 'Brandon_Grotesque';
}

.bottom-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:2vh;
  color: #937a7a;
}

.warning{
  margin-top:2vh;
  font-size:1rem;
  line-height:1.6em;
    font-family: 'Brandon_Grotesque';
    color: #937a7a;
}

.footer-section {
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #000;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    
.offer-strip{
     letter-spacing: 0.1rem;
}

  .hero{
    height:65vh;
    background-image:url("../images/mobile common size (6).png");
  }
  
  .hero-content {
    width: 95%;
}

  .hero h1{
        font-size: 2.2rem;
        letter-spacing: 0.1rem;
        line-height: 2.3rem;
  }

  .hero p{
                   font-size: 1.5rem;
        letter-spacing: 0.1rem;
        line-height: 1.7rem;
  }
  
  .hero button {
    font-size: 1.7rem;
  }

  .logo-strip img{
           width: 20vw;
  }
  
   .footer-container{
    flex-direction:column;
    gap:4vh;
  }

  .bottom-row{
    flex-direction:column;
    align-items:flex-start;
  }
  
   .footer-section {
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #000;
  }

}