@charset "utf-8";
/* CSS Document */

@font-face{
	font-family: 'Acumin Variable';
	src: url("../fonts/AcuminVariableConcept.otf");
	font-style: normal;
	
}

@font-face{
	font-family: 'IvyPresto';
	src: url("../fonts/fonnts.com-Ivy-Presto-Display-Thin.otf");
}

body{
	font-family: 'Acumin Variable', sans-serif;
	font-weight: 300;
}

/* Didnt want prices to default to bold */
.price{
	font-weight: 300 !important;
}

h1, h2, h3, h4, h5{
	font-family: 'IvyPresto';
}

h1{
	font-size: 350%;
	color: white;
	text-align: center;
}

h2{font-size: 250%;}

h3{font-size: 200%;}

h4{font-size: 180%;}


* {box-sizing: border-box;
	font-style: normal; 
}

/* Promo */
.promo-ribbon{
	background-color: #A15D66;
	color: white;
	text-align: center;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.promo-text{
	display: flex;
	white-space: nowrap;
	animation: scroll-left 45s linear infinite;
	width: max-content;
	text-transform: uppercase;
}

.promo-text span{
	font-size: 1.2rem;
	padding: 0 3rem;
}

.promo-text img{
	margin: 0 2rem;
}

@keyframes scroll-left{
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

/* Navigation */
.navbar{
	background-color: white !important;
}

.navbar-brand{
	margin-left: 2%;
}

.nav-link{
	color: #321F12;
}

.nav-link:hover{
	color: #808249;
}

.nav-link active:hover{
	color: #808249;
}

.dropdown-menu{
	background-color: #F3EED7;
	border-radius: 5px; 
	border:none;
	width: 225px;
}

.dropdown-title{
	color: #808249;
	margin-left: 15px;
	font-family: 'IvyPresto';
	font-size: 20px;
	margin-bottom: 10px;
}

.dropdown-item{
	color: #321F12;
	margin-bottom: 5px;
	font-weight: 300;
}

.dropdown-item:hover{
	background-color: #808249 !important;
	color: white;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler{
	color:#321F12;
}

/* Hero Carousel Section */
.carousel-item{
	height: 85vh;
	min-height: 400px;
	position: relative;
}

.carousel-img{
	object-fit: cover;
	height: 100%;
}

.carousel-caption p{
	font-size: 25px;
	margin-top: 15px;
}

.carousel-item::before{
	content: "";
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	z-index: 1;
}

.carousel-caption {
	z-index: 2;
}

.btn{
	color: white;
	background-color:#A15D66;
	border: none;
	font-size: 18px;
	padding-top: 10px;
	font-weight: 300;
}

#HeroButton:hover{
	color: white;
	background-color: #808249;
}

/* DIY or Pre-made section on homepage */
.diy{
	padding-top: 10px;
	padding-bottom: 5em;
}

.section-header h2{
	color:#321F12;
	margin: 40px;
	text-align: center;
}

.category-cards{
	position: relative;
	border:none;
	color: white;
}

.category-cards::before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 1;
}

.card-img-overlay{
	position: absolute;
	z-index: 2;
}

.card-title{
	color: white; 
	z-index: 3;	
}

.card-text {
	color: white;
	z-index: 3;
	font-size: 20px;
}

.btn-main:hover{
	background-color: #808249;
	color: white;
}

/* Homepage About Us Section */
.who-we-are{
	color: #F3EED7;
}

.display-5{
	font-family: 'IvyPresto';
	color: white;
}

.lead{
	color: white;
}

.About-us{
	margin-top: 0;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/images/About_bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Owl Carousel (product-cards on homepage) */
.owl-carousel{
	position: relative;
	padding: 0 60px;
}

.card{
	border: none;
	margin: 0 1em;
}

.owl-stage{
	margin: 0 auto;
}

.owl-item h3{
	color: #321F12;
	text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

.custom-prev, .custom-next{
	background-color: #A15D66;
	color: white;
	border: none;
}

 .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.owl-nav button:hover{
	background-color: #E1B4A1;
}

.owl-nav{
  position: absolute;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  top: 50%;
}

/* Delivery Section on homepage */
#delivery-section-img {
	background: url("../images/delivery_truck.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 400px;
}

.delivery-intro{
	background-color: #808249;
	overflow: hidden;
}

.delivery-intro h2{
	color: white;
}

.delivery-intro p{
	color: white;
	margin-top: 20px;
	font-size: 20px;
}

.delivery-desc a{
	color: white;
}

.delivery-desc a:hover{
	background-color: #E1B4A1;
	color: white;
}


/* Homepage paragraph section above footer */
.trust{
	background-image: url("../images/info_bg.png");
	padding: 40px 70px;
	margin-bottom: 20px;
}

.trust h4, .trust p{
	text-align: center;
}

.trust p{
	font-size: 18px;
}

/* About page */
.about-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/About_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

.img-div{
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-desc p{
	font-size: 20px;
}

.about-desc p, .about-desc h2{
	padding: 0 70px;
}

.about-row{
	padding: 30px;
}

.about{
	padding-bottom: 30px;
}


/* Why Choose Bloom Garden? */
.WhyBloomGarden{
	background-color: #808249;
}

.WhyBloomGarden h2{
	text-align: center;
	padding-top: 40px;
	color: white;
}

.why-header{
	font-size: 250%;
}

.why-div{
	padding: 15px 50px 50px 50px;
}

.why-img{
	width: 100%;
	display: block;
}

/* Contact Page */
.contact-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/contact_header.jpg");
	background-position: center;
	padding: 100px 0;
}

/*Contact Form layout */
.contact-form{
	padding-left: 60px;
}

.contact-item h6{
	font-family: 'IvyPresto';
	font-size: 20px;
}

.form-control{
	border-radius: 15px;
	padding: 12px 15px;
	border: 2px solid #E1B4A1;
	transition: all 0.3s ease;
	color: #321F12;
}

/* Prevents Autofill background color from being browser default color */
input.form-control:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #333;
}

.form-control:focus{
	border-color: #A15D66;
	box-shadow: none;
}

.form-control::placeholder{
	color:#E1B4A1;
}

.form-label{
	margin-bottom: 8px;
	margin-top: 8px;
}

.btn-submit{
	background-color: #A15D66;
	color: white;
	border: none;
}

.btn-submit:hover{
	background-color: #808249;
}

/* FAQ Accordion*/
.FAQ-section {
    background-color: #F3EED7;
    color: #321F12;
	padding: 50px 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #808249;
	background-color: #F3EED7;
}

.accordion-button {
    padding: 20px 0;
    color: #321F12;
    background-color: transparent;
	font-size: 20px;
}

.accordion-button:not(.collapsed) {
    color: #321F12;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 0 20px 0;
	color:#321F12;
	font-family: 'Acumin Variable';
}

.FAQ-title{
	font-family: 'IvyPresto';
	color: #321F12;
	text-align: center;
	font-size: 250%;
}

/* Arrangements Landing Page */
.arrangements-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/arrangements_header.jpg");
	background-position: bottom;
	padding: 100px 0;
}

.arrangements-desc h4{
	font-family: 'IvyPresto';
	font-size: 250%;
}

.arrangements-desc p{
	font-size: 18px;
	padding-top: 15px;
}

.arrangements-desc{
	margin: 70px;
}

.arrangement-category{
	width: 100%;
	display: block;
}

.overlay-text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-family: 'IvyPresto';
	z-index: 3;
	
}

