* {
    margin: 0;
    padding: 0;

}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: white;
    justify-content: center;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
/* NAVIGATION */

.navbar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
}

.logo {
    margin-left: 300px;
}

.logo img {
    display: flex;
    width: 90px;
    align-items: center;
}

.text-logo {
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}


.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.navbar .navbar-ul {
    list-style: none;
    margin: 0 1rem;
    padding: 30px;
    align-items: center;
    display: flex;
    margin-right: 200px;
}

.navbar .navbar-ul .navbar-li {
    margin-right: 20px;
}

.navbar .navbar-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-family: "Poetsen One", sans-serif;

}

.navbar .navbar-ul .navbar-li .navbar-link {
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
    padding: 30px 20px;
    opacity: 70%;
    transition: all 0.5s ease-in-out;

}

.navbar .navbar-ul .navbar-li .navbar-link::before {
    content: " ";
    position: relative;
    left: -20px;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #4f7942;
    transition: all 0.5s ease-in-out;
}

.navbar .navbar-ul .navbar-li .navbar-link:hover::before {
    left: 0;
    position: absolute;
}

.navbar .navbar-ul .navbar-li .navbar-link:hover {
    opacity: 100%;
}



.navbar .navbar-ul .navbar-li .active::before {
    content: " ";
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #4f7942;
    transition: all 0.5s ease-in-out;
}

.navbar .navbar-ul .navbar-li .active {
    opacity: 100%;
}

.menu-icon {
    display: none;
}

/*RESPONSIVE NAVIGATION BAR*/
.reponsive-navbar ul {
    display: none;
}

.reponsive-navbar .hidden {
    display: none;
}

/* MAIN BOARD */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}


.hero-content h1 {
    font-size: 3rem;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.hero-section {
    position: relative;
    width: 100%;
    height: 505px;
    /* tinggi area gambar */
    overflow: hidden;

}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* warna hitam semi transparan */
    z-index: 1;

}

.hero-content {
    position: absolute;
    top: 70%;
    left: 20%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

.hero-content button {
    margin-top: 10px;
    padding: 15px 40px;
    background-color: hwb(106 26% 53%);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: .9rem;
}

/*ABOUT SECTION*/

.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    background: #fff;
}

.column {
    flex: 1;
    padding: 0 15px;
}

.title {
    text-align: left;
}

.text p {
    font-size: 1.2rem;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}


.title .line {
    width: 40px;
    height: 4px;
    background-color:#4f7942;
    margin-bottom: 10px;
}

.title h2 {
    margin: 0;
    font-size: 2.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    
}

.text {
    text-align: justify;
    color: #555;
    
}

.image img {
    width: 100%;
    max-width: 700px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* VISI DAN MISI */
.goal-section {
    background-color: #f7f9fa;
    padding: 50px 20px;
    width: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3rem;
    margin: 0;
    color: #222;
    font-family: "Montserrat", sans-serif;
}

.section-header .line {
    width: 50px;
    height: 4px;
    background-color: #4f7942;
    margin-top: 8px;
}       

.goal-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10rem;
}

.goal-column-left {
    min-width: 300px;
}

.goal-column-right {
    min-width: 300px;
}

.goal-column h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    font-family: "Montserrat", sans-serif;

}

.goal-column p {
    color: #555;
    line-height: 1.6;
    text-align: justify;
    font-family: "Poppins", sans-serif;
    margin-bottom: 15px;
}

/* IMAGE SECTON */
  .image-container {
            position: relative;
            width: 100%;
            height: 100%;
            margin: auto;
        }

        .image-container img {
            width: 100%;
            height: 640px;
            display: block;
            object-fit: cover;
        }

        .overlay-text {
            position: absolute;
            top: 0;
            left: 12%;
            width: 100%;
            height: 100%;
            max-width: 500px;
            background: rgba(0, 0, 0, 0.5); /* Hitam dengan efek fade/transparan */
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .overlay-text .image-subtitle {
            margin: 0;
            font-size: 35px;
            display: flex;
            left: 0;
        }

        .overlay-text .image-title {
            margin: 0;
            font-size: 35px;
            display: flex;
            left: 0;
            font-weight: 400;
            
        }

        .overlay-text p {
            margin-top: 10px;
            font-size: 16px;
            text-align: left;
            margin-bottom: 40px;
        }

/* WORK SECTION */

.work-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20%;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 7rem;
}

