@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* =========================================================
   KAWRUH SIDEBAR — VIDYA STYLE
   Layout & interaction mengikuti desain Vidya,
   dengan palet khas Kawruh:
   Primary  : #1d283c
   Hover    : #2d3d57
   Accent   : #64758f
   Soft BG  : #f5f7fa
   ========================================================= */

.kawruh-sidebar-wrap,
.kawruh-sidebar-wrap * {
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

.kawruh-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Menu utama */
.kawruh-sidebar a {
    display: block;
    padding: 12px 16px;
    background: #1d283c;
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    border-radius: 8px;
    border-left: 4px solid #64758f;
    box-shadow: 0 2px 8px rgba(29,40,60,.15);
    transition: all .3s ease;
}

.kawruh-sidebar a:hover {
    background: #2d3d57;
    color: #ffffff !important;
    transform: translateX(6px);
    box-shadow: 0 6px 18px rgba(29,40,60,.30);
}

/* Tombol WhatsApp */
.kawruh-wa {
    display: block;
    width: 100%;
    margin: 18px 0;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 20px;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(37,211,102,.35);
    transition: all .3s ease;
}

.kawruh-wa:hover {
    background: #1ebc59;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Info card */
.kawruh-info-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.10);
}

.kawruh-info-title {
    background: #1d283c;
    color: #ffffff;
    text-align: center;
    padding: 17px 14px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.kawruh-info-content {
    padding: 18px;
    background: #f5f7fa;
}

.kawruh-info-content p {
    margin: 0 0 14px;
    color: #222222;
    font-size: 14px;
    line-height: 1.7;
}

.kawruh-info-content a {
    color: #1d283c !important;
    text-decoration: none !important;
    font-weight: 600;
}

.kawruh-info-content a:hover {
    color: #64758f !important;
}

/* Banner template & contact */
.kawruh-template,
.kawruh-contact {
    overflow: hidden;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none;
}

.kawruh-template img,
.kawruh-contact img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.kawruh-template:hover,
.kawruh-contact:hover {
    background: transparent !important;
    transform: translateY(-3px);
}

.kawruh-sidebar a[href="#"] {
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .kawruh-sidebar a {
        font-size: 13px;
        padding: 10px 14px;
    }

    .kawruh-wa {
        font-size: 18px;
    }
}
