/*
Theme Name: Art Prompts Biz
Theme URI: https://artprompts.biz
Author: Manus AI
Author URI: https://manus.im
Description: A vibrant, creative WordPress theme for art prompts and creative inspiration. Features a colorful gradient background, playful dashed borders, and email capture functionality.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artprompts
Tags: blog, art, creative, colorful, custom-colors, custom-menu, featured-images, flexible-header, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* Design Philosophy: Neo-Expressionism meets Digital Fluidity
 * Playful dashed borders, vibrant colors, smooth interactions
 */

:root {
  --color-teal: #1E7A8C;
  --color-coral: #E63946;
  --color-lime: #A8D84E;
  --color-orange: #FF8C42;
  --color-pink: #E63980;
  --color-cyan: #A3E4F0;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, 
    #FFB8A3 0%,
    #FFA3C7 25%,
    #A3E4F0 50%,
    #C8E6A0 75%,
    #FFE5A3 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-teal);
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-coral);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Dashed Border Utility */
.dashed-border {
  border: 3px dashed currentColor;
  border-radius: 12px;
}

/* Header Styles */
.site-header {
  padding: 1.5rem 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo {
  background: white;
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-orange);
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-teal);
  margin: 0;
}

.site-title a {
  color: inherit;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.main-navigation li {
  display: inline-block;
}

.main-navigation a {
  display: block;
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--color-teal);
  font-weight: 600;
  border: 3px dashed var(--color-lime);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  background: var(--color-lime);
  color: white;
  border-color: white;
  transform: scale(1.05);
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 0;
}

.hero-title {
  font-size: 4rem;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--color-teal);
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-pink);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(230, 57, 128, 0.3);
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--color-coral);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(230, 57, 128, 0.4);
}

/* Book Image */
.book-image {
  max-width: 500px;
  margin: 3rem auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.book-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-coral);
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-teal);
}

/* Email Form */
.email-form-section {
  padding: 4rem 0;
}

.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-title {
  font-size: 2rem;
  color: var(--color-teal);
  text-align: center;
  margin-bottom: 2rem;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field input {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
  border: 3px dashed white;
  border-radius: 12px;
  font-family: var(--font-body);
}

.form-field input[type="text"],
.form-field input[name="name"] {
  background: var(--color-orange);
  color: white;
}

.form-field input[type="email"] {
  background: var(--color-lime);
  color: white;
}

.form-field input::placeholder {
  color: white;
  opacity: 0.9;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.submit-button {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--color-coral);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.submit-button:hover {
  background: #c92a38;
  transform: scale(1.05);
}

.privacy-link {
  text-align: center;
  margin-top: 1rem;
}

.privacy-link a {
  color: var(--color-lime);
  font-weight: 600;
  border-bottom: 2px dashed var(--color-lime);
}

/* Blog Posts */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.post-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-header {
  background: var(--color-teal);
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.post-content {
  padding: 2rem;
  border: 3px dashed var(--color-lime);
  margin: 1rem;
  border-radius: 12px;
}

.post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-lime);
}

.post-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.post-excerpt {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--color-lime);
  color: white;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: var(--color-teal);
  transform: translateX(5px);
}

/* Footer */
.site-footer {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .main-navigation {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* WordPress Core Styles */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.5rem;
}

.sticky {
  border-left: 4px solid var(--color-coral);
  padding-left: 1rem;
}

.bypostauthor {
  font-weight: 600;
}
