/*
 Theme Name:   Twenty Twenty-Five Child
 Description:  This is a child theme of Twenty Twenty-Five
 Author:       Kostas
 Author URI:   http://mantodea.io
 Template:     twentytwentyfive
 Version:      1.0
 Text Domain:  twentytwentyfive-child
*/

/* Add your custom CSS below this line */

/* Apply this CSS to your WordPress section (change .wp-section to your desired selector) */
.mantodea_background {
  position: relative;
  overflow: hidden;
  background-color: #1d1f20; /* Base background color */
  background-image: 
    /* Creates an abstract radial dot pattern */
    repeating-radial-gradient(
      circle at 50% 50%, 
      rgba(255, 255, 255, 0.1) 0px, 
      rgba(255, 255, 255, 0.1) 10px, 
      transparent 10px, 
      transparent 20px
    ),
    /* Overlays a subtle, diagonal linear texture */
    repeating-linear-gradient(
      45deg, 
      transparent, 
      transparent 10px, 
      rgba(255, 255, 255, 0.05) 10px, 
      rgba(255, 255, 255, 0.05) 20px
    );
  /* Set distinct background sizes for each layer to create harmony */
  background-size: 200px 200px, 100px 100px;
}
