/* Import Fonts */
@import url('/wp-content/plugins/varunmalik/assets/css/fonts.css');

/* ------------------------ */
/* Base Styles */
/* ------------------------ */
html, body, .container {
  background-color: #ecf0f1 !important; /* light gray */
}

.full-height {
  min-height: 70vh;
}

.flex-space {
  flex: 1;
}

/* Typography for posts and pages */
.post-content, .page-content {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

.post-content p, 
.post-content a, 
.post-content small, 
.post-content h1, 
.post-content h2, 
.post-content h3, 
.post-content h4, 
.post-content ul, 
.post-content strong,
.page-content p, 
.page-content a, 
.page-content small, 
.page-content h1, 
.page-content h2, 
.page-content h3, 
.page-content h4, 
.page-content ul, 
.page-content strong {
  word-spacing: 0em;
  font-family: 'Playfair Display', serif;
}

/* Paragraph spacing */
.post-content p, .page-content p {
  margin-bottom: 1.5rem;
}

/* Headings */
.post-content h2, .page-content h2 { font-size: 1.75rem; margin: 15px 0 10px; font-weight: 600; color: #222; }
.post-content h3, .page-content h3 { font-size: 1.5rem; margin: 15px 0 10px; font-weight: 600; color: #222; }
.post-content h4, .page-content h4 { font-size: 1.25rem; margin: 15px 0 10px; font-weight: 600; color: #222; }

/* Lists */
.post-content ul, .post-content ol,
.page-content ul, .page-content ol {
  margin-bottom: 30px;
  padding-left: 2rem;
}
.post-content li, .page-content li {
  margin-bottom: 0;
  line-height: 2;
}

/* Blockquotes */
.post-content blockquote, .page-content blockquote {
  border-left: 4px solid #4a90e2;
  padding-left: 1rem;
  margin-left: 10px;
  font-style: italic;
  color: #555;
}

/* Links */
.post-content a, .page-content a {
  color: #4a90e2;
  text-decoration: underline;
}
.post-content a:hover, .page-content a:hover {
  text-decoration: none;
}

/* Images */
.post-content img, .page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 6px;
}

/* Code blocks */
.post-content pre, .page-content pre {
  background-color: #f5f5f5;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.post-content code, .page-content code {
  background-color: #f0f0f0;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

/* Horizontal rules */
.post-content hr, .page-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

/* Small text / captions */
.post-content small, .page-content small {
  font-size: 0.85rem;
  color: #666;
}

/* Pagination */
.post-pagination a {
  color: darkblue;
}

/* Breadcrumbs */
p#breadcrumbs {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Playfair Display", serif;
}
span.breadcrumb_last {
  color: #e0e0ff;
}
#breadcrumbs a {
  color: #fff;
}

/* ------------------------ */
/* Navbar & Menu */
/* ------------------------ */
.navbar-container {
  margin: 0px 100px;
}

.navbar-custom {
  background-color: #283554;
}
.navbar-custom .navbar-brand {
  font-weight: bold;
  color: white;
}
.navbar-custom .nav-link {
  color: #cdd0e1;
  font-weight: 300;
}
.navbar-custom .nav-link:hover {
  color: white;
}
.navbar-brand {
  color: white;
  font-family: "Playfair Display";
  font-size: 25px;
  font-weight: 600;
}

.menu-container {
  text-align: center;
  margin: 0;
  padding: 0;
  justify-content: space-evenly;
}

.menu-container .navbar-nav {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.menu li {
  list-style: none;
  display: inline-block;
  padding: 0px 10px;
  text-transform: uppercase;
  position: relative;
}

.menu li a {
  color: rgba(255,255,255,0.7);
  font-family: serif; 
  position: relative;
}

.menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background-color: orange;
  transition: width 0.3s ease;
}
.menu li:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.menu li:hover a:hover,
.menu li:hover a,
.menu li:hover a::after {
  color: orange;
}

/* Icons */
body.home a.navbar-icon {
  color: rgba(255,255,255,0.7);
  font-size: 20px;
}
body.home a.navbar-icon:hover {
  color: orange;
}

/* Dropdown menu */
.dropdown-menu.show {
  background: #334264;
  border-radius: 0;
  border: 0;
}
.dropdown-menu li:hover a,
.dropdown-menu li:hover a:hover {
  color: #d7d7d7;
}
.dropdown-menu li::after {
  background: none;
}

/* Hide submenu by default, show on hover */
li.menu-item-has-children > ul.sub-menu {
  display: none;
}
li.menu-item-has-children > a:hover + ul.sub-menu {
  display: block;
}

/* Navbar toggler */
.navbar-toggler-icon {
  background: none;
  width: 100%;
  height: 100%;
}
button.navbar-toggler {
  color: #b7b7b7;
  border-color: #fff;
  border-radius: 10px;
  border-width: 0;
  font-size: 25px;
}
button.navbar-toggler:hover, button.navbar-toggler:focus {
  background: #3e4f79;
}

/* ------------------------ */
/* Cards */
/* ------------------------ */
.card {
  transition: 0.5s ease;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  box-shadow: 3px 3px #00000003;
}
.card-body {
  text-align: center;
}
.card-body a {
  color: #283554;
}
a.card-more {
  font-family: 'Playfair Display';
  font-weight: 600;
}
.card:hover {
  transform: scale(1.05);
}
.card-img {
  position: relative;
}
.card-img img {
    height: 30vh !important;
    object-fit: cover !important;
    display: block !important;
    width: 100%;
}
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #283554;
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ------------------------ */
/* Carousel / Hero */
/* ------------------------ */
#sticky-posts .carousel-item img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.carousel-caption {
  position: absolute;
  top: 55%!important;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 0;
}
.carousel-item {
  position: relative;
}
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #28355480;
}
.hero-title {
  font-size: 1.8rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.carousel-caption h5 {
  font-weight: 900;
  font-size: 6vh;
}
.carousel-caption a.card-more {
  color: #f0f0f0;
}
.post-hero .hero-content a {
  color: #d8d8d8;
}

/* ------------------------ */
/* 404 Page */
/* ------------------------ */
.\34 04-content {
  padding: 50px;
}
.\34 04-content h1.display-4 {
  font-weight: 900;
  font-family: "Playfair Display";
  color: #283554;
}

/* ------------------------ */
/* Page / Bio Specific */
/* ------------------------ */
.varunmalik_image_right img {
  margin: 0;
}

.linkedin-button {
    display: inline;
    padding-top: 0px !important;
    border-bottom: #283554 solid 1px;
    margin-top: 15px;
    padding: 0px;
    border-radius: 0px;
    font-size: 20px;
}

/* ------------------------ */
/* Home Page */
body.home p {
  font-size: 20px;
  line-height: 1.7;
}
body.home a {
  color: #283554;
}

/* Import Fonts */
@import url('/wp-content/plugins/varunmalik/assets/css/fonts.css');

/* ------------------------ */
/* Base Styles */
/* ------------------------ */
html, body, .container {
  background-color: #ecf0f1 !important; /* light gray */
}

.full-height {
  min-height: 70vh;
}

.flex-space {
  flex: 1;
}

/* Typography for posts and pages */
.post-content, .page-content {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

.post-content p, 
.post-content a, 
.post-content small, 
.post-content h1, 
.post-content h2, 
.post-content h3, 
.post-content h4, 
.post-content ul, 
.post-content strong,
.page-content p, 
.page-content a, 
.page-content small, 
.page-content h1, 
.page-content h2, 
.page-content h3, 
.page-content h4, 
.page-content ul, 
.page-content strong {
  word-spacing: 0em;
  font-family: 'Playfair Display', serif;
}

/* Paragraph spacing */
.post-content p, .page-content p {
  margin-bottom: 1.5rem;
}

/* Headings */
.post-content h2, .page-content h2 { font-size: 1.75rem; margin: 15px 0 10px; font-weight: 600; color: #222; }
.post-content h3, .page-content h3 { font-size: 1.5rem; margin: 15px 0 10px; font-weight: 600; color: #222; }
.post-content h4, .page-content h4 { font-size: 1.25rem; margin: 15px 0 10px; font-weight: 600; color: #222; }

/* Lists */
.post-content ul, .post-content ol,
.page-content ul, .page-content ol {
  margin-bottom: 30px;
  padding-left: 2rem;
}
.post-content li, .page-content li {
  margin-bottom: 0;
  line-height: 2;
}

/* Blockquotes */
.post-content blockquote, .page-content blockquote {
  border-left: 4px solid #4a90e2;
  padding-left: 1rem;
  margin-left: 10px;
  font-style: italic;
  color: #555;
}

/* Links */
.post-content a, .page-content a {
  color: #4a90e2;
  text-decoration: underline;
}
.post-content a:hover, .page-content a:hover {
  text-decoration: none;
}

/* Images */
.post-content img, .page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: 6px;
}

/* Code blocks */
.post-content pre, .page-content pre {
  background-color: #f5f5f5;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}
.post-content code, .page-content code {
  background-color: #f0f0f0;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
}

/* Horizontal rules */
.post-content hr, .page-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

/* Small text / captions */
.post-content small, .page-content small {
  font-size: 0.85rem;
  color: #666;
}

/* Pagination */
.post-pagination a {
  color: darkblue;
}

/* Breadcrumbs */
p#breadcrumbs {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: "Playfair Display", serif;
}
span.breadcrumb_last {
  color: #e0e0ff;
}
#breadcrumbs a {
  color: #fff;
}

/* ------------------------ */
/* Navbar & Menu */
/* ------------------------ */
.navbar-container {
  margin: 0px 100px;
}

.navbar-custom {
  background-color: #283554;
}
.navbar-custom .navbar-brand {
  font-weight: bold;
  color: white;
}
.navbar-custom .nav-link {
  color: #cdd0e1;
  font-weight: 300;
}
.navbar-custom .nav-link:hover {
  color: white;
}
.navbar-brand {
  color: white;
  font-family: "Playfair Display";
  font-size: 25px;
  font-weight: 600;
}

.menu-container {
  text-align: center;
  margin: 0;
  padding: 0;
  justify-content: space-evenly;
}

.menu-container .navbar-nav {
  padding: 0;
  margin: 0;
  display: inline-block;
}

.menu li {
  list-style: none;
  display: inline-block;
  padding: 0px 10px;
  text-transform: uppercase;
  position: relative;
}

.menu li a {
  color: rgba(255,255,255,0.7);
  font-family: serif; 
  position: relative;
}

.menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background-color: orange;
  transition: width 0.3s ease;
}
.menu li:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.menu li:hover a:hover,
.menu li:hover a,
.menu li:hover a::after {
  color: orange;
}

/* Icons */
a.navbar-icon {
  color: rgba(255,255,255,0.7);
  font-size: 20px;
}
a.navbar-icon:hover {
  color: orange;
}

/* Dropdown menu */
.dropdown-menu.show {
  background: #334264;
  border-radius: 0;
  border: 0;
}
.dropdown-menu li:hover a,
.dropdown-menu li:hover a:hover {
  color: #d7d7d7;
}
.dropdown-menu li::after {
  background: none;
}

/* Hide submenu by default, show on hover */
li.menu-item-has-children > ul.sub-menu {
  display: none;
}
li.menu-item-has-children > a:hover + ul.sub-menu {
  display: block;
}

/* Navbar toggler */
.navbar-toggler-icon {
  background: none;
  width: 100%;
  height: 100%;
}
button.navbar-toggler {
  color: #b7b7b7;
  border-color: #fff;
  border-radius: 10px;
  border-width: 0;
  font-size: 25px;
}
button.navbar-toggler:hover, button.navbar-toggler:focus {
  background: #3e4f79;
}

/* ------------------------ */
/* Cards */
/* ------------------------ */
.card {
  transition: 0.5s ease;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  box-shadow: 3px 3px #00000003;
}
.card-body {
  text-align: center;
}
.card-body a {
  color: #283554;
}
a.card-more {
  font-family: 'Playfair Display';
  font-weight: 600;
}
.card:hover {
  transform: scale(1.05);
}
.card-img {
  position: relative;
}
img.card-img-top {
  height: 30vh;
  object-fit: cover;
  display: block;
}
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #283554;
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ------------------------ */
/* Carousel / Hero */
/* ------------------------ */
#sticky-posts .carousel-item img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.carousel-caption {
  position: absolute;
  top: 55%!important;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  right: 0;
  bottom: 0;
  padding: 0;
}
.carousel-item {
  position: relative;
}
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #28355480;
}
.hero-title {
  font-size: 1.8rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.carousel-caption h5 {
  font-weight: 900;
  font-size: 6vh;
}
.carousel-caption a.card-more {
  color: #f0f0f0;
}
.post-hero .hero-content a {
  color: #d8d8d8;
}

/* ------------------------ */
/* 404 Page */
/* ------------------------ */
.\34 04-content {
  padding: 50px;
}
.\34 04-content h1.display-4 {
  font-weight: 900;
  font-family: "Playfair Display";
  color: #283554;
}

/* ------------------------ */
/* Page / Bio Specific */
/* ------------------------ */
.varunmalik_image_right img {
  margin: 0;
}

/* ------------------------ */
/* Home Page */
body.home p {
  font-size: 20px;
  line-height: 1.7;
}
body.home a {
  color: #283554;
}
/* ------------------------ */
/* Bootstrap-based Media Queries */
/* ------------------------ */

/* Extra small (xs) <576px */
@media (max-width: 575.98px) {
  .elementor-148 .elementor-element.elementor-element-f5b70f8 > .elementor-widget-container {
    margin: 0 3rem 1.25rem 3rem !important; /* 50px ≈ 3rem */
  }
  .split-bio-right::before {
    display: none !important;
  }
  .navbar-container {
    margin: 0px 10px;
}
}

/* Small (sm) ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .elementor-148 .elementor-element.elementor-element-f5b70f8 > .elementor-widget-container {
    margin: 0 3rem 1.875rem 3rem !important; /* 50px 30px */
  }
  .split-bio-right::before {
    display: none !important;
  }
  .post-content h2, .page-content h2 { font-size: 1.5rem; }
  .post-content h3, .page-content h3 { font-size: 1.25rem; }
  .post-content h4, .page-content h4 { font-size: 1.1rem; }
  .navbar-container {
    margin: 0px 10px;
}
}

