       @font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Semibold.ttf') format('opentype');
  font-style: normal;
}


*{ 
margin:0;
padding:0;
box-sizing:border-box;
font-family: 'OpenSans';
}

body{
margin:0;
font-family: 'OpenSans';
}

/* Banner */

.hero-banner{
position:relative;
width:100%;
height:95vh;
background-image:url("../../assets/images/IMG_8699.jpeg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

/* Black overlay */

.hero-banner::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

/* Content */

.hero-content{
position:relative;
z-index:2;
max-width:1000px;
padding:20px;
}

.hero-content h1{
font-size:48px;
font-weight:700;
line-height:1.3;
margin-bottom:20px;
}

.hero-content p{
font-size:21px;
margin-bottom:30px;
}

/* Button */

.shop-btn{
display:inline-block;
padding:14px 36px;
background:#2ecc71;
color:white;
text-decoration:none;
font-size:18px;
font-weight:600;
border-radius:6px;
border:2px solid white;
transition:0.3s;
cursor: pointer;
}

.shop-btn:hover{
background:#27ae60;
}
/* Top Bar */

.top-bar{
width: 100%;
    background: #2ecc71;
    color: #fff;
    text-align: center;
    padding: 8px 10px;
    font-size: 24px;
    font-weight: 500;
}

/* Privacy Footer */

.privacy-footer{
background:#000;
color:#fff;
text-align:center;
padding:10px 10px;
font-size:19px;
}

.privacy-footer a{
color:#fff;
text-decoration:none;
margin-left:5px;
}

.privacy-footer a:hover{
color:#2ecc71;
}

.hero-icon img{
 width: 140px;
 height: auto;
 margin-bottom: 40px;
 filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}


/* Mobile */

@media(max-width:768px){

.hero-banner{
padding:20px 0px;
background-image:url("../../assets/images/IMG_8699.jpeg"); /* mobile banner */
background-position:center;
background-size:cover;
}

.hero-content h1{
font-size: 50px;
}

.hero-content p{
font-size:32px;
}

.shop-btn{
font-size:30px;
}

}

@media (max-width:380px){
   .hero-content h1{
font-size: 35px;
}

.hero-content p{
font-size:22px;
} 

.shop-btn{
font-size:25px;
}
}
