@font-face {
  font-family: 'Raleway-Medium';
  src: url('../fonts/Raleway-Medium.ttf') format('opentype');
}

@font-face {
  font-family: 'Bogart Extrabold';
  src: url('../fonts/Bogart-Extrabold-trial.ttf') format('opentype');
}

@font-face {
  font-family: 'Bogart-Regular';
  src: url('../fonts/Bogart-Regular-trial.ttf') format('opentype');
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Bogart-Regular';
  width:100%;
}

/* Top Offer Strip */
.offer-strip{
  width:100%;
  background:#594942;
  color:#fff;
  text-align:center;
  font-size:0.95rem;
  font-weight:500;
  padding:10px 15px;
  letter-spacing:0.5px;
  font-family:'Raleway-Medium';
}

.offer-strip .privacy-link{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.offer-strip .privacy-link:hover{
  text-decoration:underline;
}

/* Wrapper */
.hero-wrapper{
  width:100%;
  min-height:100vh;
  background:#f6f4dc;
  padding:0 5vw;
  padding-bottom:40px;
}

/* Logo */
.hero-logo{
  width:100%;
  text-align:center;
  margin-bottom:3vh;
  padding: 20px;
}

.hero-logo img{
  width:8vw;
  max-width:120px;
  min-width:80px;
}

/* Hero Banner */
.hero-banner{
   width: 100%;
    height: 90vh;
    background: url(../images/hero-bg-new.webp) center / cover no-repeat;
    border-radius: 2.5rem;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;   /* centers horizontally */

    padding: 5vh 5vw;
    text-align: center;        /* centers text */
}

/* Overlay */
.hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
}

/* Content */
.hero-content{
  position:relative;
  max-width:100%;
  color:white;
    margin: auto;
}

.hero-content h1{
  font-size:clamp(2rem,4vw,4rem);
  line-height:1.1;
  margin-bottom:4vh;
  font-family:'Bogart Extrabold';
  text-align:center;
}

.hero-content p{
  font-size:clamp(1rem,1.3vw,1.2rem);
  line-height:1.5;
  margin-bottom:4vh;
  font-family:'Raleway-Medium';
  text-align:center;
}

/* Buttons */
.hero-buttons{
  display:flex;
  gap:1.5vw;
  flex-wrap:wrap;
  justify-content:center;
}

.btn{
  padding:1rem 2.5rem;
  font-size:1rem;
  border-radius:0.8rem;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
  text-align:center;
  font-family:'Raleway-Medium';
  cursor:pointer;
  background:#f6b800;
  color:black;
}

.btn:hover{
  transform:scale(1.05);
}
/* POPUP */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 99999;
}

.popup-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  width:520px;
  max-width:100%;
  text-align:center;
  position:relative;
}

.popup-logo{
  width:150px;
  margin-bottom:20px;
}

.popup-box h2{
  font-family:'Bogart Extrabold';
  font-size:32px;
  margin-bottom:10px;
}

.popup-box p{
  font-family:'Raleway-Medium';
  margin-bottom:25px;
}

/* POPUP SHOP NOW BUTTON */

#popup-widget28444-cta{
  display:inline-block;
  background:#d64555;
  color:#ffffff;
  padding:14px 40px;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  letter-spacing:1px;
  border-radius:4px;
  margin-top:20px;
  transition:all 0.3s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

#popup-widget28444-cta:hover{
  background:#b93746;
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(0,0,0,0.2);
}

#popup-widget28444-cta:active{
  transform:translateY(0);
  box-shadow:0 5px 12px rgba(0,0,0,0.15);
}


.popup-close{
  position:absolute;
  right:18px;
  top:12px;
  font-size:26px;
  cursor:pointer;
}


/* Mobile */
@media (max-width:768px){

  .hero-banner{
    height:90vh;
    background:url(../images/mobile common size (8).png) center / cover no-repeat;
    border-radius:2.5rem;
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:5vh 5vw;
    text-align:center;
  }

  .hero-content{
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .btn{
    width:80%;
  }
  .popup-box{
    width:90%;
    padding:25px;
    border-radius:15px;
}
}
