@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 ===== */
.banner{
  width:100%;
  background:#8EAD52;
  color:#fff;
  text-align:center;
  padding:2vh 1vw;
  font-size:1.1rem;
  font-family:'Brandon_Grotesque bold';
}

.banner-text{
  display:inline-block;
}

/* ===== LOGO STRIP ===== */
.brand{
  width:100%;
  background:#FFF0D7;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:2vh 0;
}

.brand-logo{
  width:7vw;
  height:auto;
}

/* ===== HERO SECTION ===== */
.showcase{
  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;
  background-image:url("../images/turtle.jpg");
}

.showcase::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  top:0;
  left:0;
}

.showcase-box{
  position:relative;
  z-index:2;
  width:90%;
}

.showcase-title{
  margin-bottom:2vh;
  font-family:'Brandon_Grotesque bold';
  font-size:50px;
  text-transform:uppercase;
}

.showcase-text{
  font-size:2.3rem;
  margin-bottom:3vh;
}

.showcase-action{
  display:flex;
  justify-content:center;
  align-items:center;
}

.action-btn{
  padding:0.5em 1.5em;
  font-size:1.55rem;
  border:none;
  background:#8EAD52;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
  border-radius:3rem;
}

.action-btn:hover{
  background:#556b1f;
}

/* ===== MAP SECTION ===== */
.location{
  width:100%;
  height:60vh;
}

.location-frame{
  width:100%;
  height:100%;
}

.location-frame iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ===== FOOTER ===== */
.details{
  background:#fcf6ed;
  padding:0vh 8vw;
}

.grid{
  display:flex;
  justify-content:flex-start;
  flex-wrap:wrap;
}

.block{
  min-width:20vw;
}

.block h3{
  font-size:1.2rem;
  letter-spacing:0.15em;
  margin-bottom:3vh;
  color:#58595b;
  font-family:'Brandon_Grotesque bold';
}

.block ul{
  list-style:none;
}

.block ul li{
  margin-bottom:1.5vh;
}

.block ul li a{
  text-decoration:none;
  color:#58585A;
  font-size:0.95rem;
  transition:0.3s;
}

.block ul li a:hover{
  text-decoration:underline;
}

.info p{
  margin-bottom:1.2vh;
  font-size:0.95rem;
  color:#58585A;
  font-weight:900;
}

/* ===== FOOTER BOTTOM ===== */
.credits{
  background:#fcf6ed;
  padding:3vh 8vw;
  font-size:1rem;
  color:#444;
}

.credits-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:2vh;
  color:#937a7a;
}

/* ===== POLICY ===== */
.policy{
  height:7vh;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.9rem;
  background:#000;
}

.policy-link{
  color:#fff;
  text-decoration:none;
}

.grid {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .banner{
    letter-spacing:0.1rem;
  }

  .showcase{
    height:65vh;
    background-image:url("../images/mona.png");
  }

  .showcase-box{
    width:95%;
  }

  .showcase-title{
font-size: 2.1rem;
        letter-spacing: 0rem;
        line-height: 2.7rem;
  }

  .showcase-text{
    font-size:1.5rem;
    letter-spacing:0.1rem;
    line-height:1.7rem;
  }

  .action-btn{
    font-size:1.7rem;
  }

  .brand-logo{
    width:20vw;
  }

  .grid{
    flex-direction:column;
    gap:4vh;
  }

  .credits-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .policy{
    font-size:1.2rem;
  }

}