/*
 Theme Name:   Divi Child Theme
 Theme URI:    https://risingphoenixconstruction.com/divi-child-theme/
 Description:  A custom child theme for Divi, tailored for Rising Phoenix Construction's excavation, remodeling, gutters, and sheet metal services.
 Author:       PIXRITE PMA
 Author URI:   https://www.pixrite.com/
 Template:     Divi
 Version:      1.0.0
 Text Domain:  divi-child
*/

@charset "UTF-8";

:root {
    --primary-orange: #f8981d;
    --dark-gray: #212222;
    --soft-beige: #e8e0d8;
    --slate-gray: #6a7b8c;
    --warm-off-white: #f5f5f5;
    --rusty-red: #a63c2f;
    --metallic-silver: #b0b7bc;
    --golden-yellow: #d4a017;
}

/* Disable text selection */
body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Watermark overlay (subtle, for screenshot deterrence) */
body::after {
    content: "© Rising Phoenix Construction";
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: rgba(33, 34, 34, 0.3); /* #212222 with low opacity */
    font-size: 14px;
    pointer-events: none;
    z-index: 9999;
}

.et_pb_contact_form input,
.et_pb_contact_form textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}