/*
Theme Name:  DevCore Child
Theme URI:   https://markjafet.com
Author:      Mark Jafet
Author URI:  https://markjafet.com
Description: Child theme for DevCore. Override styles, templates, and functions here — parent theme updates won't touch your customisations.
Template:    devcore
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devcore-child
*/

/* =========================================================
   DevCore Child — Custom Overrides
   =========================================================
   All parent styles are inherited automatically via
   functions.php. Add your project-specific overrides below.

   TIP: Override CSS variables to retheme the entire site
   without touching any PHP:

   :root {
       --dc-primary:  #7c3aed;   /* Purple accent              */
       --dc-accent:   #f59e0b;   /* Amber CTA                  */
       --dc-font-sans: 'Sora', sans-serif;
   }
   ========================================================= */

/* ── Example: tighten card radius ── */
/*
.dc-card {
    border-radius: 1rem;
}
*/

/* ── Example: different hero gradient ── */
/*
.dc-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}
*/

/*  */
.circ-img img {
      animation-name: rotate-circle;
      animation-direction: reverse;
      animation-duration: 5s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      filter: drop-shadow(0px 0px 5px #333);	
}
.circ-img img {
      animation-name: rotate-circle;
      animation-duration: 10s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    @keyframes rotate-circle {
      to {
        transform: rotate(1turn);
      }
    }
