/*
Theme Name: Vedax Agency Theme
Theme URI: https://vedaxagency.com/
Description: A premium, fast, and fully editable digital marketing agency theme matching the ThriveAgency design blueprint.
Version: 1.0.0
Author: Vedax Agency Dev Team
Author URI: https://vedaxagency.com/
Text Domain: vedax-agency
*/

/* Reset & Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Typography Overrides to ensure 18px body and Poppins headings */
body {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    color: #1f2937;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
    color: #111827;
}

/* Custom background patterns for WordPress sections */
.bg-dot-grid {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
}

.bg-dot-grid-dark {
    background-image: radial-gradient(#1e293b 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Header & navigation styles */
.vedax-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.vedax-nav-menu a {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.vedax-nav-menu a:hover {
    color: #4f46e5;
}

/* Contact form inputs styled to match Figma design */
.vedax-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.vedax-form-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.vedax-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Typography styles fallback for block/HTML editor content (.prose) */
.prose {
    color: #374151 !important;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 900 !important;
    color: #111827 !important;
    line-height: 1.35 !important;
}
.prose h1 {
    font-size: 2.25rem !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.25rem !important;
}
.prose h2 {
    font-size: 1.875rem !important;
    margin-top: 2.25rem !important;
    margin-bottom: 1rem !important;
}
.prose h3 {
    font-size: 1.5rem !important;
    margin-top: 1.75rem !important;
    margin-bottom: 0.75rem !important;
}
.prose p {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.125rem !important; /* 18px */
    line-height: 1.8 !important;
    margin-bottom: 1.5rem !important;
    color: #4b5563 !important;
}
.prose ul, .prose ol {
    margin-left: 1.75rem !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.125rem !important;
}
.prose ul {
    list-style-type: disc !important;
}
.prose ol {
    list-style-type: decimal !important;
}
.prose li {
    margin-bottom: 0.5rem !important;
    line-height: 1.75 !important;
    color: #4b5563 !important;
}
.prose strong {
    font-weight: 700 !important;
    color: #111827 !important;
}
.prose a {
    color: #4f46e5 !important;
    text-decoration: underline !important;
}
.prose a:hover {
    color: #4338ca !important;
}

