html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
}

/* navbar */
.custom-nav{
    background:#6B3E26;
}

body{
    padding-top:0;
}

/* section */
.section{
    padding:100px 0;
}

/* hero */
.hero{
    background:url("https://images.unsplash.com/photo-1603201667141-5a3e1a5b6e8a") center/cover;
    height:100vh;
    display:flex;
    align-items:center;
}

/* kontak */
.kontak{
    background:#6B3E26;
}

/* footer */
footer{
    background:#3b2115;
    color:white;
}

/* menu aktif */
.navbar .nav-link{
    transition:0.3s;
}

.navbar .nav-link.active{
    color:#FFD700 !important;
    font-weight:bold;
    border-bottom:2px solid #FFD700;
}

/* HERO SLIDER - PERBAIKAN AGAR TENGAH SEMPURNA */
.hero-slider{
    margin-top: 0;
}

.slide-img{
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%);
}

/* PERBAIKAN UTAMA: caption jadi tengah sempurna */
.carousel-caption{
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    bottom: auto !important;
    right: auto !important;
    text-align: center !important;
    width: 100%;
    padding: 20px;
}

.carousel-caption h1{
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.carousel-caption p{
    font-size: 20px;
    text-align: center;
}

.carousel-caption .btn {
    display: inline-block;
    margin: 10px auto;
}

/* mobile */
@media(max-width:768px){
    .carousel-caption h1{
        font-size: 28px;
    }
    
    .carousel-caption p{
        font-size: 16px;
    }

    .slide-img{
        height: 80vh;
    }
}

/* SECTION KONTAK */
.kontak-section{
    background:#7a3f21;
    padding:80px 0;
}

/* maps */
.map-container iframe{
    border-radius:12px;
}

/* tombol sosial */
.sosial-btn{
    display:block;
    background:#C9A227;
    color:#000;
    text-decoration:none;
    padding:12px;
    margin:10px auto;
    width:250px;
    border-radius:8px;
    transition:0.3s;
    font-weight:bold;
}

.sosial-btn i{
    margin-right:8px;
}

.sosial-btn:hover{
    background:#FFD700;
    transform:scale(1.05);
}

/* ===== SEMUA JUDUL HALAMAN DI TENGAH DENGAN GARIS KUNING ===== */

/* Style untuk semua judul halaman */
.tentang-judul,
.produk-judul,
.section-title,
.galeri-judul {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6B3E26;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    display: block;
}

/* Garis bawah kuning di tengah untuk semua judul */
.tentang-judul::after,
.produk-judul::after,
.section-title::after,
.galeri-judul::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Efek hover melebar */
.tentang-judul:hover::after,
.produk-judul:hover::after,
.section-title:hover::after,
.galeri-judul:hover::after {
    width: 120px;
}

/* ========== TENTANG KAMI SECTION ========== */
.tentang-section {
    padding: 80px 0;
    background-color: #f9f6f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Wrapper flex untuk mengatur logo di kiri dan teks di kanan */
.tentang-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

/* Area Logo - Sebelah Kiri */
.logo-area {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

/* Logo berbentuk persegi */
.logo-persegi {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    background-color: #6B3E26;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-persegi:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.logo-persegi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Area Teks - Sebelah Kanan, Rata Kiri */
.teks-area {
    flex: 1.5;
    min-width: 300px;
}

/* Deskripsi teks - Rata Kiri */
.tentang-deskripsi {
    text-align: left;
}

.tentang-deskripsi p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

/* ========== RESPONSIVE ========== */
/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .tentang-section {
        padding: 60px 0;
    }
    
    .tentang-judul,
    .produk-judul,
    .section-title {
        font-size: 2rem;
    }
    
    .tentang-deskripsi p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .tentang-wrapper {
        flex-direction: column;
        gap: 35px;
    }
    
    .logo-area {
        order: 1;
    }
    
    .teks-area {
        order: 2;
    }
    
    .logo-persegi {
        max-width: 280px;
    }
    
    .tentang-judul,
    .produk-judul,
    .section-title {
        font-size: 1.75rem;
    }
    
    .tentang-deskripsi p {
        text-align: justify;
    }
    
    .tentang-section {
        padding: 40px 0;
    }
}

/* Mobile kecil (max-width: 480px) */
@media (max-width: 480px) {
    .logo-persegi {
        max-width: 220px;
    }
    
    .tentang-judul,
    .produk-judul,
    .section-title {
        font-size: 1.5rem;
    }
    
    .tentang-deskripsi p {
        font-size: 0.85rem;
    }
    
    .tentang-wrapper {
        gap: 25px;
    }
}

.kontak-section .section-title {
    color: #FFFFFF !important;
}
