@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --warnaTextUtama: #1a1a1d;
  --warnaTextKedua: #3c3d37;

  --warnaUtama: #1b8ebf;
  --warnabutton: linear-gradient(150deg, #1b8ebf 50%, #02b3a7 100%);

  --warnaborder: #f1f1f1;
  --linecolor: #d9d9d9;

  --backgroundUtama: #fff;
  --backgroundKedua: #E8ECEF;

  --warnaIkonUtama: #7ab2d3;
  --warnaHover: #1b8ebf ;

  --sectionPadding: 6rem 0;

  --itemBorderRadius: 0.7rem;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: var(--warnaTextUtama);
}

p {
  font-size: 1rem;
  line-height: 1.8rem;
}

p,
span,
label,
input,
textarea,
li {
  color: var(--warnaTextKedua);
}

a {
  text-decoration: none;
}

.main-container {
  width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .main-container {
    width: 95%;
  }
}

/* button */

.btn {
  padding: 1rem 1.5rem;
  background: var(--warnabutton);
  border: 1.5px solid var(--itemBorderRadius);
  cursor: pointer;
  transition: 0.2s ease-in-out;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  opacity: 0.8;
}

.btn:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px;
  color: rgb(255, 255, 255);
  background-color: white;
  opacity: 1;
}

.btn img {
  width: 15px;
  height: auto;
  margin-left: 5px;
}

/* TITLES */

.section-title {
  margin: 1rem 0 4rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--warnaUtama);
}

.pre-title {
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: var(--warnaTextKedua);
  position: relative;
  padding-left: 40px;
  width: fit-content;
  font-weight: 300;
  font-size: 1.6rem;
}

.pre-title::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--warnaTextKedua);
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
}


/* Layout */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* Logo & Navigation menu */

.nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2rem;
}

.logo a {
  color: var(--warnaTextUtama);
}

nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a {
  color: var(--warnaTextUtama);
}

nav ul li a:hover {
  color: var(--warnaUtama);
  transition: 0.3s ease-in-out;
}

/* burger */

.burger div {
  width: 25px;
  height: 2px;
  background-color: #000;
  margin: 7px;
  transition: all 0.3s;
  z-index: 99;
}

.burger {
  display: none;
  z-index: 99;
  position: fixed;
  top: 33px;
  right: 35px;
}

/* HERO SECTION */

#hero {
  height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

#hero .hero-left p {
  padding-bottom: 30px;
  font-size: 1.2rem;
}

.hero-name {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  color: var(--warnaTextKedua);
}

.hero-name span {
  color: var(--warnaUtama);
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-right img {
  width: 86%;
}

/* services */

.services {
  background-color: var(--backgroundKedua);
  padding: var(--sectionPadding);
}

.services .pre-title {
  color: var(--warnaTextUtama);
  margin: 0 auto;
}

.services-title{
  text-align: center;
}

.service {
  padding: 2rem 1rem;
  text-align: center;
  background: var(--backgroundUtama);
  border-radius: var(--itemBorderRadius);
}

.service-icon img {
  width: 80px;
  height: 80px;
  background: var(--backgroundKedua);
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
}


/* .service:hover {
  padding: 2rem 1rem;
  text-align: center;
  background: var(--warnaIkonUtama);
  border-radius: var(--itemBorderRadius);
  transition: 0.6s ease-in-out;
}
 */

/* PORTFOLIO SECTION */
#portfolio {
  padding: var(--sectionPadding);
}

.portfolio {
  border-radius: var(--itemBorderRadius);
  /* overflow: hidden; */
}

.portfolio-cover{
  height: 250px;
}

.portfolio-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-info{
  padding: 2rem 1.5rem;
}

.portfolio-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.portfolio-title a svg:hover{
  fill: var(--warnaUtama);
}

.portfolio-title a svg{
  transition: 0.3s ease-in-out;
}

.portfolio-tags{
  display: flex;
  margin: 1rem 0;
}

.portfolio-tags p {
  font-size: .9rem;
  /* border: 1px solid var(--warnaborder); */
  padding: 1rem 1rem;
  color: var(--warnaTextKedua);
}

/* Order Process */

#order {
  background-color: var(--backgroundKedua);
  padding: var(--sectionPadding);
}

.order-step{
  padding: 2rem 1rem;
  text-align: center;
  background: var(--backgroundUtama);
  border-radius: var(--itemBorderRadius);
}

.order-icon img {
  width: 180px;
  height: 180px;
  width: fit-content;
  margin: 0 auto;
  padding: auto;
  border-radius: 0.5rem;
}

/* Contact Section */
#contact{
  padding: var(--sectionPadding);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
  gap: 3rem;
}

.contact-form div{
  margin-bottom: 1.5rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--backgroundKedua);
  border: 1px solid var(--warnaborder);
  border-radius: 5px;
  resize: none;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border: 1px solid #7d7d7d;
}

.btn-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--warnabutton);
  border: 1.5px solid var(--itemBorderRadius);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  opacity: 0.8;
}

.btn-submit:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px;
  color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  opacity: 1;
}

.contact-item {
  display : flex;
  gap : 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-item-icon {
  background: var(--backgroundKedua);
  width: 53px;
  height: 53px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items:center ;
}

.contact-item-detail h3 {
  margin-bottom: .5rem;
}

footer {
  padding: 4rem 0;
  background: var(--backgroundKedua);
  text-align: center;
}

.footer-icons {
  margin-bottom: 1rem;
}

.footer-icons a {
  margin: 0 .5rem;
  opacity: 0.7;
  transition: 0.3s ease-in-out;

}

.footer-icons a:hover {
  opacity: 1;

}
