/* ======================= BAGIAN HOME ======================= */
:root {
    --bg-light: #fdfaf5;
    --bg-dark: #e9e2d9;
    --text-primary: #3d3d3d;
    --text-secondary: #5a5a5a;
    --brand-color: #3b7468;
    --brand-accent: #ff7f50;
    --font-family: 'Lato', sans-serif;
    --font-judul: 'Lakki Reddy', cursive;
}
h1, h2 {
    font-family: var(--font-judul);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}
body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
header {
    background-color: #FFFBF6;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px;
    width: auto;
    display: block;
}
header ul {
    list-style: none;
}
header ul li {
    display: inline-block;
    margin-left: 20px;
}
header ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 120%;
    font-weight: 300;
    padding-bottom: 5px;
    color: #605138;
    transition: color 0.3s, border-color 0.3s;
}
header ul li a:hover {
    color: #184184;
}
header ul li a.active {
    color: #184184;
    border-bottom: 2px solid #184184;
}
#hero-image {
    width: 100%;
    height: 89.5vh;
    background: url('asset/Home/hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%;
    display: flex;
    align-items: center;
}
.hero-content {
    width: 100%;
}
.hero-content h1 {
    font-size: 42px;
    line-height: 1.9;
    margin-top: 290px;
    color: #184184;
    letter-spacing: 1px;
    max-width: 500px;
    font-weight: 550;
    margin-right: 300px;
}
#intro {
    padding-top: 230px;
    padding-bottom: 235px;
    text-align: center;
    position: relative;
    background-color: #FFFBF6;
    background-image: linear-gradient(180deg, #FFFBF6 0%, #F4E9DA 63.94%);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 80%;
    overflow: visible;
}
#intro .container {
    position: relative;
    top: -130px;
}
#intro h2 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #7C6A4B;
}
#intro p {
    text-align: left;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 950px;
    margin: 0 auto 20px;
    color: #605138;
}
.btn {
    display: inline-block;
    background-color: #7C6A4B;
    color: #fff;
    padding: 12px 30px;
    font-size: 20px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 130px;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #8c725e;
}
.hiasan-tengah {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hiasan-tengah img {
    max-width: none;
    width: 900px;
}
footer {
    background-color: #EAD9C1;
    padding-top: 10px;
    position: relative;
}
.footer-decoration {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px 30px 20px;
}
.footer-main {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}
.footer-info, .footer-sitemap {
    min-width: 200px;
}
footer h4 {
    font-size: 23px;
    color: #605138;
}
footer p, footer ul li {
    color: #605138;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 400;
}
.footer-pretext {
  font-size: 23px;
  font-weight: 500;
  color: #605138;
  text-align: left;
  margin: 50px 0 10px 20px;
}

.footer-info, .footer-sitemap {
    transform: translateY(50px);
}
.footer-sitemap ul {
    list-style: none;
}
.footer-sitemap ul li a {
    text-decoration: none;
    color: #605138;
    font-weight: 400;
    transition: color 0.3s;
}
.footer-sitemap ul li a:hover {
    color: #184184;
}
.footer-social {
    position: absolute;
    bottom: 125px;
    right: 150px;
}
.footer-social a {
    display: inline-block;
    margin-left: 20px;
}
.footer-social img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-social img:hover {
    opacity: 1;
}
.footer-copyright {
    background-color: #7C6A4B;
    text-align: left;
    padding: 20px;
    margin-top: 60px;
    position: relative;
}
.footer-copyright p {
    margin: 0;
    font-size: 20px;
    margin-left: 140px;
    color: #FFFBF6;
        max-width: 100%;      
    overflow-wrap: break-word; 
    white-space: normal;   
}


/* ======================= BAGIAN CERITA ======================= */

#cerita-hero {
    width: 100%;
    height: 91vh;
    background: url('asset/Cerita_kami/hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%;
    display: flex;
    align-items: center;
}

#awal-mula {
    padding:100px 0;
    text-align: center;
    background-color: var(--bg-light);
}

#awal-mula h2 {
    font-size: 45px;
    font-weight: 400;
    color: #605138;
    margin-bottom: 30px;
}

#awal-mula p {
    font-size: 21px;
    line-height: 1.5;
    color: #605138;
    max-width: 950px;
    margin: 0 auto 20px;
    text-align: justify;
}

#cta {
    padding-top: 150px;
    padding-bottom: 300px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    text-align: center;
    background-image: linear-gradient(180deg, #FFFBF6 0%, #F4E9DA 63.94%);
    overflow: hidden;
}