/* Medium (md) ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-container { margin: 0 !important; }
    .split-bio-left .elementor-widget-container { margin: 10px 50px !important; }
  .navbar-container {
    margin: 0px 10px;
}
}

/* Large (lg) ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .split-bio-left .elementor-widget-container { margin: 10px 50px !important; }

}

/* Extra Large (xl) ≥1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .split-bio-left .elementor-widget-container { margin: 0 3rem 0 3rem !important; }
}

/* XXL ≥1400px */
@media (min-width: 1400px) {
  .split-bio-left .elementor-widget-container { margin: 0 3rem 0 5rem !important; }
}

body.wordpress footer {
    background-color: #283554;           /* Dark navy background */
    color: #f0f0f0;                      /* Light text */
    padding: 2rem 0;                      /* Vertical spacing */
    border-top: 3px solid #ff7f50;       /* Accent line */
    font-family: 'Inter', sans-serif;
}


body.wordpress footer .container {
    background: transparent!important;
    background-color: transparent!important;
}

body.wordpress footer p {
    margin: 0.2rem 0;
    font-size: 0.95rem;
}

body.wordpress footer p.small {
    color: #d0d0d0;
    font-size: 0.85rem;
}

/* Footer Menu */
body.wordpress footer .nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

body.wordpress footer .nav .nav-item {
    margin-right: 1.5rem;
}