.overlay-text h2{
	z-index: 3;
}

.category-div{
	padding: 15px 50px;
}

.category-div h2{
	color: #321F12;
	padding-bottom: 20px;
}

.overlay-container{
	position: relative;
	overflow: hidden !important;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.overlay-container:hover{
	transform: scale(1.05);
}

.overlay-container:after{
	content: "";
	z-index: 2;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0; 
	background: rgba(0,0,0,0.5);
}

/* How it Works Section */
.how-text h2{
	padding-bottom: 20px;
}

.how-text h3{
	font-size: 25px;
}

.how-text li{
	font-family: 'IvyPresto';
	font-size: 25px;
}

.how-text p{
	font-size: 18px;
	font-family: 'Acumin Variable';
}

.how-text{ 
	padding: 30px 70px 30px 70px;
	margin-top: 40px;
	transition: all 0.3s ease;
	margin-bottom: 25px;
}

/* Product Pages */
.product-card-body h5{
	font-size: 28px;
	margin-bottom: 15px;
}

.product-card-body h6{
	font-size: 22px;
}

.product-card-body p{
	margin-bottom: 0;
} 

.product-card-body{
	margin: 0 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card-body .product-btn{
	margin-top: auto;
}

.product-card{
	border: 1px solid #E1B4A1;
	border-radius: 0;
}

.product-btn{
	font-size: 18px;
	margin-bottom: 20px;
	display: flex;
 	align-items: center;
  	justify-content: center;
}

.product-btn:hover{
	background-color: #808249;
	color: white;
}

.card-img-top{
	padding: 5px;
	border-radius: 0;
}


/* Bulk */
.bulk-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/bulk_header.jpg");
	background-position: center;
	padding: 100px 0;
}

/* Product Details Pages & Cart popup */
.product-section{
	background-color: #F3EED7;
}

.product-info{
	margin: 50px 0;
	display: flex;
}

.product-img {
  display: flex;
  justify-content: center;
}

.product-details{
	color: #321F12;
}

.add-to-cart{
	margin-top: 30px;
}

.wholesaleLogin{
	color: #321F12;
	margin-top: 10px;
	display: block;
}

.wholesaleLogin:hover{
	color:#808249;
}

.remove{
	color: #321F12;
	font-size: 18px;
	background-color: white;
}

.remove:hover{
	color: #808249;
}

.decrease, .increase{
	color: #321F12;
	background-color: white;
	font-size: 20px;
}

.decrease:hover, .increase:hover{
	color: #808249;
}

#quantity{
	background-color: #F3EED7;
	border: 1px solid #321F12;
}

