/* SunStarSol.us styles */

:root {
  --sunstarsol-primary: #ff7b00; /* Solar orange */
  --sunstarsol-secondary: #ffd700; /* Golden yellow */
  --sunstarsol-accent: #ff4500; /* Bright orange-red */
  --sunstarsol-dark: #2d3748; /* Dark blue-gray */
  --sunstarsol-light: #f8f9fa; /* Light gray */
  --sunstarsol-bg: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  --space-gradient: linear-gradient(to bottom, #051937, #004d7a, #008793, #00bf72, #a8eb12);
}

.sunstarsol-theme {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--sunstarsol-light);
  background: var(--sunstarsol-bg);
  min-height: 100vh;
  margin: 0;
}

.sunstarsol-theme .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
.sunstarsol-theme .site-header {
  padding: 1.5rem 0;
  background-color: rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--sunstarsol-primary);
}

.sunstarsol-theme .site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sunstarsol-theme .logo-title-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sunstarsol-theme .sun-logo {
  width: 40px;
  height: 40px;
  background-color: var(--sunstarsol-primary);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.8);
}

.sunstarsol-theme .sun-logo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 123, 0, 0.8) 0%,
    rgba(255, 123, 0, 0) 70%
  );
  z-index: -1;
}

.sunstarsol-theme .sun-logo::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    rgba(255, 215, 0, 0) 70%
  );
  z-index: -2;
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.sunstarsol-theme .site-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--sunstarsol-primary);
  text-shadow: 0 0 10px rgba(255, 123, 0, 0.5);
}

.sunstarsol-theme .main-nav a {
  color: var(--sunstarsol-light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sunstarsol-theme .main-nav a:hover {
  background-color: var(--sunstarsol-primary);
  color: var(--sunstarsol-dark);
}

/* Content Styles */
.sunstarsol-theme .site-content {
  padding: 2rem 0;
}

.sunstarsol-theme h1, .sunstarsol-theme h2, .sunstarsol-theme h3 {
  color: var(--sunstarsol-secondary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.sunstarsol-theme h1 {
  font-size: 2.5rem;
}

.sunstarsol-theme h2 {
  font-size: 2rem;
}

.sunstarsol-theme h3 {
  font-size: 1.5rem;
}

.sunstarsol-theme p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Card Styles */
.sunstarsol-theme .card {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--sunstarsol-primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.sunstarsol-theme .card-title {
  font-size: 1.75rem;
  color: var(--sunstarsol-secondary);
  margin-top: 0;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--sunstarsol-accent);
  padding-bottom: 0.5rem;
}

/* Button Styles */
.sunstarsol-theme .btn {
  display: inline-block;
  background-color: var(--sunstarsol-primary);
  color: var(--sunstarsol-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.sunstarsol-theme .btn:hover {
  background-color: var(--sunstarsol-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer Styles */
.sunstarsol-theme .site-footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 3rem;
  border-top: 3px solid var(--sunstarsol-primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sunstarsol-theme .site-header .container {
    flex-direction: column;
    text-align: center;
  }
  
  .sunstarsol-theme .site-title {
    margin-bottom: 1rem;
  }
}

/* Period Navigation Styles */
.period-navigation {
  margin-top: 2rem;
}

.period-nav-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.period-nav {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--sunstarsol-primary);
  border-radius: 5px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
  min-width: 40%;
}

.period-nav:hover {
  background-color: rgba(255, 123, 0, 0.1);
  border-color: var(--sunstarsol-secondary);
}

.period-nav.previous {
  text-align: left;
}

.period-nav.next {
  text-align: right;
}

.nav-label {
  color: var(--sunstarsol-secondary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.nav-date {
  color: var(--sunstarsol-light);
  font-size: 0.9rem;
}
