{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "create-block/hero-section",
  "version": "1.0.0",
  "title": "Hero Section",
  "category": "section-blocks",
  "icon": "cover-image",
  "description": "A beautiful hero section with background image, title, subtitle, and call-to-action button.",
  "keywords": [
    "hero",
    "banner",
    "section",
    "header"
  ],
  "example": {
    "attributes": {
      "title": "Welcome to Our Amazing Website",
      "subtitle": "Discover the power of modern web design",
      "buttonText": "Get Started",
      "buttonUrl": "#"
    }
  },
  "attributes": {
    "title": {
      "type": "string",
      "default": "Your Hero Title"
    },
    "subtitle": {
      "type": "string",
      "default": "Your compelling subtitle goes here"
    },
    "backgroundImage": {
      "type": "object",
      "default": null
    },
    "backgroundImageId": {
      "type": "number",
      "default": 0
    },
    "buttonText": {
      "type": "string",
      "default": "Call to Action"
    },
    "buttonUrl": {
      "type": "string",
      "default": ""
    },
    "textAlignment": {
      "type": "string",
      "default": "center"
    },
    "overlayOpacity": {
      "type": "number",
      "default": 0.5
    },
    "overlayColor": {
      "type": "string",
      "default": "#000000"
    },
    "textColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "minHeight": {
      "type": "number",
      "default": 500
    }
  },
  "supports": {
    "html": false,
    "align": [
      "wide",
      "full"
    ],
    "spacing": {
      "padding": true,
      "margin": true
    }
  },
  "textdomain": "section-blocks",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "render": "file:./render.php"
}