/* Custom styles for PT Anugrah Sentosa Konstruksindo */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Gold color palette */
:root {
    --gold:        #b8960c;
    --gold-light:  #d4af37;
    --gold-dark:   #8b6914;
    --gold-shine:  #f0d060;
}

/* CTA buttons & elements using gold */
.bg-secondary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%) !important;
    color: #fff !important;
    border: none;
}
.bg-secondary:hover {
    background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold-light) 50%, var(--gold) 100%) !important;
    box-shadow: 0 4px 15px rgba(184, 150, 12, 0.4);
}

.text-secondary { color: var(--gold-light) !important; }
.border-secondary { border-color: var(--gold) !important; }

/* Prose content styling */
.prose h2 { font-size: 1.5rem; font-weight: 700; color: #1a3c6e; margin: 1.5rem 0 0.75rem; }
.prose h3 { font-size: 1.25rem; font-weight: 600; color: #1a3c6e; margin: 1.25rem 0 0.5rem; }
.prose p  { margin-bottom: 1rem; line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.25rem; }

/* Lazy load fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s ease; }
img[loading="lazy"].loaded { opacity: 1; }
