:root {
  /* Darker color scheme */
  --primary-color: #8B0000;  /* Dark red */
  --primary-light: #FFE3E3;
  --primary-dark: #660000;
  --secondary-color: #4ECDC4;  /* Turquoise */
  --secondary-light: #E0F9F6;
  --secondary-dark: #2EC4B6;
  --accent-color: #FFE66D;  /* Sunny yellow */
  --accent-light: #FFF9C4;
  --accent-dark: #FFD93D;
  
  /* Text colors */
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  
  /* Neutral colors with darker red tint */
  --neutral-100: #FFF5F5;
  --neutral-200: #FFE8E8;
  --neutral-300: #FFD6D6;
  --neutral-400: #FFB8B8;
  --neutral-500: #FF9E9E;
  --neutral-600: #FF7E7E;
  --neutral-700: #FF5E5E;
  --neutral-800: #FF3E3E;
  --neutral-900: #FF1E1E;
}

/* Base styles */
body {
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--neutral-100);
  margin: 0;
  padding: 0;
  background-image: 
    radial-gradient(circle at 100% 100%, var(--accent-light) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, var(--secondary-light) 0%, transparent 50%);
}

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

/* Header styles */
.site-header {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 0 0 20px 20px;
  border: 3px solid var(--primary-color);
  border-top: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  margin: 0;
}

.site-title a {
  color: var(--primary-color);
  font-size: 2.2rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: var(--primary-dark);
}

.site-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.site-nav a:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-color);
}

/* Content area */
main {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem;
  border: 3px solid var(--secondary-color);
  position: relative;
  color: var(--text-primary);
}

main::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--accent-light);
  z-index: -1;
  border-radius: 25px;
  transform: rotate(-1deg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  margin-top: 0;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

p, li, td, th {
  color: var(--text-primary);
}

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

a:hover {
  color: var(--primary-dark);
}

/* Fun elements */
.current-week {
  background-color: var(--primary-light);
  border: 3px dashed var(--primary-color);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
  color: var(--text-primary);
}

.week-item {
  background-color: var(--secondary-light);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.week-item:hover {
  transform: translateX(10px);
  background-color: var(--secondary-color);
  color: white;
}

/* Mobile restriction overlay */
.mobile-restriction {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  color: white;
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.mobile-restriction h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.mobile-restriction p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
}

.mobile-restriction .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* Responsive design - hide content on mobile */
@media (max-width: 768px) {
  .container {
    display: none;
  }
  
  .mobile-restriction {
    display: flex;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --neutral-100: #2D2D2D;
    --neutral-200: #3D3D3D;
    --neutral-300: #4D4D4D;
    --neutral-400: #5D5D5D;
    --neutral-500: #6D6D6D;
    --neutral-600: #7D7D7D;
    --neutral-700: #8D8D8D;
    --neutral-800: #9D9D9D;
    --neutral-900: #ADADAD;
  }
  
  body {
    background-color: var(--neutral-100);
  }
  
  header, main {
    background-color: var(--neutral-200);
  }
} 