#cta h2 {
    font-size: 45px;
    font-weight: 400;
    color: #605138;
}

#cta p {
    font-size: 35px;
    color: #605138;
    margin-top: 10px;
}

.hiasan-bawah {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hiasan-bawah img {
    max-width: none;
    width: 900px;
}

.tentang-kami {
    padding: 10px 0;
    background-color: #fdfaf5;
}

.tentang-kami .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}



.kolom-kanan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.baris-gambar-kecil {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.baris-gambar-kecil img {
    width: 48%;
    height: auto;
    object-fit: cover;
}

.kolom-kiri img {
    width: 102%;
    height: auto;
    display: block;
}

.teks-tentang-kami p {
    font-size: 21px;
    line-height: 1.2;
    color: #605138;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: justify;
}

.teks-tentang-kami p:last-child {
    margin-bottom: 0;
}

.hidden-left, .hidden-right {
  opacity: 0;
  transition: all 1s ease-in-out;
}

.hidden-left {
  transform: translateX(-100px); 
}

.hidden-right {
  transform: translateX(100px);
}

.show {
  opacity: 1;
  transform: translateX(0); 
}
/* ======================= BAGIAN PROSES RECYCLE ======================= */
.hero-section-unik {
    background-color: #F4E9DA; 
    position: relative; 
    min-height: 708px;
    display: flex;
    align-items: center;
}

.hero-section-unik .container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

.teks-hero {
    flex: 1;
    margin: 50px 400px 20px 40px;
    align-self: center;
    font-size: 25px;
    max-width: 1000px; 
    box-sizing: border-box;
    color: #184184;
}
.teks-hero h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 30px; 
}

.teks-hero p {
    margin-bottom: 25px; 
    line-height: 1.6; 
}


.gambar-hero-nembus {
position: absolute;
    bottom: -490px; 
    left: 20%;
    width: 110%; 
    max-width: 2500px; 
}

.gambar-hero-nembus img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section .container {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px 30px;
    align-items: flex-start; 
}
.hero-section-unik + .content-section {
    margin-top: 150px;
}

.image-column {
    flex-basis: 40%;
}
.text-column {
    flex-basis: 80%;
    max-width: 950px;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
}
.section-paling-atas {
    margin-top: 290px;
}

.text-column h2 {
    font-family: var(--font-judul);
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.text-column h3 {
    font-family: var(--font-judul);
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #605138;
}

.text-column p {
    font-family: var(--font-family);
    font-size: 21px;
    line-height: 1.5;
    text-align: justify;
    color: #605138;
    margin-bottom: 16px;
}

.layout-reverse .container {
    flex-direction: row-reverse;
}

.cta-section {
    padding: 10px 30px;
    background-image: linear-gradient(180deg, #FFFBF6 0%, #F4E9DA 63.94%);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-judul);
    font-size: 42px;
    margin-top: 50px;
    color: #605138;
}

.cta-section p {
    max-width: 1500px;
    margin: 30px auto 1px auto;
    font-size: 35px;
    margin-top: 30px;
    line-height: 1.6;
    text-align: center;
    color: #605138;
}

.cta-decoration {
    max-width: 900px;
    width: 100%;
    position: relative;
    top: 15px;

}

/* ======================= BAGIAN PRODUK UNGGULAN ======================= */
#hero-produk-unggulan {
    width: 100%;
    height: 91vh;
    background: url('asset/prdk/hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%;
    display: flex;
    align-items: center;
}

#produk-unggulan {
    padding: 80px 0;
    background-color: var(--bg-light);
    overflow: hidden; 
}

#produk-unggulan h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    color: #605138;
    margin-bottom: 50px;
}

.scroll-container {
    width: 100vw; 
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    overflow-x: scroll;
    gap: 80px;
    cursor: grab;
    user-select: none;
    padding: 20px 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.produk-card {
    flex: 0 0 400px;
    text-align: center;
}

.produk-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 5px;
    pointer-events: none;
}

.produk-card h2 {
    font-size: 35px;
    font-weight: 400;
    color: #605138;
    margin-bottom: 8px;
}

