/* =========================
   FONTS
========================= */

@font-face{
  font-family:'Courier Prime';
  src:url('../fonts/Courier Prime.ttf') format('truetype');
  font-display:swap;
}

@font-face{
  font-family:'dilemma-sans-bold';
  src:url('../fonts/dilemma-sans-bold.otf') format('opentype');
  font-display:swap;
}

/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  width:100%;
  overflow-x:hidden;
  background:#f5efe3;
  color:#111;
  font-family:'dilemma-sans-bold', sans-serif;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

button{
  border:none;
  outline:none;
  cursor:pointer;
  font-family:inherit;
}

/* =========================
   NAVBAR
========================= */

.sf-main-navbar{
  width:100%;
  background:#212c1c;
  padding:14px 20px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.sf-site-logo img{
  height:48px;
}

/* =========================
   HERO SECTION
========================= */

.sf-hive-hero-section{
  position:relative;
  width:100%;
  padding:90px 7%;
  background:#d8a929;
  overflow:hidden;
}

.sf-hive-hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top left,
  rgba(255,255,255,.06) 0%,
  transparent 30%),

  repeating-linear-gradient(
    120deg,
    rgba(255,255,255,.04) 0px,
    rgba(255,255,255,.04) 60px,
    transparent 60px,
    transparent 140px
  );
}

.sf-hive-hero-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.sf-hive-hero-image,
.sf-hive-hero-content{
  flex:1;
}

.sf-hive-hero-image{
  display:flex;
  justify-content:center;
}

.sf-hero-image-box{
  background:#e8dcc7;
  padding:30px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.sf-hero-image-box img{
  width:100%;
  max-width:420px;
  border-radius:6px;
}

.sf-hive-hero-content{
  color:#fff;
}

.sf-hive-hero-content h1{
  font-size:42px;
  line-height:1.15;
  margin-bottom:25px;
}

.sf-hive-hero-content p{
  margin-bottom:28px;
  color:#f4eadb;
  font-size:16px;
  line-height:1.8;
  font-family:'Courier Prime', monospace;
}

.sf-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  background:#212c1c;
  color:#fff;
  font-size:17px;
  transition:.3s ease;
}

.sf-hero-btn:hover{
  background:#ad7336;
  transform:translateY(-2px);
}

/* =========================
   CUSTOMER REVIEWS
========================= */

.sf-customer-reviews-section{
  width:100%;
  padding:70px 5%;
  background:#e9e5d7;
  text-align:center;
}

.sf-reviews-container{
  max-width:1400px;
  margin:auto;
}

.sf-reviews-container h2{
  margin-bottom:18px;
  color:#000;
  font-size:42px;
  line-height:1.1;
  text-transform:uppercase;
}

.sf-reviews-subtitle{
  max-width:1000px;
  margin:auto;
  color:#111;
  font-size:15px;
  line-height:1.7;
  font-family:'Courier Prime', monospace;
}

.sf-top-rating{
  margin-top:35px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.sf-top-stars{
  color:#20333a;
  font-size:24px;
  letter-spacing:2px;
}

.sf-top-score{
  color:#20333a;
  font-size:22px;
  font-family:'Courier Prime', monospace;
}

/* =========================
   REVIEWS SLIDER
========================= */

.sf-reviews-slider{
  margin-top:45px;
  display:flex;
  justify-content:center;
  align-items:stretch;
  flex-wrap:wrap;
  gap:25px;
}

/* ARROWS */

.sf-review-arrow{
  background:none;
  color:#98b43d;
  font-size:50px;
  transition:.3s ease;
}

.sf-review-arrow:hover{
  transform:scale(1.08);
}

/* REVIEW CARD */

.sf-review-card{
  width:255px;
  background:#f2efe6;
  overflow:hidden;
}

.sf-review-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.sf-review-text{
  min-height:120px;
  padding:18px 14px 12px;
  color:#111;
  font-size:14px;
  line-height:1.5;
  font-family:'Courier Prime', monospace;
}

.sf-review-stars{
  margin-bottom:10px;
  color:#d7a019;
  font-size:28px;
  letter-spacing:2px;
}

.sf-review-card h4{
  margin-bottom:8px;
  color:#111;
  font-size:20px;
}

.sf-review-card span{
  display:block;
  padding:0 12px 15px;
  color:#6d6d6d;
  font-size:14px;
  font-family:'Courier Prime', monospace;
}

/* =========================
   FOOTER
========================= */

.sf-footer-legal{
  background:#1a1a1a;
}

.sf-footer-bar{
  background:#8cc63f;
  padding:20px 5%;
}

.sf-footer-bar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.sf-footer-bar-inner p,
.sf-footer-links a{
  color:#1b2d12;
  font-family:'Courier Prime', monospace;
}

.sf-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
}

.sf-footer-links a{
  transition:.3s ease;
}

.sf-footer-links a:hover{
  opacity:.7;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .sf-review-arrow{
    display:none;
  }

}

@media(max-width:991px){

  .sf-hive-hero-container{
    flex-direction:column-reverse;
    text-align:center;
  }

  .sf-hive-hero-image,
  .sf-hive-hero-content{
    width:100%;
  }

  .sf-hive-hero-content h1{
    font-size:38px;
  }

  .sf-reviews-container h2{
    font-size:36px;
  }

  .sf-footer-bar-inner{
    justify-content:center;
    text-align:center;
  }

  .sf-footer-links{
    justify-content:center;
  }

}

@media(max-width:768px){

  .sf-main-navbar{
    padding:12px 15px;
  }

  .sf-site-logo img{
    height:42px;
  }

  .sf-hive-hero-section{
    padding:70px 5%;
  }

  .sf-hive-hero-container{
    gap:35px;
  }

  .sf-hero-image-box{
    padding:18px;
  }

  .sf-hive-hero-content h1{
    font-size:30px;
  }

  .sf-hive-hero-content p{
    font-size:15px;
    line-height:1.7;
  }

  .sf-hero-btn{
    width:100%;
    max-width:280px;
    padding:14px 26px;
    font-size:16px;
  }

  .sf-customer-reviews-section{
    padding:55px 5%;
  }

  .sf-reviews-container h2{
    font-size:28px;
  }

  .sf-reviews-subtitle{
    font-size:14px;
  }

  .sf-top-stars{
    font-size:20px;
  }

  .sf-top-score{
    font-size:18px;
  }

  .sf-review-card{
    width:100%;
    max-width:320px;
    padding-bottom:20px;
  }
  
  .sf-review-text{
    min-height:auto;
  }

  .sf-footer-links{
    flex-direction:column;
    gap:12px;
  }

}

@media(max-width:480px){

  .sf-hive-hero-content h1{
    font-size:26px;
  }

  .sf-reviews-container h2{
    font-size:24px;
  }

  .sf-top-rating{
    flex-direction:column;
  }

}