{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "create-block/cta-section",
  "version": "1.0.0",
  "title": "Call to Action Section",
  "category": "section-blocks",
  "icon": "megaphone",
  "description": "A powerful call-to-action section with customizable background, text, and multiple button options.",
  "keywords": [
    "cta",
    "call-to-action",
    "button",
    "conversion",
    "marketing"
  ],
  "example": {
    "attributes": {
      "title": "Ready to Get Started?",
      "subtitle": "Join thousands of satisfied customers and transform your business today.",
      "primaryButtonText": "Get Started Now",
      "primaryButtonUrl": "#",
      "secondaryButtonText": "Learn More",
      "secondaryButtonUrl": "#"
    }
  },
  "attributes": {
    "title": {
      "type": "string",
      "default": "Ready to Take Action?"
    },
    "subtitle": {
      "type": "string",
      "default": "Join thousands of satisfied customers and start your journey today."
    },
    "description": {
      "type": "string",
      "default": ""
    },
    "primaryButtonText": {
      "type": "string",
      "default": "Get Started"
    },
    "primaryButtonUrl": {
      "type": "string",
      "default": ""
    },
    "secondaryButtonText": {
      "type": "string",
      "default": "Learn More"
    },
    "secondaryButtonUrl": {
      "type": "string",
      "default": ""
    },
    "showSecondaryButton": {
      "type": "boolean",
      "default": true
    },
    "backgroundType": {
      "type": "string",
      "default": "color",
      "enum": [
        "color",
        "gradient",
        "image"
      ]
    },
    "backgroundColor": {
      "type": "string",
      "default": "#007cba"
    },
    "gradientColors": {
      "type": "object",
      "default": {
        "start": "#007cba",
        "end": "#005a87"
      }
    },
    "backgroundImage": {
      "type": "object",
      "default": null
    },
    "backgroundImageId": {
      "type": "number",
      "default": 0
    },
    "overlayOpacity": {
      "type": "number",
      "default": 0.7
    },
    "textColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "primaryButtonColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "primaryButtonTextColor": {
      "type": "string",
      "default": "#007cba"
    },
    "secondaryButtonColor": {
      "type": "string",
      "default": "transparent"
    },
    "secondaryButtonTextColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "textAlignment": {
      "type": "string",
      "default": "center",
      "enum": [
        "left",
        "center",
        "right"
      ]
    },
    "buttonLayout": {
      "type": "string",
      "default": "horizontal",
      "enum": [
        "horizontal",
        "vertical",
        "stacked"
      ]
    },
    "spacing": {
      "type": "string",
      "default": "normal",
      "enum": [
        "compact",
        "normal",
        "spacious"
      ]
    },
    "borderRadius": {
      "type": "number",
      "default": 8
    },
    "animationEffect": {
      "type": "string",
      "default": "none",
      "enum": [
        "none",
        "fade-in",
        "slide-up",
        "bounce"
      ]
    }
  },
  "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"
}