/*
Theme Name: SaaSGrail Theme
Author: Youssef
Description: Custom dark theme optimized for SaaS reviews and SEO.
Version: 1.0
*/

* { 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
}
html { 
    scroll-behavior: smooth; 
}
body { 
    background: #0A0A0A; 
}
::-webkit-scrollbar { 
    width: 8px; 
    height: 8px; 
}
::-webkit-scrollbar-track { 
    background: #0A0A0A; 
}
::-webkit-scrollbar-thumb { 
    background: #222; 
    border-radius: 4px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #333; 
}
/* =========================================
   1. WPForms Dark Theme Styling
   ========================================= */
div.wpforms-container-full .wpforms-form .wpforms-field-label,
div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
    color: #ffffff !important;
    font-weight: 500 !important;
}

div.wpforms-container-full .wpforms-form input[type=text],
div.wpforms-container-full .wpforms-form input[type=email],
div.wpforms-container-full .wpforms-form textarea {
    background-color: #141414 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
}

div.wpforms-container-full .wpforms-form input::placeholder,
div.wpforms-container-full .wpforms-form textarea::placeholder {
    color: #71717a !important; 
}

div.wpforms-container-full .wpforms-form button[type=submit] {
    background-color: #0EA5E9 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0.75rem !important;
    font-weight: 500 !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
    width: auto !important;
}

div.wpforms-container-full .wpforms-form button[type=submit]:hover {
    background-color: #0284C7 !important;
}

/* =========================================
   2. Clean Content Links (Architectural Fix)
   ========================================= */
/* استهداف الروابط النصية فقط واستثناء الأزرار سواء الخاصة بـ ووردبريس أو Tailwind */

.content-body p a:not([class*="bg-"]):not([class*="button"]):not([class*="btn"]):not([class*="wp-block"]),
.content-body li a:not([class*="bg-"]):not([class*="button"]):not([class*="btn"]):not([class*="wp-block"]) {
    color: #FF5A1F;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-body p a:not([class*="bg-"]):not([class*="button"]):not([class*="btn"]):not([class*="wp-block"]):hover,
.content-body li a:not([class*="bg-"]):not([class*="button"]):not([class*="btn"]):not([class*="wp-block"]):hover {
    color: #cc4818;
}