
:root {

  --berry-primary: #b02d58;
  --berry-secondary: #6c2d56;
  --berry-accent: #e63e6c;
  --leaf-green: #3f7d44;
  --light-cream: #f8f9fa;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6c757d;
  

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.07);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-circle: 50%;
}

body {
  font-family: 'Helvetica', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  color: var(--text-medium);
}

a {
  color: var(--berry-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--berry-secondary);
}

.container {
  max-width: 1200px;
}


.Forest_Clear_Path_Navigation {
  padding: 15px 0;
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.Forest_Clear_Path_Navigation .navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.Forest_Clear_Path_Navigation .brand-accent {
  color: var(--berry-primary);
}

.Forest_Clear_Path_Navigation .nav-link {
  color: var(--text-medium);
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
}

.Forest_Clear_Path_Navigation .nav-link.active,
.Forest_Clear_Path_Navigation .nav-link:hover {
  color: var(--berry-primary);
}


.Fresh_Berry_Hero_Section {
  padding: 100px 0 80px;
  background-color: white;
  position: relative;
}

.Fresh_Berry_Hero_Section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  text-transform: none;
}

.Fresh_Berry_Hero_Section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.Fresh_Berry_Hero_Section .hero-image {
  border-radius: var(--radius-circle);
  overflow: hidden;
}

.Health_White_About_Section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.Health_White_About_Section h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
}

.Dark_Berry_Feature_Section {
  padding: 100px 0;
  background-color: #000;
  color: #fff;
}

.Dark_Berry_Feature_Section h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
}

.Dark_Berry_Feature_Section p {
  color: rgba(255,255,255,0.8);
}

.White_Space_Portfolio_Section {
  padding: 100px 0;
  background-color: #fff;
}

.White_Space_Portfolio_Section h2 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 40px;
}


.Clean_Recipe_Card_Design {
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  margin-bottom: 30px;
  background-color: white;
}

.Clean_Recipe_Card_Design:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.Clean_Recipe_Card_Design img {
  height: 240px;
  object-fit: cover;
}

.Clean_Recipe_Card_Design .card-body {
  padding: 25px;
}

.Clean_Recipe_Card_Design .card-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.Clean_Recipe_Card_Design .card-text {
  color: var(--text-medium);
  margin-bottom: 20px;
}

.Clean_Recipe_Card_Design .badge {
  font-weight: 600;
  padding: 7px 14px;
  font-size: 0.8rem;
  margin-right: 8px;
}


.Round_Feature_Icon_Style {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--berry-primary);
  color: white;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.Round_Feature_Icon_Style .bi {
  font-size: 2rem;
}


.Minimal_Feature_Card_Design {
  padding: 40px 25px;
  border-radius: var(--radius-md);
  background-color: white;
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
  transition: transform 0.3s;
}

.Minimal_Feature_Card_Design:hover {
  transform: translateY(-10px);
}

.Minimal_Feature_Card_Design h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  font-weight: 700;
}

.Minimal_Feature_Card_Design p {
  color: var(--text-medium);
  margin-bottom: 0;
}


.Round_Data_Circle_Element {
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  background-color: white;
  box-shadow: var(--shadow-md);
}

.Round_Data_Circle_Element .number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--berry-primary);
}

.Round_Data_Circle_Element .label {
  font-size: 1rem;
  color: var(--text-medium);
  margin-top: 5px;
}


.btn-berry {
  background-color: var(--berry-primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-berry:hover {
  background-color: var(--berry-secondary);
  color: white;
  transform: translateY(-3px);
}

.btn-outline-berry {
  background-color: transparent;
  color: var(--berry-primary);
  border: 2px solid var(--berry-primary);
  border-radius: var(--radius-lg);
  padding: 10px 26px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-outline-berry:hover {
  background-color: var(--berry-primary);
  color: white;
  transform: translateY(-3px);
}

.btn-light-custom {
  background-color: white;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn-light-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}


.Modern_Contact_Form_Elements input,
.Modern_Contact_Form_Elements textarea,
.Modern_Contact_Form_Elements select {
  padding: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid #dee2e6;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.Modern_Contact_Form_Elements input:focus,
.Modern_Contact_Form_Elements textarea:focus,
.Modern_Contact_Form_Elements select:focus {
  border-color: var(--berry-primary);
  box-shadow: 0 0 0 0.2rem rgba(176, 45, 88, 0.15);
  outline: none;
}

.Modern_Contact_Form_Elements label {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}


.Simple_Dark_Footer_Design {
  background-color: #000;
  color: #fff;
  padding: 80px 0 40px;
}

.Simple_Dark_Footer_Design h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: white;
}

.Simple_Dark_Footer_Design p,
.Simple_Dark_Footer_Design a {
  color: rgba(255,255,255,0.8);
}

.Simple_Dark_Footer_Design a:hover {
  color: white;
  text-decoration: none;
}

.Simple_Dark_Footer_Design .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Simple_Dark_Footer_Design .footer-links li {
  margin-bottom: 12px;
}

.Simple_Dark_Footer_Design .disclaimer {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}


.text-berry {
  color: var(--berry-primary) !important;
}

.bg-berry {
  background-color: var(--berry-primary) !important;
}

.rounded-circle-custom {
  border-radius: var(--radius-circle) !important;
  overflow: hidden;
}


.Cookie_Consent_Banner_Style {
  background-color: rgba(0,0,0,0.9);
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 999;
}

.Cookie_Consent_Banner_Style button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.Cookie_Consent_Banner_Style button:hover {
  opacity: 0.9;
}


@media (max-width: 991.98px) {
  .Fresh_Berry_Hero_Section h1 {
    font-size: 2.8rem;
  }
  
  .Health_White_About_Section h2,
  .Dark_Berry_Feature_Section h2,
  .White_Space_Portfolio_Section h2 {
    font-size: 2.3rem;
  }
  
  .Round_Data_Circle_Element {
    width: 150px;
    height: 150px;
  }
  
  .Round_Data_Circle_Element .number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .Fresh_Berry_Hero_Section {
    padding: 80px 0 60px;
  }
  
  .Fresh_Berry_Hero_Section h1 {
    font-size: 2.2rem;
  }
  
  .Health_White_About_Section,
  .Dark_Berry_Feature_Section,
  .White_Space_Portfolio_Section {
    padding: 60px 0;
  }
  
  .Health_White_About_Section h2,
  .Dark_Berry_Feature_Section h2,
  .White_Space_Portfolio_Section h2 {
    font-size: 2rem;
  }
  
  .Round_Data_Circle_Element {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  
  .Round_Data_Circle_Element .number {
    font-size: 2rem;
  }
  
  .Round_Feature_Icon_Style {
    width: 60px;
    height: 60px;
  }
  
  .Round_Feature_Icon_Style .bi {
    font-size: 1.5rem;
  }
  
  .btn-berry, .btn-outline-berry, .btn-light-custom {
    padding: 10px 20px;
  }
  
  .navbar-collapse {
    background-color: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 575.98px) {
  .Fresh_Berry_Hero_Section h1 {
    font-size: 1.8rem;
  }
  
  .Health_White_About_Section h2,
  .Dark_Berry_Feature_Section h2,
  .White_Space_Portfolio_Section h2 {
    font-size: 1.8rem;
  }
  
  .Simple_Dark_Footer_Design {
    padding: 50px 0 30px;
  }
}

.Clean_Recipe_Card_Design {
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    overflow: hidden;
}
