/* Variables & General */
:root {
    --primary-olive: #3e4f3c;
    --teak-brown: #966f33;
    --bg-light: #fdfcf9;
}

body { 
    background-color: var(--bg-light); 
    color: #333; 
    padding-top: 70px; /* Padding untuk fixed navbar */
}

/* Navbar Customization */
.navbar { 
    background-color: var(--primary-olive) !important; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

.navbar-brand { 
    font-weight: 700; 
    letter-spacing: 1px; 
}

.nav-link { 
    font-weight: 500; 
    transition: color 0.3s; 
}

.nav-link:hover { 
    color: var(--teak-brown) !important; 
}

/* Hero Slider Customization - Updated Height */
.carousel-item {
    height: 60vh; /* Tinggi diperkecil dari 85vh ke 60vh */
    min-height: 350px; /* Batas minimal tinggi agar tetap proporsional di mobile */
    background-color: #000;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.carousel-caption {
    bottom: 20%; /* Posisi teks disesuaikan dengan height baru */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 10;
}

.carousel-caption h2 {
    font-size: 2.8rem; /* Ukuran font sedikit dikecilkan agar seimbang */
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* SEO Section & Content */
.seo-section { 
    padding: 60px 0; 
    background-color: #fff; 
    border-top: 1px solid #eee; 
}

.keyword-highlight { 
    color: var(--teak-brown); 
    font-weight: 600; 
}

.btn-teak { 
    background-color: var(--teak-brown); 
    color: white; 
    border: none; 
    font-weight: 600; 
}

.btn-teak:hover { 
    background-color: #7a5a29; 
    color: white; 
}