/* Import the font at the top of your CSS */
@import url('https://fonts.googleapis.com/css2?family=Sriracha&display=swap');

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #000;
  text-align: justify;
  margin: 0;
}
/* Header */
.site-header h1 {
  background: linear-gradient(90deg, #007bff, #001f8b); /* gradient blue */
  color: #ffffff; /* force white for domain name */
  font-family: 'Sriracha', cursive; /* Sanskrit-style English font */
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* deeper shadow */
  border-bottom: none; /* cleaner without solid line */
}

/* Push main content below header */
.container {
  max-width: 900px;
  margin: 140px auto 2rem; /* 140px top margin = safe gap */
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Headings */
h1 {
  color: orange;
  margin-bottom: 1rem;
  text-align: left;
}

h2 {
  color: green;
  margin-bottom: 1rem;
  text-align: left;
}
h3 {
  color: green;
  margin-bottom: 1rem;
  text-align: left;
}

h4.align-right {
  text-align: right;
  font-weight: bold;  
}

/* Center the CTA */
.cta {
  text-align: center;   /* centers inline-block elements like <a> */
  margin: 2rem 0;       /* space above & below */
}

/* Button style */
.cta .btn {
  display: inline-block;
  background: orange;
  color: #fff;
  padding: 8px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

/* Hover effect */
.cta .btn:hover {
  background: darkorange;
}

/* Footer */
.site-footer {
  background: linear-gradient(90deg, #ff4d4d, #b30000); /* gradient red */
  color: white;
  text-align: center;
  padding: 3rem 1rem;
  border-top: 4px solid #800000; /* deeper red border for consistency */
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}

/* === Table-specific styles === */
.table-custom {
  border-collapse: collapse;
  width: 80%;              /* shrink width so centering shows */
  margin: 30px auto;       /* centers table itself */
  text-align: center;      /* centers text inside all cells */
}
.table-custom th,
.table-custom td {
  border: 1px solid #000;
  padding: 10px;
}

/* === Table-specific styles === */
.table-custom {
  border-collapse: collapse;
  width: 80%;              /* shrink width so centering shows */
  margin: 30px auto;       /* centers table itself */
  text-align: center;      /* centers text inside all cells */
}
.table-custom th,
.table-custom td {
  border: 1px solid #000;
  padding: 10px;
}

/* Header row */
.table-custom .row-header th {
  background-color: #999;
  font-weight: bold;   
  color: white; 
}

/* Special cells */
.table-custom .cell-red {
  background-color: red;
  color: white;
}

/* Special cells */
.table-custom .cell-red {
  background-color: red;
  color: white;
}

.table-custom .cell-orange {
  background-color: orange;
  color: white;
}

.table-custom .cell-green {
  background-color: green;
  color: white;
}

.table-custom .cell-blue {
  background-color: blue;
  color: white;
}

.table-custom .cell-black {
  background-color: black;
  color: white;
}
