/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Sticky Top Banner */
.bg-dark {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #343a40;
}

.bg-dark h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* Sticky Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.navbar .nav-link {
  font-weight: 500;
  color: #222 !important;
  transition: color 0.25s ease, background 0.25s ease;
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #c88b2d, #e4b96d);
  box-shadow: 0 3px 10px rgba(200, 139, 45, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  background: #fff;
  min-width: 200px;
}

.dropdown-item {
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-weight: 500;
  color: #333;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #c88b2d, #e4b96d);
  color: #fff;
  transform: translateX(4px);
}

/* Submenus */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  display: none;
  top: 0;
  left: 100%;
  margin-top: -2px;
  border-radius: 10px;
  animation: fadeIn 0.25s ease forwards;
}
.dropdown-submenu.show > .dropdown-menu {
  display: block;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
  animation: fadeIn 0.25s ease forwards;
}
@keyframes fadeIn {
  from {opacity:0; transform: translateY(8px);}
  to   {opacity:1; transform: translateY(0);}
}

/* Dark Pink Text */
.text-succ, .text-pink {
    color: #D5006D;
}

/* Hero Wrapper */
.hero-wrapper {
  background: #ECB3CB;
  /*background: url('https://www.aaagrowers.co.ke/tempflowers/assets/img/bgs/bouquets.jpg');*/
  background-size: cover;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/img/glitter.png');
  opacity: 0.15;
  animation: shimmer 30s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0 0; }
  to   { background-position: 100% 100%; }
}

/* Exclusive Box */
.exclusive-box {
    height: 350px;
    width: 40%;
    margin: 2rem auto;
    border-radius: 12px;
    background: #fccedd; /* light pink */
    box-shadow: 0 0 25px rgba(232,62,140,0.6);
    animation: pulse-glow 3s infinite ease-in-out;
    overflow: hidden;
    text-align: center;
    padding: 10px; /* space inside the box */
}

@keyframes pulse-glow {
    0%   { box-shadow: 0 0 10px rgba(232,62,140,0.5); }
    50%  { box-shadow: 0 0 40px rgba(232,62,140,0.9); }
    100% { box-shadow: 0 0 10px rgba(232,62,140,0.5); }
}
/* Exclusive Image */
.exclusive-img {
    width: 60%;       /* scale inside the box */
    height: auto;
    display: block;
    margin: auto;     /* centers the image */
    border-radius: 10px;
    position: relative;
}
.exclusive-box .exclusive-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-25deg);
}
.exclusive-box:hover .exclusive-img::after {
    animation: shine 1.5s forwards;
}
@keyframes shine {
    100% { left: 125%; }
}
@media (max-width: 576px) {
  .exclusive-box { width: 90%; }
}
@media (min-width: 577px) and (max-width: 992px) {
  .exclusive-box { width: 50%; }
}

/* Brand Section */
.brand-section {
    background-color: #000;
    margin: 0.5rem auto;
    padding: 2rem;
    max-width: 1500px;
    width: 90%;
    border: 6px solid transparent;
    border-image-slice: 1;
    border-image-source: linear-gradient(45deg, gold, pink, black);
    border-radius: 1rem;
    color: #fff;
}


/* Carousel Item Uniform Height + Hover Glow */
.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem;
    transition: box-shadow 0.15s ease;
}
.carousel-item:hover { 
    box-shadow: 0 0 25px 5px gold; 
}
.carousel-item img {
    display: block;
    max-height: 500px;   /* keeps images uniform */
    object-fit: contain;   /* crops consistently */
    border-radius: 20px;   /* optional rounded edges */
    transition: box-shadow 0.3s ease;
}

.carousel-item img:hover {
    box-shadow: 0 0 25px 5px gold;
}

/* Image Wrappers */
.img-wrapper {
    width: 100%;                /* takes up full width of the container */
    max-width: 280px;           /* set max width to avoid large images */
    height: 200px;              /* fixed height for uniformity */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;                 /* remove extra spacing */
    background-color: transparent;
    border-radius: 8px;         /* optional: makes the container rounded */
    transition: box-shadow 0.3s ease; /* adds smooth transition for the glow */
}

/* Hover Glow Effect */
.img-wrapper:hover {
    box-shadow: 0 0 25px 5px rgba(255, 215, 0, 0.7); /* gold color glow */
}

/* Images inside wrapper */
.img-wrapper img {
    width: 50%;                /* make image fill the width */
    height: 100%;               /* make image fill the height */
    object-fit: contain;        /* keeps aspect ratio and fits the image */
    padding: 0;                 /* no extra spacing */
    border-radius: 8px;         /* optional rounded corners */
}
/* Text at the bottom */ 
.image-text { 
    position: absolute; 
    bottom:2px; /* Position the text at the bottom */ 
    left: 50%; 
    transform: translateX(-50%); /* Center the text horizontally */ 
    color: #fff; /* White color for visibility */ 
    font-size: 1.2rem; /* Adjust text size */ 
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Background for contrast */ 
    padding: 5px 10px; /* Padding around the text */ 
    border-radius: 5px; /* Rounded corners for the background */ 
}

