/*!
Theme Name: Kumudini
Theme URI: http://underscores.me/
Author: Tech Crafts
Author URI: http://techcrafts.co.in
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kumudini
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Kumudini is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document  ========================================================================== */


html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
p{
	font-size: 18px;
}

:root {
  /* 🌸 Light Tones */
  --color-rose-fog: #F8E6E0;     /* Very light maroon-pink */
  --color-blush: #F4C2C2;        /* Light blush pink */

  /* 🍷 Deep & Bold */
  --color-antique-ruby: #841B2D; /* Strong maroon/red */

  /* 🖤 Neutrals */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-grey: #B0B0B0;         /* Medium neutral grey */
  /* You can also add more greys if needed: light-grey, dark-grey, etc. */
}

header.main-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

/* Navbar CSS  */
.top_strip {
  width: 100%;
  position: relative;
  height: 25px; 
  background: var(--color-antique-ruby);
}
nav.navbar {
  color: var(--color-rose-fog);
  z-index: 9999;
}

.navbar-nav > li + li {
  margin-left: 3em;
}
.navbar-nav > li > a {
  color: var(--color-blush);
  line-height: 1;
  padding: 1em 0.5em;
  position: relative;
  text-decoration: none;
}

.navbar-nav .menu-item {
  position: relative;
  text-decoration: none;
}

.navbar-nav .menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.navbar-nav .menu-item:hover {
  color: var(--color-blush);
}

.navbar-nav .menu-item:hover::after {
  width: 100%;
  color: var(--color-blush);
}

.site-logo {
  width: 150px;
}
/* Navbar ends  */

/* Banner section */
.hero-banner {
	position: relative;
  height: 97vh;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.hero-banner:before {
    content: "";
    position: absolute;
    background: url(./images/overlay.png);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #841b2d3d;
}
