/*
Theme Name: Explore Digital Divi Child
Theme URI: https://exploredigital.com/
Author: Explore Digital
Author URI: https://exploredigital.com/
Description: A lightweight, branded Divi child theme for Explore Digital. Safe for updates; customize CSS/JS here.
Template: Divi
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: explore-digital-divi-child
*/
/* ---------- Brand CSS Variables (Explore Digital) ---------- */
:root {
  --ed-primary: #0092e4;     /* Blue */
  --ed-primary-dark: #003189; /* Navy */
  --ed-accent: #e9a837;       /* Gold */
  --ed-secondary: #0a285c;    /* Dark Blue (footer) */
  --ed-muted: #3c3f45;        /* Body text */
  --ed-light-blue: #deeffe;   /* Light Blue */
  --ed-bg: #ffffff;
  --ed-surface: #f7f9fc;
  --ed-radius: 3px;
}

body {
  background: var(--ed-bg);
}

.ed-btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  background: var(--ed-primary);
  color: #fff;
  border: 2px solid var(--ed-primary);
  border-radius: var(--ed-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.ed-btn:hover {
  background: var(--ed-primary-dark);
  border-color: var(--ed-primary-dark);
  color: #fff;
}

.ed-card {
  background: var(--ed-surface);
  border-radius: var(--ed-radius);
  padding: 1.25rem;
}

/* Divi button overrides */
.et_pb_button,
.button,
.et_pb_contact_submit,
.woocommerce a.button {
  background: var(--ed-primary) !important;
  border-color: var(--ed-primary) !important;
  color: #fff !important;
  border-radius: var(--ed-radius) !important;
  border-width: 2px !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

.et_pb_button:hover,
.button:hover,
.et_pb_contact_submit:hover,
.woocommerce a.button:hover {
  background: var(--ed-primary-dark) !important;
  border-color: var(--ed-primary-dark) !important;
  color: #fff !important;
}

/* Login page tweaks */
body.login { background: var(--ed-surface) !important; }
#loginform { border-radius: var(--ed-radius); }
.login #backtoblog a, .login #nav a { color: var(--ed-muted) !important; }
