:root {
    --ijo: #015c16;
    --bg: #0a0a0a;
    --shadow: 0 2px 2px rgb(0 0 0 / 0.5);
  }
  
  body {
    font-size: 1.2rem;
    font-family: 'Work Sans', sans-serif;
    min-height: 4000px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: ();
}
  
  .hero {
    position: relative;
    min-height: 100vh;
  }
  
  .hero h1,
  .hero h4,
  .hero p {
    text-shadow: var(--shadow);
  }
  
  .hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 6rem;
  }
  
  .hero h4 {
    font-size: 1.6rem;
  }
  
  .hero p {
    font-size: 1.4rem;
  }
  
  .hero a {
    color: var(--ijo);
    background-color: white;
    box-shadow: var(--shadow);
  }
  
  .hero a:hover {
    background-color: var(--ijo);
    color: white;
  }


  .custom-navbar {
    background-color: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    z-index: 1030; 
}
.navbar-brand{
  font-family: "Playfair Display", serif;
    font-size: 1.5rem;
}

  .home {

    background-size: cover;
    background-position: center;
    min-height: 100vh;
    margin-top: -3.9rem;
    /* padding-top: 12rem; */
    /* padding-bottom: 5rem; */
}
  
  .about h2,
  .kontak h2,
  .produk h2,
  .team h2{ 
    color: var(--ijo);
    font-family: 'Sacramento';
    font-size: 5rem;
    font-weight: bold;
  }
  

  .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
    font-family: 'Playfair Display', serif; 
    padding: 0 15px; 
    /* background: rgba(0, 0, 0, 0.5); 
    padding: 10px;  */
  }
  

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
  }
  
  
  .carousel-item img {
    height: 100vh;
    object-fit: cover; 
    object-position: center; 
  }
  

.about {
  padding-top: 4rem;
}
  .container-about {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 40px;
}
.main-content {
  display: grid;
  grid-template-columns: 1fr 2fr; /* Gambar di kolom pertama dan teks di kolom kedua */
  gap: 20px;
  align-items: start; /* Menyelaraskan konten di atas */
}

.left-image img {
width: 100%;
max-width: 700px; 
height: auto;     
margin: 0;
display: block;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.right-content {
  text-align: justify;
}

.right-content p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
}

  .produk {
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
  } 

.product-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.product-card:hover img {
    transform: scale(1.1);
}
.product-info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-info {
    opacity: 1;
}
.product-info h5 {
    margin: 0;
    font-size: 1.25rem;
}
.product-info p {
    margin: 5px 0;
}
      


  .team{
    background-image: url(../images/);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 5rem;
    padding-top: 2rem;
  }
  
  
  .team-section {
    text-align: center;
    padding: 50px 0;
}

.team-member {
    display: inline-block;
    margin: 20px;
    position: relative;
    transition: transform 0.3s;
}
.team-member img {
    border-radius: 50%;
    border: 5px solid #ccc;
    width: 150px;
    height: 150px;
    transition: border-radius 0.3s, width 0.3s, height 0.3s;
}
.team-member:hover img {
    border-radius: 0;
    width: 200px;
    height: 200px;
}
.team-member:hover .details {
    display: block;
}
.details {
    display: none;
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.details p {
    margin: 10px 0;
    font-size: 16px;
}
.btn-contact {
    background-color: var(--ijo);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}
.btn-contact:hover {
    background-color: #48cd65;
}


  
  .produk p {
    font-size: 1rem;
    font-weight: 300;
  }
  
  
  .kontak {
    background-color: var(--bg);
    color: white;
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
  
  .kontak .alamat {
    font-size: 1.1rem;
  }
  
  .kontak .description {
    font-size: 1rem;
    font-weight: 300;
  }
  
  .kontak .card {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid #999;
  }
  
  .kontak .card-header {
    border-bottom: 1px solid #999;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
  }
  
  .kontak .card-body {
    font-size: 1rem;
  }
  .kontak .card-body a, span{
    color: white;
    text-decoration: none;
  }
  
  .kontak .card-footer {
    border-top: 1px solid #999;
    font-size: 0.9rem;
    font-weight: 300;
  }
  .kontak .card-footer a{
    color: var(--bg);
    font-weight: bold;
    text-decoration: none;
  }
  .kontak .card-footer a:hover{
    color: white;
  }

  .kontak .card-footer li{
    list-style: none;
    display: inline;
    margin: 0.5rem;
  }

  /* .produk {
    background-color: #f5f5f5;
  } */
  
  footer {
    padding: 2rem;
    background-color: var(--ijo);
    color: white;
  }
  
  footer a {
    color: var(--bg);
    font-weight: bold;
    text-decoration: none;
  }
  
  footer a:hover {
    color: white;
  }
  
  footer li {
    list-style: none;
    display: inline;
    margin: 0.5rem;
  }
  
  .audio-icon-wrapper {
    width: 4rem;
    height: 4rem;
    font-size: 4rem;
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    cursor: pointer;
    color: white;
    opacity: 0.5;
    mix-blend-mode: difference;
    animation: rotating 4s linear infinite;
    transform-origin: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
  }
  
  @keyframes rotating {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }
  

  @media (max-width: 1200px) {

  }
  
  /* laptop */
  @media (max-width: 992px) {
    html {
      font-size: 75%;
    }
  
  }
  
  /* tablet */
  @media (max-width: 768px) {
    html {
      font-size: 65%;
    }
  
    .team-member {
      display: block;
      margin: 20px auto;
  }
  .team-member img {
      width: 100px;
      height: 100px;
  }
  .team-member:hover img {
      width: 100px;
      height: 100px;
  }
  .details {
      position: static;
      transform: none;
      width: auto;
      box-shadow: none;
      margin-top: 10px;
  }
  .main-content {
    grid-template-columns: 1fr;
}


  }
  
  /* mobile phone */
  @media (max-width: 576px) {
    html {
      font-size: 60%;
    }     
    .carousel-caption h3 {
      font-size: 1.5rem; 
    }
    
    .carousel-caption h5 {
      font-size: 1rem; 
    }
  
    .carousel-item img {
      height: 70vh; 
    }
  }