
body{
margin:0;
font-family:Arial, sans-serif;
background:#000;
color:#fff;
}

/* HEADER */

.site-header{
background:#0b0b0b;
border-bottom:2px solid #c9a227;
}

.header-container{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:16px;
}

.logo{
font-size:22px;
font-weight:bold;
color:#c9a227;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.nav a{
color:#fff;
margin-left:20px;
text-decoration:none;
font-size:14px;
}

.nav a:hover{
color:#c9a227;
}

/* HOME */

.container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}

.intro{
color:#bbb;
margin-bottom:30px;
}

.chapter-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.chapter-card{
background:#111;
border:1px solid #333;
padding:22px;
border-radius:8px;
text-decoration:none;
color:#fff;
transition:0.2s;
}

.chapter-card span{
color:#c9a227;
font-size:14px;
}

.chapter-card:hover{
border-color:#c9a227;
transform:translateY(-3px);
}

/* READER */

.reader-container{
max-width:900px;
margin:auto;
padding:20px;
}

.chapter-title{
text-align:center;
margin-bottom:25px;
color:#c9a227;
}

.reader img{
width:100%;
display:block;
margin-bottom:10px;
}

/* NAV BUTTONS */

.chapter-nav{
display:flex;
justify-content:center;
gap:20px;
margin:30px 0;
}

.btn{
background:#c9a227;
color:#000;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.btn:hover{
background:#e6c35c;
}

/* FOOTER */

.site-footer{
background:#0b0b0b;
margin-top:40px;
padding:40px 20px;
border-top:2px solid #c9a227;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.footer-col h3{
color:#c9a227;
margin-bottom:10px;
}

.footer-col a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:6px;
}

.footer-col a:hover{
color:#fff;
}

.copyright{
text-align:center;
margin-top:20px;
color:#777;
}

/* MOBILE */

@media(max-width:768px){

.header-container{
flex-direction:column;
gap:10px;
}

.nav a{
margin:0 10px;
}

.logo img {
height: 60px;
}

.logo1 img {
height: 60px;
}

}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
}

/* --- Core Styles --- */

.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Original height */
  overflow: hidden;
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1; /* Lowest layer */
}

/* --- The NEW Overlay Layer --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This is your "light black" layer (rgba: red, green, blue, alpha/opacity) */
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 2; /* Sits on top of the image */
}

.hero-content {
  text-align: center; /* Centers text horizontally */
  color: white;
  z-index: 3; /* Sits on top of the image AND the overlay */
  padding: 0 20px; /* Safety padding for small screens */
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
}


/* --- Responsive Mobile Styles --- */

@media (max-width: 768px) {
  .hero {
    height: 60vh; /* Adjust height for tablet/mobile */
  }

  .hero-content h1 {
    font-size: 32px; /* Scale down heading */
  }

  .hero-content p {
    font-size: 16px; /* Scale down subtext */
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px; /* Extra small screens */
  }
}

.logo1 img {
  height: 170px;
  width: auto;
  display: block;
}

/* SEO Content Styling */
.seo-article {
    line-height: 1.8;
    color: #ddd;
    font-size: 17px;
}

.seo-article h2 {
    color: #c9a227;
    font-size: 2.2rem;
    margin-top: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.seo-article h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-top: 30px;
}

.highlight-box {
    background: rgba(201, 162, 39, 0.05);
    border-left: 4px solid #c9a227;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    border-color: #c9a227;
    background: #161616;
}

.stat-card i {
    color: #c9a227;
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.drop-cap::first-letter {
    font-size: 4rem;
    float: left;
    margin-right: 10px;
    color: #c9a227;
    line-height: 1;
    font-weight: bold;
}