.produk-card p {
    font-size: 20px;
    color: #605138;
    line-height: 1.5;
}
@media (max-width: 1366px) {
    .container {
        max-width: 1140px;
    }
    h1, .hero-content h1 { font-size: 36px; }
    h2 { font-size: 40px; }
    
    .hero-content h1 {
        margin-top: 180px;
        margin-right: 0;
    }
    .teks-hero {
        margin: 50px 400px 20px 40px;
        font-size: 20px;
    }
    .teks-hero h2 {
        font-size: 32px;
    }
    .text-column p {
        font-size: 18px;
    }
    .cta-section p {
        font-size: 28px;
    }
    .gambar-hero-nembus {
        position: absolute;
        bottom: -400px;
    }
    .gambar-hero-nembus img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (min-width: 1920px) {
    /* ======================= BAGIAN PROSES RECYCLE ======================= */
    .hero-section-unik {
        background-color: #F4E9DA; 
        position: relative; 
        min-height: 916px;
        display: flex;
        align-items: center;
    }

    .hero-section-unik .container {
        display: flex;
        align-items: center;
        justify-content: space-between; 
    }

    .teks-hero {
        flex: 1;
        margin: 50px 600px 20px 40px;
        align-self: center;
        font-size: 25px;
        max-width: 1000px;
        box-sizing: border-box;
        color: #184184;
    }
    .teks-hero h2 {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .teks-hero p {
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .gambar-hero-nembus {
        position: absolute;
        bottom: -450px;
        left: 25%;
        width: 100%;
        max-width: 2500px;
    }

    .gambar-hero-nembus img {
        width: 100%;
        height: auto;
        display: block;
    }

    .content-section .container {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding: 40px 30px;
        align-items: flex-start; 
    }
    .hero-section-unik + .content-section {
        margin-top: 150px;
    }

    .image-column {
        flex-basis: 40%;
    }
    .text-column {
        flex-basis: 80%;
        max-width: 950px;
    }

    .image-column img {
        width: 100%;
        height: auto;
        display: block;
    }
    .section-paling-atas {
        margin-top: 290px;
    }

    .text-column h2 {
        font-family: var(--font-judul);
        font-size: 42px;
        margin-bottom: 20px;
        color: var(--text-primary);
    }

    .text-column h3 {
        font-family: var(--font-judul);
        font-size: 28px;
        margin-bottom: 15px;
        color: #605138;
    }

    .text-column p {
        font-family: var(--font-family);
        font-size: 23px;
        line-height: 1.7;
        text-align: justify;
        color: #605138;
    }

    .layout-reverse .container {
        flex-direction: row-reverse;
    }

    .cta-section {
        padding: 10px 30px;
        background-image: linear-gradient(180deg, #FFFBF6 0%, #F4E9DA 63.94%);
        text-align: center;
    }

    .cta-section h2 {
        font-family: var(--font-judul);
        font-size: 42px;
        margin-top: 50px;
        color: #605138;
    }

    .cta-section p {
        max-width: 1500px;
        margin: 30px auto 1px auto;
        font-size: 35px;
        margin-top: 30px;
        line-height: 1.6;
        text-align: center;
        color: #605138;
    }

    .cta-decoration {
        max-width: 900px;
        width: 100%;
        position: relative;
        top: 15px;
    }
      .footer-copyright p {
    margin-left: 390px;
  }
}
@media (max-width: 1280px) {
    .footer-copyright p {
        margin-left: 90px !important;
    }
    #awal-mula p {
    font-size: 18px;
    line-height: 1.5;
    }
    .teks-tentang-kami p {
    font-size: 18px;
    line-height: 1.2;
    }
    .kolom-kiri img {
    width: 103%;
    height: auto;
    display: block;
    }
    .gambar-hero-nembus {
    position: absolute;
    bottom: -490px;
    }
    .section-paling-atas {
    margin-top: 310px;
    }
    .hero-section-unik {
    min-height: 513px; 
    }
    #intro p {
    font-size: 18px;
    }
}

@media (max-width: 1440px) {

    .footer-copyright p {
    margin-left: 100px; 
    }
    .gambar-hero-nembus {
    position: absolute;
    bottom: -450px;
    }
}
@media (min-width: 1376px) and (max-width: 1399px) {
  .footer-copyright p {
    margin-left: 60px; 
    }
}


/* ================= BLOKIR MOBILE ================= */
#mobile-blocker {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  color: #222;
  font-family: sans-serif;
  font-size: 18px;
  text-align: center;
  padding: 100px 20px;
  box-sizing: border-box;
  z-index: 9999;
}

#mobile-blocker.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body.block-scroll,
html.block-scroll {
  overflow: hidden;
  height: 100vh;
}