/* Wedding page */
.wedding-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/wedding_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Corporate Gifting page */
.corporate-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/corporate_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Summer page */
.summer-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/summer_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Spring page */
.spring-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/spring_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Birthday page */
.birthday-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/birthday_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Anniversary page */
.anniversary-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/anniversary_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Sympathy page */
.sympathy-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sympathy_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Everyday page */
.everyday-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/everyday_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Specialty page */
.specialty-hero-section{
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/specialty_header.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

/* Privacy Policy and Terms & Conditions */
.privacy h1, .terms h1{
	color: #321F12;
	padding-bottom: 50px;
}

.privacy-policy, .terms-conditions{
	padding: 40px;
}

.privacy-policy h2, .terms-conditions h2{
	font-size: 180%;
}

.privacy-policy h3, .terms-conditions h3{
	font-size: 140%;
}

/* Footer */
.footer{
	background-color: white;
	color:#321F12;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
	font-family: 'Acumin Variable';
}

.footer h5, .footer h4{
	font-size: 150%;
}

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

.footer-links li{
	margin-bottom: 12px;
}

.footer-links a{
	text-decoration: none;
	color: #321F12;
	display: inline-block;
}

.footer-links a:hover{
	color:#808249;
}

.footer-newsletter{
	position: relative;
}

.footer-newsletter input{
	padding: 12px 15px;
	border: none;
	border-radius: 5px;
	background: #F3EED7;
	color: #321F12;
	width: 100%;
	outline: none;
	padding-right: 50px;
}

.footer-newsletter input::placeholder{
	color: #321F12;
}

.newsletter-btn{
	position: absolute;
	border-radius: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;
	width: 90px;
	background:#A15D66;
	color: white;
	border: none; 
}

.newsletter-btn:hover{
	background:#808249;
}

.footer-bottom{
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid #321F12;
	text-align: center;
	color: #321F12;
}

.footer-logo img{
	margin-left: -30px;
}
	
/* Responsive Properties */

@media screen and (max-width: 990px){
	.about-img{
	display: none;
	}
	.about-row{
	padding: 10px;
	}
	.category-cards{
	margin-top: 20px;
	}
	.about-desc p, .about-desc h2{
	padding: 0 20px;
}
}

@media screen and (max-width: 768px){
	
	/* Homepage hero carousel */
	.carousel-caption h5{
		font-size: 150%;
	}
	
	.carousel-caption h1{
		font-size: 300%;
	}

	
	/* Homepage diy cards */
	.category-cards{
		margin-top: 20px;
	}
	
	/* Owl Carousel */
	.card-body h3{ 
		font-size: 170%;
	}
	
	/* About Bloom Garden */
	.About-us{
	background-attachment: scroll;
	}
	
	/* Product categories */
	.product-row{
		margin: 10px;
	}
	
	/* Product Details */
	.product-img{
		margin-bottom: 20px;
		align-items: flex-start;
	}
	
	.product-details{
		padding: 0 25px;
	}
	
	/* About Page */
	.about-img{
		display: none;
	}
	.about-row{
		padding: 10px;
	}
	.about p{
		font-size: 18px;
	}
	
	/* Contact Page */
	.FAQ-section{
		padding: 30px;
	}
	.contact-form{
		padding: 20px;
	}
	.contact-info{
		padding: 20px;
	}
	
	/* Categories on home page */
	.overlay-text h3{
		font-size: 170%;
	}
	.category-div{
		padding: 20px;
	}
	
	/* Trust Section */
	.trust{
		padding: 40px 30px;
	}
}

@media screen and (max-width: 480px){
	
	h2{font-size: 200%;}
	h4{font-size: 160%;}
	
	/* Homepage */
	.carousel-caption img{
		display: none;
	}
	
	/* Owl Carousel */
	.owl-nav{
	  left: 5px;
	  right: 5px;
	}
	
	/* About Bloom Garden */
	.About-us p{
		margin: 10px 30px 10px 30px;
	}
	.About-us a{
		margin: 30px;
	}
	.display-5{
		margin-left: 30px;
	}
	
	/* Navigation */
	.nav-item a{font-size: 18px;}
	
	/* Product Details */
	.product-details p{
		font-size: 18px;
	}
	
	/* Footer */
	.footer-links a{
		font-size: 18px;
	}
	.footer h5{
		margin: 10px 0px 10px 0;
		color:#808249;
	}
	.footer-section h4{
		margin: 0px 0px 10px 0px;
	}
	
	/* Arrangement Categories */
	.arrangements-desc{
		margin: 30px;
	}
	.how-text{ 
	padding: 30px;
	margin-top: 40px;
	}
	
	/* About Page */
	.overlay-text h4{
		font-size: 200%;
	}
	
	/* Contact Page */
	.FAQ-section{
		padding: 30px;
	}
	.contact-form{
		padding: 20px;
	}
	.contact-info{
		padding: 20px;
	}
	
}