/* Buttons */
.btn-pink {
    background: linear-gradient(45deg, #ff6ec7, #ff4e50); /* pink gradient */
    color: #fff;
    border: none;
    border-radius: 50px;  /* rounded edges for modern look */
    font-size: 1.1rem;     /* slightly larger font size */
    padding: 12px 24px;    /* padding for better size */
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease-in-out; /* smooth transition for hover effects */
    box-shadow: 0 4px 10px rgba(255, 94, 168, 0.4); /* subtle shadow for depth */
}

.btn-pink:hover {
    background: linear-gradient(45deg, #e75480, #ff6ec7); /* reversed gradient on hover */
    transform: translateY(-5px); /* subtle lift effect */
    box-shadow: 0 8px 20px rgba(255, 94, 168, 0.6); /* stronger shadow on hover */
}

.btn-pink:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 94, 168, 0.3); /* focus effect */
}

/* Section Text */
.text-pink {
    color: #d5006d; /* Dark pink */
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    .img-wrapper {
        max-width: 220px;
        height: 200px;
    }
}
@media (max-width: 576px) {
    .brand-section {
        margin: 1rem;
        padding: 1rem;
    }
    .img-wrapper {
        max-width: 180px;
        height: 180px;
    }
}

.bg-roses {
    background: url('https://www.aaagrowers.co.ke/tempflowers/assets/img/bgs/roses.jpg') no-repeat center center;
    background-size: cover;
    width: 90%;           /* 80% of screen */
    margin: 0 auto;       /* centers with 10% left/right margin */
    border-radius: 12px;  /* optional: smooth edges */
}

.bg-wildbloom {
    background: url('https://www.aaagrowers.co.ke/tempflowers/assets/img/bgs/wildblooms.jpg') no-repeat center center;
    background-size: cover;
    width: 90%;           /* 80% of screen */
    margin: 0 auto;       /* centers with 10% left/right margin */
    border-radius: 12px;  /* optional: smooth edges */
}

/* Wild Blooms Banner */
.bg-wildbloom-hero {
  background: url('assets/img/wildblooms-banner.jpg') center center no-repeat;
  background-size: cover;
  padding: 80px 20px;
}

/* Wild Blooms Theme Colors */
.bg-wildbloom {
  background-color: #f9f6fc; /* light lavender background */
}

.text-wildbloom {
  color: #7a2ebf; /* deep purple */
}

/* Wild Blooms Buttons - Purple Gradient */
.btn-wildbloom {
  background:white;
  color: #aa03f1;
  border: none;
  transition: all 0.3s ease;
}

.btn-wildbloom:hover {
  background: linear-gradient(135deg, #aa03f1, #d889f7);
  transform: translateY(-2px);
}
/* Hero Section */
.bg-bellissima-hero {
  background: url('assets/img/bellissima-banner.jpg') center center no-repeat;
  background-size: cover;
  padding: 100px 20px;
  background-attachment: fixed;
 background-color: rgba(0, 0, 0, 0.5); /* Optional: Background for contrast */ 
}
.bg-bellissima {
    background: url('https://www.aaagrowers.co.ke/tempflowers/assets/img/bgs/bellissima.jpg') no-repeat center center;
    background-size: cover;
    width: 90%;           /* 80% of screen */
    margin: 0 auto;       /* centers with 10% left/right margin */
    border-radius: 12px;  /* optional: smooth edges */
}

.text-platinum {
  color: #e5e4e2; /* platinum-like silver */
}

/* Gold Gradient Button */
.btn-gold-bellissima {
    background: linear-gradient(135deg, #FFD700, #FFB700);
    border: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.btn-gold-bellissima:hover {
    background: linear-gradient(135deg, #FFB700, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(255, 215, 0, 0.5);
}

/* Platinum Gradient Button */
.btn-platinum-bellissima {
    background: linear-gradient(135deg, #E5E4E2, #B0B0B0);
    border: none;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.btn-platinum-bellissima:hover {
    background: linear-gradient(135deg, #B0B0B0, #E5E4E2);
    transform: translateY(-3px);
    box-shadow: 0px 5px 15px rgba(176, 176, 176, 0.5);
}
/* Subtle Glowing Gold Divider */
.divider-gold {
  height: 4px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(255,215,0,0) 0%, #f8f8f6 50%, rgba(255,215,0,0) 100%);
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Silver Gradient */
.btn-silver {
  background: linear-gradient(135deg, #818080, #999898, #c5bfbf);
  color: #333;
  border: none;
  border-radius: 50px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}
.btn-silver:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.5);
}

/* Bronze Gradient */
.btn-bronze {
  background: linear-gradient(135deg, #cd7f32, #b87333, #a97142);
  color: #fff;
  border: none;
  border-radius: 50px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}
.btn-bronze:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205, 127, 50, 0.5);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: black; /* light background */
  text-align: center;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}