
/*----------NAVIGATION----------------*/

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #131921;
    padding: 10px;
    color: white;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

#logo {
		float: left;
		width: 120px;
    text-decoration: none;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-logo a {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

#cart_a {
	text-decoration: none;
	color: white;	
}

.cart_badge {
	position: absolute;
	top: 6px;
	color: white;
	font-weight: bold;
	font-size: 12px;
	padding: 4px 8px;
	text-align: center;
}

.nav-location .line1 {
    font-size: 12px;
}
.nav-location .line2 {
    font-size: 14px;
    font-weight: bold;
}

.nav-search {
    flex-grow: 1;
}

/*---------INPUT-----------*/

#search-category {
 	padding: 5px;
  border: none;
	outline: none;
  background: #f3f3f3;
	width: 10%;
}

#currencySelector {
	position: relative;
	padding: 10px 10px;
	font-size: 11.5px;
	border: none;
	outline: none;
	background: transparent;
	color: white;
}

.input-wrapper {
   	position: relative;
    display: block;
}

.input-wrapper input {
  	padding-right: 40px;
 	  flex-grow: 1;
    border: none;
    outline: none;
    width: 80%;
}

.input-wrapper button {
    position: relative;
    top: 0;
    right: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

/*-------RIGTH_SECTION--------*/

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item .line1 {
    font-size: 12px;
}
.nav-item .line2 {
    font-size: 14px;
    font-weight: bold;
}

.nav-cart {
    font-size: 22px;
    cursor: pointer;
}
.cart-text {
    font-size: 14px;
    margin-left: 4px;
}

.sub-navbar {
    background-color: #232f3e;
    padding: 10px;
    display: flex;
    gap: 15px;
}

#searchNavbar{
		display: none;
}

.sub-navbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

/*------NAV_FOR_SINGLE_PRODUCT-------*/ 

#subNavbar {
		position: relative;
		top: -23px;
    background-color: #232f3e;
    padding: 10px;
    display: flex;
    gap: 15px;
}

#subNavbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}


/*----------SIDE_NAVIGATION------*/

.sidenav {
		padding: relative;
		height: 100%;
		width: 0;
		position: fixed;
		z-index: 100;
		top: 0;
		right: 0;
		background-color: #111;
		overflow-x: hidden;
		transition: 0.5s;
		padding-top: 60px;
}

.sidenav a {
		padding: 10px 10px;
		font-size: 20px;
		color: #818181;
		display: block;
		transition: 0.3s;
		text-decoration: none;
}

.sidenav a:hover {
		color: #f1f1f1;
}

.sidenav .closebtn {
		position: absolute;
		top: 0;
		right: 25px;
		font-size: 36px;
		margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav { padding-top: 15px; }
  .sidenav a {font-size: 18px;}
}

#mobileIcon , #searchToggle
{
		display: none;
}


/*--------carousel---------*/

.carousel-inner img {
	width: 100%;
	height: 100%;
}

#carouselImage {
	width: 100%;
	min-height: 450px;
}

#carouselcaption {
	width: 100%;
	position: relative;
	margin-left: 20px;
	top: -200px;
	z-index: 10px;
}

#carouselIcon {
	//background-color: blue;
	color: #ddd;
	border-radius: 50%;
	padding: 15px 15px;
	font-weight: bold;
}


/*--------------PARALLAX-----------------*/
#parallaxImg {
	width: 300px;
}
.parallax {
	background-image: url("images/img3.webp");
	min-height: 250px;
	width: 100%;
  background-attachment: fixed;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#parallaxContainer2 {
	 padding: 50px;
	//  background-color: white;
	 text-align: center;
	 width: 60%;
	 font-weight: lighter;
}

#parallaxContainer h1, #parallaxContainer2 h1 {
	 margin-top: 80px;
	 padding: 5px;
	 text-align: right;
	 color: white;
	 font-size: 90px;
}

#parallaxContainer p , #parallaxContainer2 p {
	 margin-top: -25px;
	 padding: 5px;
	 text-align: right;
	 color: white;
	 font-size: 25px;
}

/*--------FOOTER---------*/

#footerLogo {
		width: 120px;
    text-decoration: none;
}

#socailIcon {
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
} 

#socailLinks {
	color: white;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;}

#socailLinks:hover {
	color: gold;
	font-size: 15px;
	font-weight: bold;
	text-decoration: none;
}

#footer , #footer-bottom , #footer p , #footer h5 , 
#footer a , #copyright 
{
	background: #131921;
	color: white;
}


/*----------NAVIGATION_Responsive------*/

@media (max-width: 1024px ) {

	#logo {
			float: left;
			width: 120px;
	    text-decoration: none;
	}   
 	.menu-toggle , .nav-cart , .navitem
	{
      display: block;
  	}
	
	#mobileIcon ,#searchToggle
	{
			display: flex;
			color: white;
			text-decoration: none;
	}

	.nav-location , #search-category , .cart_badge ,
	.nav-search , .nav-location , .nav-item, #sub-navbar , 
	#subNavbar
	{
		display: none;
	}

	#searchNavbar {
	    background-color: #232f3e;
	    padding: 10px;
	    gap: 15px;
	}

	.input-wrapper button {
	    position: relative;
	    top: 0;
	    right: 30px;
	    border: none;
	    background-color: transparent;
	    cursor: pointer;
	}

	#carouselImage {
		width: 100%;
		min-height: 150px;
	}

	.navbar {		
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    background-color: #131921;
	    padding: 10px;
	    color: white;
	}

	#currencySelector {
		position: relative;
		top: 1px;
		background: none;
		color: white;
	}

	#parallaxImg {
		width: 150px;
	}

	#carouselImage {
		width: 100%;
		height: 250px;
	}

	#parallaxContainer2 {
		 padding: 10px;
	/*	 background-color: white; */
		 text-align: center;
		 width: 95%;
		 font-weight: lighter;
	}
}


