/* Help Direct - Main Stylesheet */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

p {
  margin-bottom: 15px;
}

a {
  color: #2196F3;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1976D2;
}

img.wp-smiley,
img.emoji {
  display: inline;
  border: none;
  box-shadow: none;
  height: 1em;
  width: 1em;
  margin: 0 .07em;
  vertical-align: -0.1em;
  background: none;
  padding: 0;
}

/* Container and Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}

/* Header Styles */
#masthead {
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  position: sticky;
  top: 20px;
}

#masthead .hgroup {
  text-align: center;
}

#masthead .site-title {
  font-family: 'Amatic SC', cursive;
  font-size: 3em;
  margin-bottom: 10px;
  font-weight: 700;
}

#masthead .site-title a {
  color: #333;
  text-decoration: none;
}

#masthead .site-title a:hover {
  color: #2196F3;
}

#masthead .site-description {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.1em;
  color: #666;
  font-style: italic;
}

/* Logo Image */
.site-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

/* Navigation */
.site-navigation {
  margin-top: 20px;
}

.nav-menu {
  list-style: none;
  padding: 0;
}

.nav-menu li {
  margin-bottom: 10px;
}

.nav-menu a {
  display: block;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.nav-menu a:hover {
  background-color: #e9ecef;
}

/* Content Area */
#primary {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
}

#content {
  margin-bottom: 30px;
}

/* Article/Post Styles */
.post {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.post:last-child {
  border-bottom: none;
}

.entry-title {
  color: #333;
  margin-bottom: 15px;
}

.entry-title a {
  color: #333;
  text-decoration: none;
}

.entry-title a:hover {
  color: #2196F3;
}

.entry-meta {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 0.9em;
  color: #999;
  margin-bottom: 15px;
}

.entry-content {
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 20px;
}

/* Featured Image */
.featured-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

/* Footer */
.site-info {
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 0.9em;
  border-top: 1px solid #e0e0e0;
  margin-top: 30px;
}

/* Back to Home Link */
.back-home {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2196F3;
  color: #fff;
  border-radius: 3px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.back-home:hover {
  background-color: #1976D2;
  color: #fff;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: Roboto, sans-serif;
  font-size: 1em;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: #2196F3;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #1976D2;
}

/* Responsive Design */
@media (max-width: 991px) {
  .col-lg-3,
  .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #masthead {
    position: relative;
    top: 0;
  }

  .row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #masthead .site-title {
    font-size: 2.5em;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .container {
    padding: 10px;
  }

  #primary {
    padding: 20px;
  }
}

/* Custom Background */
body.custom-background {
  background-color: #f5f5f5;
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.card {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 5px;
}

.card h3 {
  margin-bottom: 15px;
  color: #2196F3;
}

/* List Styles */
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

ul li, ol li {
  margin-bottom: 8px;
}

/* Casino Comparison Table */
.casino-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.casino-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.casino-table thead th {
  padding: 18px 15px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.casino-table tbody tr:hover {
  background-color: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.casino-table tbody tr:last-child {
  border-bottom: none;
}

.casino-table tbody td {
  padding: 20px 15px;
  vertical-align: middle;
}

.casino-rank {
  font-size: 1.5em;
  font-weight: 700;
  color: #667eea;
  width: 60px;
  text-align: center;
}

.casino-name {
  font-weight: 600;
  font-size: 1.1em;
  color: #333;
  min-width: 150px;
}

.casino-bonus {
  color: #666;
  font-size: 0.95em;
}

.casino-stars {
  color: #ffc107;
  font-size: 1.2em;
  white-space: nowrap;
}

.casino-cta {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  color: #fff;
}

/* Info Box Styles */
.info-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-left: 4px solid #2196F3;
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-box h4 {
  color: #1976D2;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.info-box p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 0;
}

.info-box.warning {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left-color: #ff9800;
}

.info-box.warning h4 {
  color: #f57c00;
}

/* Pros and Cons Boxes */
.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.pros-box, .cons-box {
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.pros-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left: 5px solid #4caf50;
}

.cons-box {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-left: 5px solid #f44336;
}

.pros-box h4 {
  color: #2e7d32;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.cons-box h4 {
  color: #c62828;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.pros-box ul, .cons-box ul {
  list-style: none;
  margin-left: 0;
}

.pros-box li::before {
  content: "✓ ";
  color: #4caf50;
  font-weight: 700;
  font-size: 1.2em;
  margin-right: 8px;
}

.cons-box li::before {
  content: "✗ ";
  color: #f44336;
  font-weight: 700;
  font-size: 1.2em;
  margin-right: 8px;
}

/* Author Byline */
.author-byline {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0 0 5px 0;
  color: #333;
  font-size: 1.1em;
}

.author-info p {
  margin: 0;
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
}

/* Article Meta Dates */
.article-meta {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 5px;
  font-size: 0.9em;
  color: #666;
}

.article-meta span {
  display: flex;
  align-items: center;
}

.article-meta span::before {
  content: "📅 ";
  margin-right: 5px;
}

/* Footer Styles */
.site-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-column p {
  color: #bdc3c7;
  line-height: 1.7;
  font-size: 0.95em;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  color: #95a5a6;
  font-size: 0.9em;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Featured List with Emojis */
.entry-content ul li {
  line-height: 1.8;
}

.entry-content ul li b {
  color: #667eea;
}

/* Feature Cards Grid */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #667eea;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.feature-card h4 {
  color: #667eea;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* Responsive Design for New Components */
@media (max-width: 991px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .pros-cons-container {
    grid-template-columns: 1fr;
  }

  .casino-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .casino-table thead {
    display: none;
  }

  .casino-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
  }

  .casino-table tbody td {
    display: block;
    text-align: left;
    padding: 10px 0;
    border: none;
  }

  .casino-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #667eea;
    display: block;
    margin-bottom: 5px;
  }

  .casino-rank {
    font-size: 2em;
    text-align: left;
  }

  .casino-cta {
    text-align: left;
  }

  .cta-button {
    display: block;
    text-align: center;
  }

  .author-byline {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
}
