:root {
  --primary: #2fb8c4;
  --bg: #010101;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg);
  color: #fff;
  /* min-height: 3000px; */
}

/* navbar  */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 7%;
  background-color: rgba(1, 1, 1, 0.8);
  border-bottom: 1px solid #5e472f;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.navbar .navbar-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}

.navbar .navbar-logo span {
  color: var(--primary);
}

.navbar .navbar-nav a {
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
  color: var(--primary);
}

.navbar .navbar-nav a::after {
  content: "";
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 0.2rem solid var(--primary);
  transform: scaleX(0);
  transition: 0.3s linear;
}

.navbar .navbar-nav a:hover::after {
  transform: scaleX(0.5);
}

/* bagian extranya */
.navbar .navbar-extra a {
  color: #fff;
  margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
  color: var(--primary);
}

#hamburger-menu {
  display: none;
}

/* hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/jerry.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero .content p{
  /* color: #000000;
  background-color: yellow; */
  font-size: 1.9rem;
  margin-top: 1rem;
  line-height: 1.2;
  font-weight: 200;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  background-color: yellow;
  border-radius: 0.5rem;
  text-align: center;
}
.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 30%;
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(1, 1, 3, 1) 8%,
    rgba(255, 255, 255, 0) 50%
  );
}

.hero .content {
  padding: 1.4rem 7%;
  max-width: 60rem;
}

.hero .content h1 {
  font-size: 5em;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(1, 1, 3, 0.5);
  line-height: 1.2;
}

.hero .content h1 span {
  color: var(--primary);
}

.hero .content p {
  font-size: 1.9rem;
  margin-top: 1rem;
  line-height: 1.2;
  font-weight: 200;
  text-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);

  /* mix-blend-mode: difference; */
}

.hero .content .cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #e8ede8;
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

/* about section */
.about,
.menu,
.contact {
  padding: 8rem 7% 1.4em;
}

.about h2,
.menu h2,
.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.about h2 span,
.menu h2 span,
.contact h2 span {
  color: var(--primary);
}

.about .row {
  display: flex;
}

.about .row .about-img {
  flex: 1 1 45rem;
}

.about .row .about-img img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 35rem;
  padding: 0 1rem;
}

.about .row .content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
.about .row .content h3 span {
  color: var(--primary);
}

.about .row .content p {
  margin-bottom: 0.8rem;
  /* font-size: 1.4rem; */
  font-weight: 100;
  line-height: 1.6;
  text-align: center;
}

/* my ccs accordian start */

.about .accordion {
  margin: px auto;
  width: 100rem;
  color: #000000;
  font-weight: 600;
}
.about .accordion .content p{
  color: #000000;
  font-weight: 300;
  overflow: auto;
}

.about .accordion li {
  list-style: none;
  width: 100%;
  margin: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #e3edf7;
  box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15),
    -6px 6px 10px -1px rgba(255, 255, 255, 0.7);
}
.about .accordion li label {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.about label::before {
  content: "+";
  margin-right: 10px;
  font-size: 20px;
  font-weight: 600;
}
.about input[type="radio"] {
  display: none;
}

.about .accordion .content {
  color: var(--bg)
  padding: 0 10px;
  line-height: 26px;  
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}


.about .accordion input[type="radio"]:checked +label+.content{
  max-height: 1000px; 
  padding: 5px 5px 10px;
}
.about .accordion input[type="radio"]:checked +label::before{
  content: "-";
}


/* menu section */

.menu h2,
.contact h2 {
  margin-bottom: 1rem;
}
.menu p,
.contact p {
  text-align: center;
  max-width: 100%;
  margin: auto;
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6;
}
.menu .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5rem;
  justify-content: center;
}

.menu-card {
  text-align: center;
  padding-bottom: 4rem;
}
.menu .row .menu-card img {
  border-radius: 50%;
  width: 70%;
}

.menu .row .menu-card .menu-card-tittle {
  margin: 1rem auto 0.5rem;
}

.contact {
  display: inline-flexbox
  justify-content: center;
}



.contact .wa .cta1 {
  margin-top: 1rem;
  display: inline-flex
  padding: 1rem 3rem;
  font-size: 1.4rem;
  color: #e8ede8;
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}

.contact .ending {
  margin-top: 10rem;
}
/* media queries */
/* laptop */
@media (max-width: 1366px) {
  html {
    font-size: 75%;
  }
}

.contact  {
  display: flexbox;
  justify-content: center;
  background-color: #5e472f;
}
.contact .content .wa {
margin-top: 20px;
margin-right: auto;

}
/* tablet */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #fff;
    width: 30rem;
    height: 100vh;
    transition: 0.4s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }

  .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.2);
  }
}

.about .row {
  flex-wrap: wrap;
}
.about .row .about-img img {
  height: 24rem;
  object-fit: cover;
}
.about .row .content {
  margin-top: 1rem;
  font-size: 2rem;
}
.about .row .content {
  padding: 2;
}

.about .row .content p {
  font-size: 1.3rem;
}
.menu p {
  font-size: 1.3rem;
}
/* hape */
@media (max-width: 450px) {
  html {
    font-size: 75%;
  }
}

.contact p {
  font-size: 1.5rem;
}




/* tablet */
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  #hamburger-menu {
    display: inline-block;
  }

  .contact .cta1 {
    margin-top: 1rem;
    display: ;

    font-size: 1.4rem;
    /* color: #e8ede8; */
    background-color: var(--primary);
    border-radius: 0.5rem;
    box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
  }

  .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #f5f6f680;
    width: 30rem;
    height: 100vh;
    transition: 0.5s;
  }

  .navbar .navbar-nav.active {
    right: 0;
  }

  .navbar .navbar-nav a {
    color: rgb(7, 7, 7);
    display: block;
    margin: 1.5rem;
    font-size: 2rem;
  }

  .navbar .navbar-nav a::after {
    transform-origin: 0 0;
  }

  .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.2);
  }
}

.about .row {
  flex-wrap: wrap;
}
.about .row .about-img img {
  height: 24rem;
  object-fit: cover;
}
.about .row .content {
  margin-top: 1rem;
  font-size: 2rem;
}
.about .row .content {
  padding: 2;
}

.about .row .content p {
  font-size: 1.6rem;
}
.menu p {
  font-size: 1.6rem;

  /* mix-blend-mode: difference; */
}

.contact .cta1 {
  margin-top: 1rem;
  margin-left: 30%;
  padding: 1rem 3rem;
  font-size: 1.4rem;
  /* color: #e8ede8; */
  background-color: var(--primary);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 3px rgba(1, 1, 3, 0.5);
}
.contact p {
  font-size: 1.5rem;
}
