/* 
Theme Name: Twenty Sixteen
Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color support with a default color scheme of bright, cheerful colors, and harmonious typography and spacing to create a fluid, flexible design that looks great on all device sizes. Twenty Sixteen was created by the WordPress team, and is the default theme for WordPress 4.4.
Version: 1.7
Author: the WordPress team
Author URI: https://wordpress.org/
Text Domain: twentysixteen
Domain Path: /languages
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, two-columns, wide-blocks
*/

/* Reset and base styles */
* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.5;
}

body {
	background: #000;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin: 0;
	padding: 0;
}

/* 🌌 GALAXY SPACE THEME - Dark & Cosmic */
/* Starfield background */
body::before {
  content: '🌌 GALAXY SPACE DEV: Ready for cosmic deployment! 🚀';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #0a0a0a, #1a1a2e, #16213e, #0f3460, #533483, #7209b7);
  color: #00ffff;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 9999;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  box-shadow: 0 2px 20px rgba(0, 255, 255, 0.5);
}

/* Cosmic page background with stars */
body {
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #000 100%) !important;
  padding-top: 80px !important;
  min-height: 100vh;
  position: relative;
}

/* Add animated stars */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, #fff, transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, #fff, transparent),
    radial-gradient(2px 2px at 160px 30px, #fff, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 3s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sparkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

/* Main content area with nebula gradient */
.site {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #533483 50%, #7209b7 100%) !important;
  border-radius: 20px;
  padding: 30px;
  margin: 30px;
  box-shadow: 0 0 50px rgba(114, 9, 183, 0.5), inset 0 0 50px rgba(0, 255, 255, 0.1);
  border: 2px solid #00ffff;
  position: relative;
  z-index: 2;
}

/* Post content with cosmic styling */
.entry-content, .post-content {
  background: linear-gradient(135deg, #0f3460 0%, #533483 50%, #7209b7 100%) !important;
  color: #00ffff !important;
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  border: 3px solid #00ffff;
  text-shadow: 0 0 5px #00ffff;
}

/* Site title with cosmic gradient */
.site-title a {
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Navigation with cosmic styling */
.main-navigation {
  background: linear-gradient(90deg, #1a1a2e, #533483) !important;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.main-navigation a {
  color: #00ffff !important;
  text-shadow: 0 0 5px #00ffff;
}

.main-navigation a:hover {
  color: #ffff00 !important;
  text-shadow: 0 0 10px #ffff00;
}

/* Sidebar with cosmic styling */
.widget-area {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%) !important;
  border-radius: 15px;
  padding: 20px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.widget-title {
  color: #ffff00 !important;
  text-shadow: 0 0 5px #ffff00;
}

.widget a {
  color: #00ffff !important;
}

.widget a:hover {
  color: #ff00ff !important;
}

/* Footer with cosmic styling */
.site-footer {
  background: linear-gradient(90deg, #0a0a0a, #1a1a2e, #16213e) !important;
  color: #00ffff;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Form elements with cosmic styling */
input, textarea, select {
  background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
  color: #00ffff !important;
  border: 2px solid #00ffff !important;
  border-radius: 8px;
  padding: 10px;
}

input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5) !important;
  outline: none;
}

/* Buttons with cosmic styling */
button, .button, input[type="submit"] {
  background: linear-gradient(45deg, #7209b7, #533483) !important;
  color: #00ffff !important;
  border: 2px solid #00ffff !important;
  border-radius: 8px;
  padding: 10px 20px;
  text-shadow: 0 0 5px #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

button:hover, .button:hover, input[type="submit"]:hover {
  background: linear-gradient(45deg, #ff00ff, #7209b7) !important;
  color: #ffff00 !important;
  text-shadow: 0 0 10px #ffff00;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* Links with cosmic styling */
a {
  color: #00ffff !important;
  text-shadow: 0 0 3px #00ffff;
}

a:hover {
  color: #ffff00 !important;
  text-shadow: 0 0 8px #ffff00;
}

/* Headings with cosmic styling */
h1, h2, h3, h4, h5, h6 {
  color: #ffff00 !important;
  text-shadow: 0 0 10px #ffff00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site {
    margin: 15px;
    padding: 20px;
  }
  
  body::before {
    font-size: 14px;
    padding: 10px;
  }
}

/* Additional cosmic effects */
.entry-meta {
  color: #ff00ff !important;
  text-shadow: 0 0 5px #ff00ff;
}

.entry-footer {
  border-top: 1px solid #00ffff;
  padding-top: 15px;
  margin-top: 20px;
}

/* Cosmic animations */
@keyframes cosmic-pulse {
  0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.6); }
  100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
}

.site {
  animation: cosmic-pulse 4s ease-in-out infinite;
}
