/* 
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;
}

/* 🌈 CRAZY COLORFUL DEPLOY BANNER - Super Visible for A/C Review! */
body::before {
  content: '🌈 DEV ENVIRONMENT: Code changes ready for deploy! 🌈';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ff0080, #ff8000, #ffff00, #00ff00, #0080ff, #8000ff, #ff0080) !important;
  background-size: 200% 100% !important;
  animation: rainbow-slide 3s linear infinite !important;
  color: #ffffff !important;
  padding: 20px !important;
  text-align: center;
  font-weight: bold;
  font-size: 20px !important;
  z-index: 9999;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 4px 30px rgba(255, 0, 128, 0.6) !important;
  border-bottom: 4px solid #ffffff !important;
}

@keyframes rainbow-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Removed cosmic stars animation - using simple red background instead */

/* 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, #ff0000);
  -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;
}

/* 🌈 CRAZY COLORFUL Background for Dev Environment - A/C Review! */
/* This makes it super obvious when code is deployed from Dev to Test */
/* MUST be at the end to override all other body styles */
html body {
  background: linear-gradient(135deg, 
    #ff0080 0%, 
    #ff8000 20%, 
    #ffff00 40%, 
    #00ff00 60%, 
    #0080ff 80%, 
    #8000ff 100%
  ) !important;
  background-size: 400% 400% !important;
  animation: crazy-gradient 8s ease infinite !important;
  background-attachment: fixed !important;
}

@keyframes crazy-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
