/*
Theme Name: Blank Canvas
Theme URI: https://example.com
Author: Indian Prefabs
Author URI: https://example.com
Description: A minimal, unstyled WordPress starter theme. Structure only — no design decisions baked in. Use Customizer > Additional CSS to style everything from scratch.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-canvas
*/

/* Intentionally minimal base styles so the Customizer's Additional CSS
   panel is the single source of truth for design. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header,
.site-footer {
  padding: 20px 0;
}

.site-content {
  padding: 40px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
}