.work-images {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.work-main-image {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  
}

.work-side-image {
  position: absolute;
  width: 200px;
  bottom: -30px;
  left: 180px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 5px solid #fff;
}

.work-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.work-subheading {
  font-size: 14px;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 10px;
  font-weight: bold;
}

.work-heading {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #111;
}

.work-text-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* KOMITMEN SECTION */


.commitment-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 7rem;
  background-color: #f7f9fa;
}

.commitment-text {
  flex: 1;
  max-width: 500px;
  min-width: 280px;
}

.commitment-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.commitment-title {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight:500;
  color: #111;

}

.commitment-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.commitment-image {
  flex: 1;
  min-width: 300px;
  max-width: 4%;
}

.commitment-image-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
   box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);

}

/* FOOTER */
footer {
    background-color: #1f1f1f;
    color: #fff;
    padding: 60px 30px 20px 30px;
    
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-logo {
    color: #00bfa6;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 6px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 6px;
    color: #00bfa6;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00bfa6;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.footer-gallery img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #333;
    padding: 20px 0 10px;
    margin-top: 30px;
}


@media only screen and (max-width: 1440px) {
    /*NAVIGATION BAR*/

    .navbar .navbar-ul {
        margin-right: 100px;
    }

    .navbar .navbar-ul .navbar-li .navbar-link {
        font-size: .9rem;
    }

    .logo {
        margin-left: 200px;
    }

    .logo img {
        width: 100px;
    }

    /* MAIN BOARD */

    .hero-section {
        height: 450px;
    }
    
    /* WORK SECTION */

    .work-section {
        padding: 60px 10%;
    }

}

@media only screen and (max-width: 1025px) {
      /*NAVIGATION BAR*/

    .navbar .navbar-ul {
        margin-right: 5px;
    }

    .logo {
        margin-left: 20px;
    }

    /* MAIN BOARD */
    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 400px;
    }

    /* WORK SECTION */
    .work-section {
        padding: 60px 5%;
    }

    .work-main-image {
        width: 320px;
    }
    .work-side-image {
        width: 170px;
    }

    .work-heading {
        font-size: 30px;
    }

    .work-subheading {
        font-size: 13px;
    }

}

@media only screen and (max-width: 768px) {
     /*NAVIGATION BAR*/

    .menu-icon {
        align-items: center;
        display: flex;
    }

    .logo img {
        width: 70px;
    }

    .navbar .navbar-ul {
        display: none;
    }


    /*RESPONSIVE NAVIGATION BAR */

    .reponsive-navbar ul {
        display: block;
    }

    .reponsive-navbar ul {
        position: fixed;
        width: 100%;
        flex-direction: column;
        display: flex;
        align-items: center;
        margin-top: 8rem;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
        z-index: 998;
    }

    .reponsive-navbar ul {
        list-style: none;
        box-shadow: black;
    }

    .reponsive-navbar ul li {
        margin: 2rem;
    }

    .reponsive-navbar ul li a {
        text-decoration: none;
        color: black;
        justify-content: center;
        display: flex;
        font-weight: bold;
        opacity: 60%;
        font-family: "Poetsen One", sans-serif;
    }

    .reponsive-navbar ul li a {
        position: relative;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }

    .reponsive-navbar ul li a:hover {
        opacity: 100%;
    }

    /* MAIN BOARD */

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 400px;
    }

    /*ABOUT SECTION*/

        .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .title, .text, .image {
        margin-bottom: 20px;
    }

    .title {
        text-align: center;
    }

    .image img {
        max-width: 500px;
    }

     /* VISI DAN MISI */
    .section-header h2 {
        font-size: 2.4rem;

    }

    .goal-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center ;
        margin-top: 1rem;
    }

    .goal-column {
        margin: 0 auto;
    }

    .goal-column-right {
        max-width:  100%;
        margin-left: 0px;
    }

    .goal-column-left {
        max-width: 100%;
        text-align: left;
        margin-left: 0px;
    }

    .work-section {
        padding: 60px 30%;
    }

    /* IMAGE SECTION */

    .overlay-text {
        left: 0;
    }
}

@media only screen and (max-width: 428px) {
   /* WORK SECTION*/

   .work-main-image {
    max-width: 250px;
   }

   .work-side-image {
    max-width: 150px;
    left: 140px;
   }
}