:root {
  --primary: #f85757;
  --secon: #faf9f9;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
  border: none;
}

body {
  font-family: "poppins", sans-serif;
  background-color: var(--bg);
  color: #ffffff;
  /* height: 2000px; */
}
/* smooth */
html{
  scroll-behavior: smooth;
}
/* smooth */
/* navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(36, 19, 19, 0.699);
  border-bottom: 1px solid #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-navm a {
  color: var(--secon);
  display: inline-block;
  font-size: 2rem;
  margin: 0 1rem;
  
}
.navbar .navbar-navm a:hover {
  color: var(--primary);
}
.navbar .navbar-navm a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.1rem solid var(--primary);
  transform: scaleX(0);
  transition: 0.3s linear;
}
.navbar .navbar-navm a:hover::after {
  transform: scaleX(0.8);
}
.navbar .navbar-extra a {
  color: antiquewhite;
  margin: 0 0.5rem;
}
.navbar .navbar-extra a i:hover {
  color: #0e0505;
}
#hamburger-menu {
  display: none;
}
/* navbar */
/* laptop */
@media (max-width: 1366px) {
  html {
    font-size: 85%;
  }
}
/* tablet */
@media (max-width: 756px) {
  html {
    font-size: 72.5%;
  }
  #hamburger-menu {
    display: inline-block;
  }
  .navbar .navbar-navm {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #1f1d1d;
    width: 30rem;
    height: 100vh;
    transition: 0.3s;
  }
  .navbar .navbar-navm.active {
    right: 0;
  }
  .navbar .navbar-navm a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 3rem;
  }
  .navbar .navbar-navm a::after {
    transform-origin: 0 0;
  }
  .heroab .row {
    flex-wrap: wrap;
  }
  .heroab .row .isi p{
    font-size: 3rem;
    text-align: center;
    line-height: 3rem;
  }
  .heroab .row .about-img img{
 object-fit: cover;
 height: 24rem;
 object-position: center;
  }
  
}
/* mobilephone */
@media (max-width: 450) {
  html {
    font-size: 55%;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("img/bakerylan.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(0deg, rgba(244, 244, 247, 0.732) 8%, rgba(255, 255, 255, 0) 50%);
}
.hero .conten {
  padding: 1.4rem 14%;
  max-width: 80rem;
}
.hero .conten h2 {
  font-size: 4.3em;
 
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}
.hero .conten a {
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.hero .conten p {
  font-size: 1.8em;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.hero .conten .cta {
  display: inline-block;
  padding: 0.5rem 0.5rem;
  font-size: 2rem;
  color: var(--secon);
  background-color: #18370ca9;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(242, 242, 249, 0.922), 0.5);
}

.plicy {
  padding: 10rem 7% 2rem;
  color: #750404;
}
/* kopi */
.herokopi {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("img/barKopim.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.herokopi::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(0deg, rgba(28, 13, 13, 0.749) 8%, rgba(255, 255, 255, 0) 50%);
}
.herokopi .contenkopi {
  padding: 1.4rem 10%;
  max-width: 100%;
  position: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.herokopi .contenkopi h2 {
  font-size: 3em;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}
.herokopi .contenkopi a {
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.herokopi .contenkopi p {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.herokopi .contenkopi .ctakopi {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: var(--secon);
  background-color: #520d0da6;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(255, 255, 255, 0.86);
}
.g_baker{
   padding:10rem 7% 1.4rem ;
  min-height: 100vh;
  background-color: rgba(162, 162, 189, 0.5);
}
.g_baker h2{
  text-align: center;
   color: #a00f0f;
   margin-bottom: 3rem;
}
.g_fastfod{
  padding:10rem 7% 1.4rem ;
 min-height: 100vh;
 background-color: rgba(162, 162, 189, 0.5);
}
.g_fastfod h2{
 text-align: center;
  color: #a00f0f;
  margin-bottom: 3rem;
}
/* bakeri css */
.herobk {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("img/land_bk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.herobk::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(0deg, rgba(14, 14, 15, 0.668) 8%, rgba(255, 255, 255, 0) 50%);
}
.herobk .contenbk {
  padding: 1.4rem 10%;
  max-width: 100%;
  position: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.herobk .contenbk h2 {
  font-size: 3em;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}
.herobk .contenbk a {
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.herobk .contenbk p {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.herobk .contenbk .ctabk {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: var(--secon);
  background-color: #520d0da6;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(22, 21, 21, 0.86);
}
/* Fasfod Css */
.heroff {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("img/land_ff.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.heroff::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(0deg, rgba(244, 244, 247, 0.686) 8%, rgba(255, 255, 255, 0) 50%);
}
.heroff .contenff {
  padding: 1.4rem 10%;
  max-width: 100%;
  position: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.heroff .contenff h2 {
  font-size: 3em;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}
.heroff .contenff a {
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.heroff .contenff p {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.heroff .contenff .ctaff {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: var(--secon);
  background-color: #520d0da6;
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(255, 255, 255, 0.86);
}
/* about css*/
.heroab {
  padding:  10rem 7% 1.4rem;
  color: #311d1d;
  background-image: url('img/intro-bg.jpg');
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 1px 1px 3px rgba(87, 9, 9, 0.97);
}
.heroab h2{
  text-align: center;
  font-size: 2rem;
}
.heroab .row{
display: flex;
}
 
.heroab .row .about-img{
  flex: 1 1 5rem;
}
.heroab .row .about-img img{
  width: 100%;
}

.heroab .row .isi{
  flex: 1 1 55rem;
  padding:  0 1rem;
  padding-left: 1rem;
  line-height: 1.6rem;
}
.contenblog{
  margin-top: 8.6rem;
  /* background-color: rgba(162, 162, 189, 0.5); */
}

