

/* ====== VARIABLES ====== */
:root {
  /* Primary Colors */
  --berry-crimson: #861a3d;
  --berry-crimson-dark: #6e142f;
  --berry-crimson-light: #a32149;
  --berry-pink: #e63f72;
  --berry-pink-light: #f0678e;
  --berry-purple: #5c3b6f;
  --berry-purple-light: #724a89;
  
  /* Secondary Colors */
  --leaf-green: #3f6c45;
  --leaf-green-dark: #2d4f32;
  --leaf-green-light: #54905c;
  --cream-light: #fff8e7;
  --cream-lighter: #fffdf7;
  --cream-dark: #f5edd8;
  
  /* Text Colors */
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #777777;
  
  /* Utility Variables */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-xl: 30px;
  
  /* Transition Variables */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ====== BASE STYLES ====== */
body {
  font-family: Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--berry-crimson);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--berry-crimson-dark);
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
        .navbar-collapse {
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            background-color: white;
            padding: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .navbar-collapse.show {
            display: block;
        }

        .navbar-toggler {
            border: none;
            background: transparent;
            padding: 0;
            color: var(--berry-crimson);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        .nav-item {
            margin: 0.5rem 0;
        }

        .nav-link {
            padding: 0.5rem 0;
            display: block;
            text-align: center;
            font-size: 1.1rem;
        }
    }

/* ====== LAYOUT SECTIONS ====== */
/* Berry Glow Section */
.Berry_Glow_Vital_Journey {
  background-color: var(--berry-crimson);
  color: white;
  background-image: linear-gradient(135deg, var(--berry-crimson) 0%, var(--berry-crimson-dark) 100%);
  position: relative;
  overflow: hidden;
}

.Berry_Glow_Vital_Journey::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.Berry_Glow_Vital_Journey::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.Berry_Glow_Vital_Journey .container {
  position: relative;
  z-index: 2;
}

/* Fresh Taste Section */
.Fresh_Taste_Magic_Collection {
  background-color: var(--leaf-green);
  background-image: linear-gradient(to right, var(--leaf-green) 0%, var(--leaf-green-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.Fresh_Taste_Magic_Collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/leaf-pattern.png');
  background-size: 400px;
  opacity: 0.05;
  z-index: 1;
}

.Fresh_Taste_Magic_Collection .container {
  position: relative;
  z-index: 2;
}

/* Crisp Delight Section */
.Crisp_Delight_Flavor_Path {
  background-color: var(--cream-light);
  background-image: linear-gradient(to bottom, var(--cream-light) 0%, var(--cream-lighter) 100%);
  color: var(--berry-crimson);
  position: relative;
}

.Crisp_Delight_Flavor_Path::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: linear-gradient(45deg, var(--cream-light) 25%, transparent 25%), 
                    linear-gradient(-45deg, var(--cream-light) 25%, transparent 25%), 
                    linear-gradient(45deg, transparent 75%, var(--cream-light) 75%), 
                    linear-gradient(-45deg, transparent 75%, var(--cream-light) 75%);
  background-size: 20px 20px;
  background-color: var(--berry-pink-light);
  z-index: 1;
}

/* Sweet Purity Section */
.Sweet_Purity_Natural_Essence {
  background-color: var(--berry-pink);
  background-image: linear-gradient(135deg, var(--berry-pink) 0%, var(--berry-crimson) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.Sweet_Purity_Natural_Essence::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
  background-image: url('images/berry-pattern.png');
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.Sweet_Purity_Natural_Essence .container {
  position: relative;
  z-index: 2;
}

/* ====== COMPONENTS ====== */
/* Buttons */
.btn-berry {
  background-color: var(--berry-crimson);
  color: white;
  border-radius: var(--radius-xl);
  padding: 10px 25px;
  font-weight: 600;
  border: none;
  transition: var(--transition-normal);
  box-shadow: 0 4px 10px rgba(134, 26, 61, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-berry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn-berry:hover {
  background-color: var(--berry-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(92, 59, 111, 0.4);
}

.btn-berry:hover::before {
  left: 100%;
}

.btn-berry:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(134, 26, 61, 0.3);
}

.btn-outline-berry {
  background-color: transparent;
  color: var(--berry-crimson);
  border: 2px solid var(--berry-crimson);
  border-radius: var(--radius-xl);
  padding: 9px 24px;
  font-weight: 600;
  transition: var(--transition-normal);
}

.btn-outline-berry:hover {
  background-color: var(--berry-crimson);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(134, 26, 61, 0.2);
}

/* Section Titles */
.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--berry-pink);
  border-radius: 5px;
}

.Crisp_Delight_Flavor_Path .section-title::after {
  background-color: var(--berry-crimson);
}

.Fresh_Taste_Magic_Collection .section-title::after,
.Sweet_Purity_Natural_Essence .section-title::after,
.Berry_Glow_Vital_Journey .section-title::after {
  background-color: rgba(255, 255, 255, 0.5);
}

/* Recipe Cards */
.recipe-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  background-color: white;
  height: 100%;
  border: none;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.recipe-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: var(--transition-normal);
}

.recipe-card:hover img {
  transform: scale(1.05);
}

.recipe-card .badge {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.65rem;
}

.recipe-card h3 {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: var(--berry-crimson);
  font-weight: 700;
}

.recipe-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.recipe-card a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--berry-crimson);
  transition: var(--transition-fast);
}

.recipe-card a:hover {
  color: var(--berry-purple);
  text-decoration: none;
}

.recipe-card hr {
  margin: 0.75rem 0;
  opacity: 0.1;
}

.recipe-card .bi-clock {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-right: 5px;
}

/* Header & Navigation */
.Vibrant_Forest_Menu_Navigation {
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.Vibrant_Forest_Menu_Navigation.scrolled {
  box-shadow: var(--shadow-md);
}

.Vibrant_Forest_Menu_Navigation .nav-link {
  font-weight: 600;
  color: var(--text-medium);
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
  position: relative;
}

.Vibrant_Forest_Menu_Navigation .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--berry-crimson);
  transition: var(--transition-normal);
  transform: translateX(-50%);
  opacity: 0;
}

