/* =====================================
BIJLIWALA FINAL CSS (PRO SYSTEM FINAL)
===================================== */


/* ===== GLOBAL ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}


/* ===== CONTAINER ===== */
.ast-container,
.site-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


/* ===== CONTENT WIDTH ===== */
.entry-content,
.elementor-widget-text-editor {
  max-width: 750px;
  margin: auto;
}


/* ===== HEADINGS ===== */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }


/* ===== TEXT ===== */
p {
  margin-bottom: 15px;
}


/* ===== IMAGES ===== */
img {
  max-width: 100%;
  border-radius: 8px;
}


/* =====================================
🔥 HERO SECTION (FINAL)
===================================== */

.hero-section {
  position: relative !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 80px 20px !important;
  color: #fff !important;
  background: #000 !important;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)),
              url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 44px !important;
  color: #fff !important;
  margin-bottom: 15px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero-section p {
  font-size: 18px !important;
  color: #ddd !important;
  max-width: 650px;
  margin: auto;
}


/* HERO BUTTON */
.hero-section .elementor-button {
  margin-top: 20px;
  background: linear-gradient(135deg, #ffcc00, #ff8c00) !important;
  color: #000 !important;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(255,165,0,0.4);
  transition: all 0.3s ease;
}

.hero-section .elementor-button:hover {
  transform: translateY(-3px);
}


/* =====================================
🧑‍🔧 AUTHOR SECTION (IMPROVED)
===================================== */

.author-section {
  text-align: center;
  padding: 80px 20px;
  background: #f9fafb;
}

.author-section h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.author-section p {
  max-width: 600px;
  margin: 10px auto;
  color: #555;
  line-height: 1.8;
}

.author-section strong {
  color: #000;
}


/* =====================================
POST TITLES
===================================== */

.elementor-post__title a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.featured-post h2 a {
  font-size: 24px;
}


/* POST CARDS IMPROVEMENT */
.elementor-post {
  transition: all 0.3s ease;
}

.elementor-post:hover {
  transform: translateY(-5px);
}


/* =====================================
LINKS
===================================== */

a {
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  opacity: 0.8;
}


/* =====================================
FOOTER
===================================== */

.elementor-location-footer {
  background: #111;
  color: #ccc;
  padding: 50px 0;
}

.elementor-location-footer h1,
.elementor-location-footer h2,
.elementor-location-footer h3 {
  color: #fff;
  font-size: 16px;
}

.elementor-location-footer p {
  color: #bbb;
}

.elementor-location-footer a {
  color: #ccc;
}

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


/* =====================================
MOBILE
===================================== */

@media (max-width: 768px) {

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }

  .hero-section {
    min-height: 75vh !important;
    padding: 60px 15px !important;
  }

  .hero-section h1 {
    font-size: 30px !important;
  }

  .hero-section p {
    font-size: 16px !important;
  }

  .author-section {
    padding: 60px 15px;
  }
}