body {
    font-family: Arial, sans-serif;
}

.hero {
    background-image: url("../images/bg-landing.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    height: 100vh;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 10%;
    /* Kurangi dari 15% untuk lebih balance */
    max-width: 700px;
    margin: 0 auto;
    /* Center jika perlu */
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.hero {
    min-height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* gelap biar teks jelas */
    z-index: 2;
}

.hero .container {
    z-index: 3;
}

.hero-content {
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-custom {
    background: #6f4e37;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: background 0.3s ease;
    /* Smooth hover */
}

.btn-custom:hover {
    background: #5a3e2b;
    color: #fff;
}

nav a.nav-link {
    color: #fff !important;
    margin-right: 20px;
}

nav a.nav-link:hover {
    text-decoration: underline;
}

nav.navbar {
    position: absolute;
    width: 100%;
    z-index: 1001;
}

/* Media Queries untuk Responsivitas */
@media (max-width: 768px) {

    /* Tablet & Mobile */
    .hero-content {
        padding-top: 5%;
        /* Kurangi padding di mobile */
    }

    .hero h1 {
        font-size: 2rem;
        /* Smaller di mobile */
    }

    .hero p {
        font-size: 1rem;
    }

    nav a.nav-link {
        margin-right: 0;
        /* Reset margin di collapse menu */
        margin-bottom: 10px;
    }

    .btn-custom {
        padding: 8px 20px;
        /* Smaller button di mobile */
    }
}

@media (max-width: 576px) {

    /* Small mobile */
    .hero {
        height: 90vh;
        /* Hindari overflow di notch phone */
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Foto profile */
.team-img {
    width: 150px;
    /* lebih kecil supaya proporsional di layar mobile */
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0d6efd;
    padding: 2px;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    /* efek zoom ringan saat hover */
}

/* Tambahan untuk teks */
.team-card h5 {
    margin-top: 1rem;
    font-weight: 600;
}

.team-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.team-logo-wrapper {
    background: #f8f9fa;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.navbar-nav .nav-link.active,
.navbar-nav .dropdown-item.active {
    color: #f1c40f !important;
    font-weight: bold;
}

.navbar-nav .dropdown-item.active {
    background-color: #333;
    /* atau sesuai tema */
}

/* Custom Dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: none;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transition: all 0.3s ease;
}

#our-partners {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.partner-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.partner-logo img:hover {
    transform: scale(1.05);
}

h2 {
    letter-spacing: 0.5px;
}

/* Item style */
.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #fff;
    transform: translateX(5px);
}

/* Active menu (pakai @yield) */
.dropdown-menu .active {
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff !important;
}


.card img {
    width: 100px;
    height: 200px;
    object-fit: fill;
    display: block;
    margin: 0 auto;
}

.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.text-brown {
    color: #6f4e37;
    /* warna kopi */
}

.btn-brown {
    background-color: #6f4e37;
    color: #fff;
}

.btn-brown:hover {
    background-color: #5a3d2a;
    color: #fff;
}

/* Custom CSS untuk menyesuaikan tampilan gambar */
.trace-section {
    font-family: Arial, sans-serif;
    color: #4A4A4A;
}

.trace-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002244;
}

.underline-short {
    width: 60px;
    height: 3px;
    background-color: #f1c40f;
    border-radius: 2px;
}

.trace-description {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    /* text-muted */
}

.trace-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.7);
    /* Border putih transparan */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trace-item {
    padding: 10px;
}

.trace-text {
    color: #002244;
    margin-top: 10px;
    font-size: 1.1rem;
}

.btn-brown {
    background-color: #5d4037;
    color: white;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-brown:hover {
    background-color: #4a332d;
    color: white;
}

/* Styling for Donna section */
.donna-section {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    /* Warna latar belakang abu-abu muda */
}

.donna-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002244;
    /* Warna teks biru gelap */
    line-height: 1.2;
}

.donna-text {
    font-size: 1rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.donna-text strong {
    font-weight: bold;
}

.btn-brown {
    background-color: #5d4037;
    color: white;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-brown:hover {
    background-color: #4a332d;
}

.underline {
    width: 80px;
    height: 3px;
    background: #f4c542;
    /* warna kuning seperti contoh */
    border-radius: 2px;
}

.bg-brown {
    background-color: #6f4e37;
    /* coklat kopi */
}

.hero-impact .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 60px 15px;
    border-radius: 12px;
}

.impact-card {
    background: #fff;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bg-brown {
    background-color: #6f4e37 !important;
}

.text-brown {
    color: #6f4e37 !important;
}

@media (max-width: 768px) {
    .hero-impact img {
        max-height: 300px;
    }
    .trace-title {
        font-size: 1.8rem;
    }
    .impact-icon {
        width: 60px;
        height: 60px;
    }
}


/* Responsivitas tambahan khusus untuk Our Impact */

@media (max-width: 992px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 40px 15px;
    }

    .impact-card {
        padding: 1.5rem;
    }

    .impact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .trace-title {
        font-size: 1.8rem;
    }

    .trace-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }

    .impact-card ul {
        font-size: 0.85rem;
    }
}


.hero-impact img {
    filter: brightness(70%);
}

.hero-impact .hero-overlay {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.impact-img {
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-impact h1 {
        font-size: 1.8rem;
    }
    .hero-impact p {
        font-size: 1rem;
    }
    .trace-title {
        font-size: 1.8rem;
    }
    .trace-description {
        font-size: 0.95rem;
    }
}


.hero-impact img {
    filter: brightness(70%);
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 60px 15px;
    border-radius: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.trace-section {
    font-family: 'Poppins', sans-serif;
    color: #4A4A4A;
}

.trace-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C1810;
}

.underline-short {
    width: 70px;
    height: 4px;
    background-color: #c49b63;
    border-radius: 2px;
}

.trace-description {
    max-width: 750px;
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.7;
}

.impact-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.impact-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 50%;
    background-color: #6f4e37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.text-brown { color: #6f4e37 !important; }

@media (max-width: 768px) {
    .trace-title { font-size: 2rem; }
    .trace-description { font-size: 0.95rem; }
    .impact-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}

/* Accent tone khusus halaman Ethics */
.hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 12px;
}

.trace-title {
    color: #3E2723; /* lebih hangat dari coklat kopi */
}

.impact-icon {
    background-color: #8B5E3C; /* warna coklat lebih lembut */
}

/* Aksen khusus halaman Sustainability */
.impact-icon.bg-success {
    background-color: #2e7d32 !important; /* hijau alami */
}

.trace-title {
    color: #1b5e20; /* hijau tua elegan */
}

.underline-short {
    background-color: #66bb6a; /* hijau lembut */
}

/* ===============================
   EXPERIENCE SECTION STYLING
   =============================== */
.experience-section {
  background: linear-gradient(180deg, #fdfcfb 0%, #f8f5f2 100%);
  font-family: 'Poppins', sans-serif;
  color: #4a4a4a;
}

.experience-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3E2723; /* coklat tua elegan */
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.underline {
  width: 80px;
  height: 4px;
  background-color: #c49b63; /* gold coffee tone */
  margin: 0 auto;
  border-radius: 2px;
}

.experience-text {
  max-width: 850px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5c5c5c;
}

.experience-highlight {
  background: #fff;
  border-left: 5px solid #c49b63;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  max-width: 850px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-style: italic;
}

.experience-text-small {
  max-width: 700px;
  font-size: 1rem;
  color: #7a7a7a;
  line-height: 1.6;
}

.btn-brown {
  background-color: #6f4e37;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-brown:hover {
  background-color: #5a3d2a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(111, 78, 55, 0.3);
}

/* Responsiveness */
@media (max-width: 992px) {
  .experience-title {
    font-size: 2rem;
  }

  .experience-text,
  .experience-highlight {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .experience-title {
    font-size: 1.8rem;
  }

  .experience-text,
  .experience-highlight {
    font-size: 0.95rem;
  }

  .btn-brown {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* === OUR STORIES STYLING === */
.stories-hero {
  background: url("../images/bg-landing.jpg") center/cover no-repeat;
  height: 60vh;
  position: relative;
}

.stories-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
}

.story-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.story-img-wrapper {
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-img {
  transform: scale(1.05);
}

.story-body {
  padding: 1.5rem;
}

.text-brown {
  color: #6f4e37 !important;
}

.bg-brown {
  background-color: #6f4e37 !important;
}

.underline {
  width: 80px;
  height: 4px;
  background-color: #c49b63;
  border-radius: 2px;
}

/* Responsif */
@media (max-width: 768px) {
  .stories-hero {
    height: 50vh;
  }
  .story-img {
    height: 200px;
  }
}

