/* ================= RESET ================= */
*{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #F4EEDC, #EFE6CF);
    padding-top: 90px; /* ruang navbar fixed */
    color: #2E2A26;
}

/* ================= NAVBAR ================= */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    padding: 0 50px;
    background: linear-gradient(90deg, #3B2F2F, #2E2424);

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    z-index: 1000;
}

.nav-left{
    display: flex;
    align-items: center;
    gap: 1px;
    font-weight: 900;
    color: #E9DFC7;
}

.nav-logo{
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* MENU */
.nav-menu{
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-menu a{
    text-decoration: none;
    color: #E9DFC7;
    font-weight: 600;
    position: relative;
    transition: color .3s;
}

.nav-menu a.active{
    color: #E6B566;
}

.nav-menu a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: #E6B566;
    border-radius: 10px;
    transition: .3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
    width: 100%;
}

/* ================= COMMENT SECTION ================= */
.comment-section{
    max-width: 820px;
    margin: 70px auto;
    padding: 48px;

    background: linear-gradient(180deg, #FFF9EB, #F6EED9);
    border-radius: 28px;

    box-shadow: 0 35px 70px rgba(0,0,0,.18);
}

.comment-section h2{
    text-align: center;
    margin-bottom: 8px;
    font-size: 26px;
}

.subtitle{
    text-align: center;
    color: #6b7280;
    margin-bottom: 36px;
}

/* ================= FORM ================= */
.comment-form textarea,
.comment-input{
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #d1d5db;

    font-size: 14px;
    line-height: 1.6;

    transition: .25s ease;
}

.comment-form textarea{
    height: 130px;
    resize: none;
}

.comment-form textarea:focus,
.comment-input:focus{
    outline: none;
    border-color: #C9A24D;
    box-shadow: 0 0 0 3px rgba(201,162,77,.25);
}

/* BUTTON */
.comment-form button{
    margin-top: 16px;
    padding: 14px 28px;

    border: none;
    border-radius: 16px;

    background: linear-gradient(135deg, #8B5A12, #764500);
    color: #fff;

    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.comment-form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(118,69,0,.35);
}

/* ================= INFO ================= */
.info{
    margin-top: 14px;
    color: #2563eb;
    font-size: 14px;
}

/* ================= COMMENT LIST ================= */
.comment-list{
    margin-top: 48px;
}

.comment-card{
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 18px;

    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    transition: .25s;
}

.comment-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,.16);
}

.comment-header{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

/* ================= EMPTY ================= */
.empty{
    text-align: center;
    color: #6b7280;
}

.comment-info{
    margin-top:18px;
    background:#ECFDF5;
    color:#065F46;
    padding:14px 18px;
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    text-align:center;
}