.Vibrant_Forest_Menu_Navigation .nav-link:hover,
.Vibrant_Forest_Menu_Navigation .nav-link.active {
  color: var(--berry-crimson);
}

.Vibrant_Forest_Menu_Navigation .nav-link:hover::after,
.Vibrant_Forest_Menu_Navigation .nav-link.active::after {
  width: 70%;
  opacity: 1;
}

.header-accent {
  color: var(--berry-crimson);
  font-weight: 700;
}

/* Forms & Input */
.Elegant_Berry_Form_Connect input,
.Elegant_Berry_Form_Connect textarea,
.Elegant_Berry_Form_Connect select {
  border-radius: var(--radius-sm);
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: var(--transition-fast);
}

.Elegant_Berry_Form_Connect input:focus,
.Elegant_Berry_Form_Connect textarea:focus,
.Elegant_Berry_Form_Connect select:focus {
  border-color: var(--berry-crimson);
  box-shadow: 0 0 0 0.25rem rgba(134, 26, 61, 0.15);
}

.Elegant_Berry_Form_Connect label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.form-check-input:checked {
  background-color: var(--berry-crimson);
  border-color: var(--berry-crimson);
}

/* Success Message */
.Joyful_Success_Message_Display {
  background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.Joyful_Success_Message_Display::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-image: url('images/berry-celebration.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

/* Cards & Content Boxes */
.Nutritious_Card_Content_Display {
  transition: var(--transition-normal);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background-color: white;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.Nutritious_Card_Content_Display:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.Nutritious_Card_Content_Display .bi {
  color: var(--berry-crimson);
}

/* Testimonials */
.Vibrant_Question_Answer_Collection .card {
  transition: var(--transition-normal);
}

.Vibrant_Question_Answer_Collection .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ====== UTILITY CLASSES ====== */
/* Text Colors */
.text-berry {
  color: var(--berry-crimson) !important;
}

.text-berry-pink {
  color: var(--berry-pink) !important;
}

.text-leaf {
  color: var(--leaf-green) !important;
}

/* Background Colors */
.bg-berry {
  background-color: var(--berry-crimson) !important;
}

.bg-berry-pink {
  background-color: var(--berry-pink) !important;
}

.bg-leaf {
  background-color: var(--leaf-green) !important;
}

.bg-cream {
  background-color: var(--cream-light) !important;
}

/* Shadows */
.shadow-berry {
  box-shadow: 0 4px 15px rgba(134, 26, 61, 0.2) !important;
}

/* Border Radius */
.rounded-berry {
  border-radius: var(--radius-md) !important;
}

.rounded-berry-lg {
  border-radius: var(--radius-lg) !important;
}

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 991.98px) {
  h1.display-4 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .Vibrant_Forest_Menu_Navigation .nav {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .recipe-card img {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  h1.display-4 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .btn-berry {
    padding: 8px 20px;
    font-size: 0.875rem;
  }
  
  .recipe-card {
    margin-bottom: 1.5rem;
  }
  
  .Sweet_Purity_Natural_Essence::before,
  .Berry_Glow_Vital_Journey::before,
  .Berry_Glow_Vital_Journey::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  h1.display-4 {
    font-size: 1.75rem;
  }
  
  p.fs-5 {
    font-size: 1rem !important;
  }
  
  .section-title::after {
    width: 40px;
    bottom: -8px;
  }
  
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ====== ANIMATIONS ====== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadein 1s ease-out forwards;
}

/* ====== COOKIE CONSENT ====== */
#cookieConsent {
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
  opacity: 0.95;
  transition: var(--transition-normal);
}

#cookieConsent:hover {
  opacity: 1;
}

#cookieConsent button {
  border-radius: var(--radius-xl);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

#cookieConsent button:hover {
  background-color: white;
  color: var(--text-dark);
}

/* ====== SPECIAL EFFECTS ====== */
/* Gradient Text */
.gradient-text {
  background: linear-gradient(45deg, var(--berry-crimson) 0%, var(--berry-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Highlight Box */
.highlight-box {
  background-color: rgba(230, 63, 114, 0.1);
  border-left: 3px solid var(--berry-pink);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

/* ====== CUSTOM ELEMENTS ====== */
/* Benefit Icons */
.benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.benefit-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
}

/* Fact Circles */
.fact-circle {
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.fact-circle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.fact-circle .display-4 {
  color: var(--berry-crimson);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

/* Quote Styling */
blockquote {
  border-left: 3px solid var(--berry-crimson);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-medium);
}

blockquote footer {
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

/* Image Overlays */
.image-overlay {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.image-overlay img {
  transition: var(--transition-normal);
}

.image-overlay:hover img {
  transform: scale(1.1);
}

.image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  transition: var(--transition-normal);
}

.image-overlay:hover::after {
  opacity: 0.8;
}

.image-overlay-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 2;
  transition: var(--transition-normal);
}

.image-overlay:hover .image-overlay-content {
  bottom: 30px;
}

/* Social Media Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition-fast);
  margin-right: 10px;
}

.social-icon:hover {
  background-color: white;
  color: var(--berry-crimson);
  transform: translateY(-3px);
}

/* Logo Styling */
.logo-text {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: var(--transition-fast);
}

.logo-text:hover {
  transform: scale(1.02);
}

.logo-accent {
  color: var(--berry-crimson);
}

.transform-on-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-on-hover:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.bg-berry-pink {
    background-color: var(--berry-pink);
}

.bg-berry-crimson {
    background-color: var(--berry-crimson);
}

.bg-berry-purple {
    background-color: var(--berry-purple);
}

.bg-leaf-green {
    background-color: var(--leaf-green);
}

@media (max-width: 767.98px) {
    .rounded-start-4 {
        border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
    }
}