/* ============================
   Common Styles
============================ */
@import url('https://fonts.googleapis.com/css2?family=Tangerine');
:root {
    --primary-color: #d8247f; 
    --secondary-color: #464646; 
    --light-color: #f8f9fa; /* Light Background */
    --dark-text: #333333;
    --white: #ffffff;
}
/* General Body and Typography */
body {
    font-family:ProximaNova,sans-serif;
    background-color: var(--light-color);
	color: var(--dark-text);
}
h1, h2, h3, h4 {
    color: var(--secondary-color);
    font-weight: bold;
	font-family:ProximaNova,sans-serif;
}

.text-theme{
	color: var(--secondary-color);
}
/* Add to Cart Button */
.btn-theme {
    color: var(--white); /* Text color */
    background-color: var(--primary-color); /* Button background */
    border: 2px solid var(--primary-color); /* Border color */
    font-size: 0.875rem; /* Small button text size */
    padding: 0.25rem 0.75rem; /* Adjust padding for button size */
    border-radius: 4px; /* Rounded corners */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
	text-decoration: none;
}

.btn-theme:hover {
    color: var(--white); /* Keep text white on hover */
    background-color:#c80b6b;  /* Change to secondary theme color */
    border-color: #c80b6b; /* Update border to match background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}


/* Headings */
.section-heading{
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.banner-text{
    text-transform: capitalize;
    font-weight: bold;
    font-family: Tangerine, serif;
    font-size: 40px;
    line-height: 1.32;
	color:#FFF;
}
.hero-title {
    text-transform: capitalize;
    font-weight: bold;
    font-family: Tangerine, serif;
    font-size: 40px;
    line-height: 1.32;
}
/* Buttons */
.btn-primary, .search-form .btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a800;
}

.btn-light {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

.florist-details li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 10px;
}

/* ============================
   Hero Section
============================ */

.hero-section {
    position: relative;
    height: 450px;
    background: url('../images/greenbg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    text-align: center;
}

.hero-overlay .container {
    z-index: 3;
}

.search-form {
    background: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
	margin: auto;
}

.search-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.search-form input,
.search-form .form-control {
    border-radius: 30px;
    padding: 10px 15px;
    border: 1px solid var(--primary-color);
    margin-bottom: 10px;
    max-width: 100%;
}

.search-form .btn {
    background-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    width: 100%;
}

/* Hero Slider */
#heroSlider .carousel-inner .carousel-item img {
    height: 450px;
    object-fit: cover;
}

/* ============================
   Navbar Styles
============================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar-toggler-icon {
    background-color: #fff;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-item .nav-link {
    border: 1px solid #d8247f;
    border-radius: 4px;
    color: #d8247f;
    padding: 10px 19px;
	margin-left: 10px;
	
/*     font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 25px;
    transition: background-color 0.3s ease; */
}

/* ============================
   Card and Product Showcase
============================ */

.card {
    margin-bottom: 30px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}
.card-text-small{
	font-size: 12px;
}

.card-text {
    font-size: 1rem;
    color: var(--secondory-color);
}

.shop-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}
blockquote {
    border-left: 5px solid var(--primary-color); /* Green left border for blockquote */
    padding-left: 20px;
    font-style: italic;
}

blockquote-footer {
    color: #555;
}
/* ============================
   About Us Section
============================ */

.about-us-section, .policy-section {
    padding: 60px 0;
    color: #fff;
}

.about-hero {
    position: relative;
    height: 400px;
    text-align: center;
    background: url('../images/background-hero.webp') no-repeat center center / cover;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-content {
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 30px;
}

/* ============================
   Footer Styles
============================ */

.footer {
    background-color:var(--primary-color) !important;
	width: 100%;
    position: relative;
    bottom: 0;
}

.footer a {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fa5ad2 !important;
}

/* ============================
   Responsive Adjustments
============================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-form {
        padding: 15px;
    }

    .search-form h2 {
        font-size: 1.5rem;
    }

    .search-form input {
        max-width: 100%;
    }

    .search-form .btn {
        width: 100%;
    }

    .about-content {
        padding: 30px 20px;
    }

    .navbar-nav {
        margin-top: 10px;
    }

    .footer .col-md-6 {
        text-align: center;
        margin-top: 10px;
    }
}
/* Florist Profile Section */
.florist-profile-section {
    padding: 60px 30px;
    color: #fff;
    text-align: center;
}

.florist-profile-pic {
    width: 200px;
    height: 200px;
    border: 5px solid #fff;
    border-radius: 50%;
}

.florist-details {
    font-size: 1.2rem;
    margin-top: 20px;
}

.florist-details li {
    margin-bottom: 10px;
}

/* Florist Products Section */
.product-card {
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .florist-profile-section {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }
}

.shop-details{
    padding: 10px;
    border-radius: 20px;
    color:var(--secondary-color);
	backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    background: hsla(0, 0%, 100%, .5);
    background-size: cover;
}
.shop-details h4{
	     border-bottom: 3px solid var(--primary-color);
 }
 /* Florist Card Styles */
.florist-card {
    position: relative;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.florist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.add-to-cart-btn:hover {
    background: #c80b6b;
    transform: scale(1.2);
}

/* Card Footer Styling */
.card-footer {
    background: #f8f9fa;
    font-size: 0.9rem;
}

@media (min-width: 768px){
	.main{
		min-height:600px;
	}
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .add-to-cart-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

.hover-effect {
    transition: transform 0.3s ease;
}
.hover-effect:hover {
    transform: scale(1.05);
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
}
.nav-pills .nav-link.active{
	background-color: var(--primary-color) !important;
	color:#ffffff;
}
.nav-pills .nav-link{
 color:var(--primary-color);
}
.background-theme{
	background-color: var(--primary-color) !important;
	color:#ffffff;
}
