/*
Theme Name: My Theme Child
Theme URI: https://localhost/mywp/
author: Harshit Kadyan
Description: Custom WordPress theme built from the supplied HTML/CSS/JS source.
Version: 1.0.0
Text Domain: mytheme-child
*/

:root {
  --mytheme-blue: #132573;
  --mytheme-light: #f5f5f5;
  --mytheme-text: #2e3031;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mytheme-text);
  background: #fff;
}

.site-content {
  padding: 140px 30px 80px;
}

.site-content .container {
  max-width: 1260px;
}

.site-content a {
  color: var(--mytheme-blue);
}

.custom-logo-link,
.fallback-logo {
  display: inline-block;
}

.custom-logo-link img,
.fallback-logo img {
  max-height: 60px;
  width: auto;
}

.entry-title,
.page-title {
  color: var(--mytheme-blue);
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.entry-content,
.archive-content {
  font-size: 1rem;
  line-height: 1.8;
}

.archive-card,
.page-card {
  background: #fff;
  border: 1px solid #e6edf5;
  box-shadow: 0 10px 30px rgba(19, 37, 115, 0.05);
  padding: 32px;
}

.menu-fallback,
.footer-menu-fallback {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-fallback li,
.footer-menu-fallback li {
  margin-bottom: 12px;
}

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

.footer-menu li + li {
  margin-top: 8px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
