/*
Theme Name: Create Design & Print
Theme URI: https://example.com/
Author: You
Author URI: https://example.com/
Description: Lightweight theme converted from a static HTML landing page for Create Design & Print.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: create-design-print
Tags: custom-logo, custom-menu, one-column, responsive
*/

:root {
  --cyan: #00B6F0;
  --magenta: #FF1AA7;
  --yellow: #FFD100;
  --ink: #111;
}

* { box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: var(--ink);
  background: #fff;
}

header.site-header {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  color: white;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 16px;
}

.site-branding a,
.site-branding {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.custom-logo {
  max-height: 60px;
  height: auto;
  width: auto;
}

.primary-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.primary-navigation a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(0,182,240,0.2), rgba(255,26,167,0.1));
}

.hero h1 {
  font-size: 2.5em;
  margin: 0 0 10px;
}

.hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 1.2em;
}

.hero .cta {
  display: inline-block;
  background: var(--magenta);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

footer.site-footer {
  text-align: center;
  padding: 20px 0;
  background: #f9f9f9;
  border-top: 1px solid #eee;
  margin-top: 40px;
  color: #555;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Basic content styling */
.entry-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.entry-content img { max-width: 100%; height: auto; }

/* Accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
