/*
Theme Name: DRH Secure
Theme URI: https://drhsecure.co.za
Author: DRH Secure Web Team
Author URI: https://drhsecure.co.za
Description: Custom classic WordPress theme for DRH Secure — professional security consulting, PSIRA-accredited training, and background screening / verification services for South African businesses.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drhsecure
*/

/* ==========================================================================
   Base
   ========================================================================== */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-gradient {
    background: linear-gradient(rgba(238, 238, 238, 0.74), rgba(15, 23, 42, 0.7)),
                url('https://images.unsplash.com/photo-1577412647305-991150c7d163?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ==========================================================================
   Service cards
   ========================================================================== */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav-scrolled {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.dark-blue-bg {
    background-color: #0f172a;
}

.dark-blue-txt {
    color: #0f172a;
}

.dark-blue-border {
    border-color: #0f172a;
}

.menu-item {
    font-weight: 600;
}

.single p {
    margin-bottom:20px;
}

.single ul {
    list-style-type: disc;
    margin-left: 20px;
}
.single ol {
    list-style-type: decimal;
    margin-left: 20px;
}
.single li {
    margin-bottom: 10px;
}
.single h1, .single h2, .single h3, .single h4, .single h5, .single h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}