/* Base */
html { scroll-behavior: smooth; }
body { background-color: #0B1120; }

/* Hero overlay pattern */
.hero-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,0.08) 1px, transparent 0);
    background-size: 32px 32px;
}

/* Scroll fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold gradient text */
.text-gradient {
    background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service cards */
.service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(201,168,76,0.4);
}

/* CTA buttons */
.btn-gold {
    background: linear-gradient(135deg, #C9A84C, #E8C96A);
    color: #0B1120;
    font-weight: 700;
    transition: all 0.2s ease;
}
.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Blog cards */
.blog-card { transition: transform 0.2s ease; }
.blog-card:hover { transform: translateY(-3px); }

/* Quill editor styling in admin */
.ql-container { font-family: Inter, sans-serif; min-height: 300px; }
.ql-editor { min-height: 300px; }

/* Prose content for blog posts */
.prose h2 { color: #C9A84C; font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { color: #E8C96A; font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.75rem; font-weight: 600; }
.prose p { color: #d1d5db; line-height: 1.8; margin-bottom: 1.25rem; }
.prose ul, .prose ol { color: #d1d5db; margin-bottom: 1.25rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose a { color: #C9A84C; text-decoration: underline; }
.prose a:hover { color: #E8C96A; }
.prose dt { color: #C9A84C; font-weight: 600; margin-top: 1rem; }
.prose dd { color: #9ca3af; margin-left: 1.5rem; margin-bottom: 0.75rem; }
.prose strong { color: #f9fafb; }

/* Form inputs dark theme */
.form-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    transition: border-color 0.2s ease;
}
.form-input:focus {
    outline: none;
    border-color: #C9A84C;
    background: rgba(255,255,255,0.08);
}
.form-input::placeholder { color: #6b7280; }

/* Mobile menu transition */
#mobile-menu { transition: all 0.2s ease; }

/* Stat counter */
.stat-number {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #C9A84C, #E8C96A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}