body.wordpress footer .nav .nav-link {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

body.wordpress footer .nav .nav-link:hover {
    color: #ff7f50;                      /* Highlight links on hover */
    transform: translateY(-1px);
}

/* Social Links */
body.wordpress footer .social-links a {
    margin: 0 0.5rem;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

body.wordpress footer .social-links a:hover {
    color: #ff7f50;
    transform: translateY(-2px);
}

body.wordpress footer .menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-family: serif;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    body.wordpress footer {
        text-align: center;
        padding: 1.5rem 1rem;
    }

    body.wordpress footer .nav {
        justify-content: center;
        margin-bottom: 1rem;
    }

    body.wordpress footer .nav .nav-item {
        margin-right: 1rem;
        margin-bottom: 0.5rem;
    }

    body.wordpress footer .social-links a {
        font-size: 1rem;
        margin: 0 0.3rem;
    }
}


body.error404 input {
    border: 0;
    border-radius: 10px;
    padding: 15px 20px;
}

.lumen-btn {
    border: 1px solid lightgrey!important;
    color: darkblue;
    margin: 0px 10px!important;
    border-radius: 10px!important;
    padding: 14px 0px!important;
    /* text-transform: uppercase; */
    font-family: "Playfair Display"!important;
    font-weight: 600!important;
}

.lumen-btn-primary {
    background: #283554!important;
    color: #ecf0f1!important;
}
.lumen-btn-primary:hover, .lumen-btn-primary:focus {
    background: #252f46 !important;
}