@charset "UTF-8";
/* main styles */

/*colors

darkgreen #615A2E
lightgreen #AAC299

black #382612
tan # E5C8A5
cream #F8E4CC
white #FEFBFA

salmon #DA6B59
yellow #FFCA69

*/

/*
.hero{
	background: url("../images/what_is/pterosaur.jpg") no-repeat scroll center center /cover;
	min-height: 600px;
}*/
	
body{
	background:#FEFBFA
}

.test{
	background:rgba(255,0,4,1.00);
}


/* --------------------------------------Cards-------------------------------------- */
.featured-card{
	background: #FEFBFA;
	height:425px;
	box-sizing: border-box;
	width:269px;
	margin:0px 5px 30px;
	border: #F8E4CC solid 1px;
	display:inline-block;
	vertical-align:top;
}

.featured-card .img{
	height:315px;
	width:250px;
	transition: filter 0.3s ease; 
}

.featured-card img:hover{
    filter: brightness(1.1);
}

@media (max-width: 767px) {
  .carousel-inner {
    overflow: visible; /* allow peek */
  }

  .item-card {
    min-width: 200px; /* adjust for mobile */
    flex: 0 0 auto;
  }

  .peek {
    margin-right: -40px; /* small peek on mobile */
  }
}

.item-card{
	background: #FEFBFA;
	height:445px;
	box-sizing: border-box;
	width:270px;
	margin: 0 10px 30px;
	display: inline-block;
	vertical-align: top;
	/*border: #F8E4CC solid 1px;*/	
	
}

.item-card .img{
	height:340px;
	width:270px;
	object-fit: cover;
	transition: filter 0.3s ease; /* smooth animation */
}

.item-card img:hover{
    filter: brightness(1.1);
}






/* --------------------------------------Hero Carousel-------------------------------------- */
.carousel-custom-caption {
    position: absolute;
    bottom: 10%;                /* 2/3 down the slide */
    left: 8%;                   /* move toward left */
    min-width: 40%; 
	max-width: 70%;
    background: rgba(254,251,250,.50);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: left;
	color: #615A2E !important;
}

.carousel-custom-caption h1 {
	margin-top:0px;
	text-align: left
}

#carouselExampleCaptions,
#carouselExampleCaptions .carousel-inner,
#carouselExampleCaptions .carousel-item,
#carouselExampleCaptions img {
    height: 665px;
}

#carouselExampleCaptions img {
    object-fit: cover;
    object-position: 30%; /* or: center bottom, 50% 30%, etc. */
}


@media (min-width: 992px) {
    #carouselExampleCaptions,
    #carouselExampleCaptions .carousel-inner,
    #carouselExampleCaptions .carousel-item,
    #carouselExampleCaptions img {
        height: 845px;
    }
}

#carouselExampleCaptions .carousel-item:nth-child(1) img {
    object-position: 60% top;
}

#carouselExampleCaptions .carousel-item:nth-child(2) img {
    object-position: 20% 5%;
}

#carouselExampleCaptions .carousel-item:nth-child(3) img {
    object-position: 40% top;
}

.carousel-custom-caption h1{
	color: #615A2E
}






/* --------------------------------------Banners-------------------------------------- */
.banner {
	padding: 0;
	margin: 0;
	position: relative;
	height: 400px; /* set whatever height you want */
	overflow: hidden;
}

@media (min-width: 768px) {  /* md and up */
    .banner {
        height: 630px;
    }
}

.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;   /* fills entire div */
	object-position: center; /* optional */
	display: block;
}

.center-over-btn {
    position: absolute;
    left: 50%;
    bottom: 15%; /* lower third positioning */
    transform: translateX(-50%);
    text-decoration: none;
}





/* --------------------------------------ex-------------------------------------- */

.item-img-wrapper {
    position: relative;
}


.rating{
	height: 350px;
	border: rgba(255,0,4,1.00)solid 1px;
}

.progress-bar{
	background-color:#382612;	
}


.product {
    aspect-ratio: 250 / 315;  /* match original image ratio */
    width: 100%;
}
.product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

