/* Custom styles - PT. Digital Berkah Sentosah */

body {
    font-size: 1.0625rem; /* 17px */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll offset for fixed navbar */
html {
    scroll-padding-top: 5rem;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better touch feedback */
    .mobile-nav-link:active {
        background-color: #f0fdf4;
    }
}

/* WhatsApp FAB pulse animation */
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(34, 197, 94, 0.6); }
}

.fixed[aria-label="Chat via WhatsApp"] {
    animation: fabPulse 2s ease-in-out infinite;
}

/* Prose content (blog & portfolio detail) */
.prose-content{color:#374151;line-height:1.8;font-size:1.05rem}
.prose-content h2{font-size:1.5rem;font-weight:800;color:#111827;margin:1.8rem 0 .8rem}
.prose-content h3{font-size:1.25rem;font-weight:700;color:#111827;margin:1.4rem 0 .6rem}
.prose-content p{margin-bottom:1.1rem}
.prose-content ul{list-style:disc;padding-left:1.4rem;margin-bottom:1.1rem}
.prose-content ol{list-style:decimal;padding-left:1.4rem;margin-bottom:1.1rem}
.prose-content a{color:#006837;text-decoration:underline}
.prose-content img{border-radius:.75rem;margin:1.2rem 0;max-width:100%}
.prose-content blockquote{border-left:4px solid #006837;padding-left:1rem;color:#4b5563;font-style:italic;margin:1.2rem 0}
.line-clamp-2{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.line-clamp-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
