/*
Theme Name: Little Stars Studio
Theme URI: https://teatrasvaikams.lt
Author: Theater Team
Author URI: https://teatrasvaikams.lt
Description: A playful and warm WordPress theme for children's theater with WooCommerce support. Features modern design with custom colors, animations, and full e-commerce integration for ticket sales.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: little-stars
Tags: theater, children, entertainment, woocommerce, events, tickets, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Fredoka:wght@400;500;600;700&display=swap');

/* CSS Variables - Warm, playful children's theater palette */
:root {
  /* Colors */
  --color-background: hsl(40, 33%, 98%);
  --color-foreground: hsl(220, 20%, 20%);
  --color-card: hsl(0, 0%, 100%);
  --color-primary: hsl(12, 76%, 61%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(174, 42%, 51%);
  --color-secondary-foreground: hsl(0, 0%, 100%);
  --color-muted: hsl(40, 30%, 94%);
  --color-muted-foreground: hsl(220, 10%, 45%);
  --color-accent: hsl(270, 50%, 70%);
  --color-highlight: hsl(45, 93%, 70%);
  --color-mint: hsl(160, 40%, 85%);
  --color-border: hsl(40, 20%, 88%);
  
  /* Typography */
  --font-body: 'Nunito', sans-serif;
  --font-display: 'Fredoka', sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1.5rem;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 30px -8px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 40px -12px rgba(0, 0, 0, 0.18);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.btn-primary:hover {
  background-color: hsl(12, 76%, 55%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary-foreground);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-foreground);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* Utility Classes */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* WordPress Core Styles */
.alignleft {
  float: left;
  margin-right: var(--spacing-md);
}

.alignright {
  float: right;
  margin-left: var(--spacing-md);
}

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

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

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: var(--spacing-xs);
}

.sticky {
  /* Sticky post styles */
}

.bypostauthor {
  /* Post author styles */
}

/* Screen Reader Text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
