---

URL of the reference screenshot: https://www.designprompting.com/themes/creativo-aurora/theme.jpg

IMPORTANT — Pre-check (do this BEFORE anything else):
Check to see if you have the reference image ATTACHED as a file (not as a URL in the text).

- If there is NO image attached and you only see the URL → STOP. Don&#x27;t generate anything.
  Just reply:
  &quot;⚠️ I only have the URL, not the screenshot. Download it from here and attach it to the chat
  so I can replicate the design accurately:
  https://www.designprompting.com/themes/creativo-aurora/theme.jpg&quot;

- If the image IS attached → continue with the instructions below.

---

## Phase 0 — Screenshot Specification (REQUIRED before coding)
Before writing a single line of code, analyze the attached screenshot and write a spec that includes:
- An ordered list of sections exactly as they appear from top to bottom. Do not add sections that are not in the screenshot (if the navigation header or footer is not visible, do not make them up).
- Per section: approximate height (px relative to a width of 1440), number of columns, spacing, background color (hex), dominant border-radius, image aspect ratio, and % of overlay, if any.
- Typography: approximate sizes for H1/H2/body in px and weights.
This spec governs the entire development process: the code is written based on it.

---

## Visual Reference
Faithfully replicate the design shown in the attached screenshot (layout, color palette, typography).
If you need the image as an actual resource on the website, it is available at the URL provided above.

---
Create a complete website for the fictional brand &quot;Creativo Aurora,&quot; a tattoo studio with a dark and modern aesthetic. Use only HTML, Tailwind CSS via CDN, and vanilla JavaScript in a single file. Recreate the following structure and style without copying the original text:

- Color palette: deep black background #0a0a0a, main text #f5f5f5, blood-red accents #c71f1f, neutral gray #2e2e2e, pure white #ffffff.
- Typography: &quot;Inter&quot; for headings (font-weight 700) and &quot;Source Serif Pro&quot; for paragraphs (font-weight 400).
- Header: fixed navigation bar with “Creativo Aurora” text logo (simple SVG), links to Home, About Us, Services, Booking, Gallery, and Packages. Collapsible hamburger menu on mobile.
- Hero: Full-screen section with background video (autoplay, loop, muted) and a dark gray semi-transparent overlay. Overlaid text divided into two large lines: “ARTE” and “CORPOREAL” in the Inter font, size 6xl on desktop, 4xl on mobile. Primary red “Book Your Session” button with a right-arrow icon.
- “About Us” block: two-column layout; left column contains descriptive text (3 paragraphs) and a secondary “Get to Know Us” button; right column features a mini-gallery of two images with a zoom effect on hover.
- Categories/Services section: 3-column grid on desktop, 1-column grid on mobile. Each card displays an image of the service, with a #2e2e2e background, white service text, and a red badge-style label over the image showing the service name. Cards have a hover effect: they lift 5px and soften the shadow.
- Footer: #0a0a0a background, columns with quick links (Home, Services, Booking, Contact), contact information (email, phone), and white social media icons (Instagram, TikTok).
- Interactivity: The hamburger menu opens and closes with a 300ms transition. The booking button smoothly scrolls to the booking form section using `scrollIntoView`. Fade-in animations occur when scrolling through the main blocks.
- Responsiveness: Use Tailwind breakpoints (sm, md, lg, xl) to adapt the layout.
- All text content must be in Spanish (Spain), written in an original and active style, with no references to the original template.
- Include HTML comments delimiting each section to make the code easier to read.

Provide code that&#x27;s ready to copy and paste and works in any modern browser.

---

## Block-by-Block Construction Protocol
Build the HTML section by section, in the exact order shown in the screenshot. After each block, compare it to its corresponding area in the image (structure, columns, spacing, radii, colors) and correct it before moving on to the next one. Do not proceed with a block that does not match.

## No-Invention Rule
If the screenshot and this prompt contradict each other on any visual detail, go with the screenshot. If a visual detail isn’t specified, infer it from the screenshot; never make it up. Nonsensical text in the screenshot (AI typos) should NOT be copied: write coherent text in Spanish while maintaining equivalent length and visual hierarchy. The only exception: the mandatory Design Prompting footer at the end of this prompt must always be included.

## Fidelity Checklist (Before Submission)
- Order and number of sections = screenshot
- Color palette and contrast = screenshot
- Columns, gaps, and border-radius = Phase 0 specs
- Image ratios and section heights ≈ screenshot
- Text density similar to the screenshot (no bloated paragraphs)

## Iteration Protocol
If the user identifies differences after the first generation, correct only the specified changes without regenerating the sections that have already been validated.

---

## Mandatory Instruction — Footer

Add this footer to all pages created with this prompt, including the link to Design Prompting:

html
<footer>
  <p>
  
    Designed with the help of 
    <a href="https://www.designprompting.com/" target="_blank" rel="noopener noreferrer">
      Design Prompting
    </a>
  </p>
</footer>
```