/*
Theme Name: Lao Lotto Thai
Template: generatepress
Description: Child theme for GeneratePress with Thai language support
Version: 1.0
*/

:root {
  --primary: #d4af37;
  --secondary: #1a1a2e;
  --accent: #e94560;
  --text: #333333;
  --light: #f8f9fa;
  --dark: #16213e;
  --success: #06d6a0;
  --warning: #ffd166;
  --danger: #ef476f;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Kanit', 'Noto Sans Thai', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', 'Kanit', sans-serif;
  color: var(--secondary);
  font-weight: 500;
}

.site-header {
  background-color: var(--secondary);
  color: white;
  box-shadow: var(--box-shadow);
}

.main-navigation a {
  color: white;
  font-weight: 400;
}

.main-navigation a:hover {
  color: var(--primary);
}

.content-area {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
}

.widget {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.button, button, input[type="button"], input[type="reset"], input[type="submit"] {
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.button:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.site-footer {
  background-color: var(--secondary);
  color: white;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .main-navigation {
    background-color: var(--secondary);
  }
  
  .menu-toggle {
    color: white;
  }
  
  .content-area {
    padding: 1rem;
  }
}

/* Lottery specific styles */
.lottery-results {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.lottery-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  margin: 0 5px;
  font-weight: bold;
}

.lottery-prize {
  color: var(--primary);
  font-weight: bold;
}

.lottery-date {
  color: var(--accent);
  font-weight: 500;
}