:root {
	--display-font-family: Cardo;
	--body-font-family: Roboto;

	--font-size: 16px

	--logo-padding: 0px;
	--logo-height: 96px;

	--header-width: 100%;
	--header-border-position: bottom;
	--header-border-size: 1px;
	--header-bg-color: 243 239 231;
	--header-border-color: 245 245 245;

	--brand-color: 61 61 61;
	--brand-color-inverted: 255 255 255;

	--background-color: 255 15 ;
	--text-color: 61 61 61;
	--link-color: 61 61 61;

	--action-color: 74 124 89;
	--action-color-inverted: 255 15 ;

	--announcement-bar-bg-color: 10 135 15;
	--announcement-bar-text-color: 255 255 255;
	--announcement-bar-link-color: 61 61 61;

	--main-navigation-bg-color: 243 239 231;
	--main-navigation-link-color: 61 61 61;
	--main-navigation-link-color-hover: 7 36 1;
	--main-navigation-link-bg-color: 44 81 112;
	--main-navigation-link-font-size: 17px;
	--main-navigation-link-alignment: right;

	--auxiliary-bg-color: transparent;
	--auxiliary-border-color: transparent;
	--auxiliary-link-color: 61 61 61;

	--order-status-bg-color: 245 245 245;
	--order-status-color: 162 162 162;

	--store-menu-bg_color: 248 248 248;
	--store-menu-color: 119 7 ;

	--footer-bg-color: 32 32 32;
	--footer-color: 255 15 ;
	--footer-link-color: 255 15 ;
}

/*Custom Styles*/
/* === 0. FONT IMPORTS & GLOBAL STYLES === */

/* Consolidated Google Font Import (Place at the very top) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400;500&display=swap');

/* * Font Definitions:
 * font-family: 'Playfair Display', serif;  <- For headings
 * font-family: 'Roboto', sans-serif;        <- For body text
 */

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}


/* === 1. MAIN HEADER STYLES === */
.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  
  /* Reduced padding slightly to accommodate a taller logo */
  padding: 10px 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === MODIFIED Logo Styling === */
.nav-logo {
  /* Remove text-specific styles */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  
  /* Use flex to ensure image aligns well */
  display: flex;
  align-items: center;
  
  /* Control the logo size */
  max-height: 60px; /* Adjust this value to scale your logo */
  transition: opacity 0.3s ease;
}

.nav-logo img {
  /* Ensure image scales correctly */
  max-height: 100%;
  width: auto;
  display: block;
}

.nav-logo:hover {
  opacity: 0.85; /* Slight fade effect on hover */
}

/* === Navigation Menu Styling === */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline hover effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #4CAF50;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Don't apply underline to the button */
.nav-cta::after {
  display: none;
}

/* === Call-to-Action Button Styling === */
.nav-cta {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: #5cb85c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
}

/* === Header Responsiveness === */
@media (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Make logo slightly smaller on mobile */
  .nav-logo {
    max-height: 50px;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: 8px 0;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-cta {
    display: inline-block;
    padding: 12px 30px;
    width: 80%;
    max-width: 300px;
  }
  
  .nav-cta:hover {
      transform: none;
  }
}


/* === 2. HERO SECTION STYLES === */

.hero-section {
  position: relative; /* This is the anchor for the absolute overlay */
  width: 100%;
  overflow: hidden; /* Ensures nothing spills out */
}

.hero-image-wrapper {
  margin: 0; /* Resets default figure margin */
}

.hero-image {
  width: 100%;
  height: 550px; /* You can adjust this height */
  object-fit: cover;  /* Ensures image covers the area, cropping as needed */
  display: block;     /* Removes any bottom spacing on images */
  
  /* This darkens and slightly desaturates the image so text is readable */
  filter: brightness(60%) saturate(75%);
}

.hero-text-overlay {
  /* This centers the text block */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Text and layout styling */
  width: 90%;
  max-width: 900px; /* Stops text from getting too wide on large screens */
  color: #fff;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  font-weight: 300; /* A thinner font for contrast */
  margin: 0 0 30px 0;
  line-height: 1.5;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-button {
  display: inline-block; /* Allows padding and other box properties */
  font-family: 'Roboto', sans-serif;
  background-color: #4CAF50; /* A rich, natural green */
  color: #fff;
  
  padding: 15px 35px;
  border-radius: 10px;
  
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase; /* Gives the button a stronger presence */
  letter-spacing: 1px;
  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  /* This makes the hover effect smooth */
  transition: background-color 0.3s ease, 
              transform 0.2s ease, 
              box-shadow 0.3s ease;
}

/* === THE HOVER EFFECT === */
/* This is what happens when a user mouses over the button */
.hero-button:hover {
  background-color: #5cb85c;     /* A slightly lighter green */
  transform: translateY(-2px);    /* Lifts the button slightly */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Enhances the shadow */
}


/* === Hero Responsiveness (Mobile Devices) === */
/* This block of rules applies *only* to screens 768px wide or smaller */
@media (max-width: 768px) {
  
  .hero-image {
    height: 400px; /* Makes the image shorter on mobile */
  }
  
  .hero-title {
    font-size: 2.5rem; /* Makes the title smaller */
  }
  
  .hero-subtitle {
    font-size: 1.1rem; /* Makes the subtitle smaller */
  }
  
  .hero-button {
    padding: 12px 28px; /* Makes the button a bit smaller */
    font-size: 1rem;
  }
}


/* === 3. OUR PROMISE SECTION (OVERLAY STYLE) === */
.our-promise-section {
  width: 100%;
  padding: 0; /* No padding on the section itself as the image will fill */
  overflow: hidden;
  position: relative; /* Container for everything */
  height: 650px; /* Define a fixed height for the entire section */
  display: flex; /* Helps to center the content */
  align-items: center;
  justify-content: center;
}

.promise-container {
  /* This container will hold both the image and the overlaid text */
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px; /* Can be wider than 1200px for a more expansive feel */
  margin: 0 auto;
  display: flex; /* For centering content */
  align-items: center;
  justify-content: center;
}

.promise-image-wrapper {
  position: absolute; /* Occupy the full container space */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ensure image is behind text */
}

.promise-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* No border-radius for full-width overlay */
  box-shadow: none; /* No shadow directly on the image */
  
  /* Stronger filter for readability against text */
  filter: brightness(45%) contrast(110%);  
  
  transform: scale(1.03); /* Subtle initial zoom */
  transition: filter 0.5s ease, transform 0.6s ease;
}

.promise-image-wrapper:hover .promise-image {
    filter: brightness(55%) contrast(105%); /* Slightly brighter on hover */
    transform: scale(1); /* Zoom out on hover */
}


.promise-content {
  position: relative; /* Positioned relative to .promise-container, but on top */
  z-index: 2; /* Text over image */
  color: white; /* White text for contrast */
  text-align: center;
  max-width: 800px; /* Constrain text width */
  padding: 40px 25px; /* Ample padding */
  
  /* Add a subtle background to the text container for extra contrast if needed */
  /* background-color: rgba(0, 0, 0, 0.2); */  
  border-radius: 12px;
  
  /* Animation for content to fade in (optional) */
  /* opacity: 0; */
  /* transform: translateY(20px); */
  /* animation: fadeInSlideUp 1s forwards 0.5s; */
}

/* @keyframes fadeInSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */


.promise-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; /* Large and prominent */
  margin: 0 0 15px 0;
  color: #fff; /* White title */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8); /* Stronger shadow */
}

.promise-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9); /* Slightly off-white for description */
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
  max-width: 700px; /* Keep description narrower */
  margin-left: auto;
  margin-right: auto;
}

.promise-description strong {
    font-weight: 500;
    color: #fff;
}

/* * === CSS BLOCK CHANGED === 
 * Added styles for green "pill" background
 */
.promise-features {
  list-style: none;
  padding: 0;
  /* Auto margins center the block */
  margin: 2.5rem auto 2.5rem auto;
  
  /* Mobile-first: single column */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Space between items */
  align-items: center; /* Center the "pills" on mobile */
}

.promise-features li {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff; /* White text for the overlay */
  
  display: flex;
  align-items: center;

  /* --- Added Styles --- */
  background-color: #4A7C59;
  padding: 10px 20px;
  border-radius: 50px;
}
/* === END OF CHANGED BLOCK === */

.feature-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
  line-height: 1;
}

/* * === CSS BLOCK CHANGED === 
 * Aligns the "pills" to the start of their grid cells
 */
@media (min-width: 768px) {
  .promise-features {
    /* Switch to 2-column grid */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    /* Adjust gaps for the grid */
    column-gap: 2.5rem; /* Space between columns */
    row-gap: 1.5rem;   /* Space between rows */

    /* Aligns the "pills" to the start of their grid cells */
    justify-items: start;
  }
  
  /* This rule is no longer needed */
  /* .promise-features li { } */
}
/* === END OF CHANGED BLOCK === */


/* * === CSS BLOCK CHANGED === 
 * Changed button to solid yellow bg with white text
 */
.promise-button {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  
  background-color: #FFD700; /* Yellow background */
  border: 2px solid #FFD700; /* Matching border to maintain size */
  color: #fff; /* White text */
  
  padding: 16px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.promise-button:hover {
  background-color: #e6b800; /* Darker gold on hover */
  border-color: #e6b800; /* Match border to new bg */
  color: #fff; /* Keep text white */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 184, 0, 0.4); /* Darker gold shadow */
}
/* === END OF CHANGED BLOCK === */


/* === Responsiveness for Overlay Section === */
/* NOTE: The old responsive rules for .promise-features were removed */
@media (max-width: 992px) {
  .our-promise-section {
    height: 550px;
  }
  .promise-title {
    font-size: 2.8rem;
  }
  .promise-description {
    font-size: 1.1rem;
  }
  .promise-button {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .our-promise-section {
    height: 500px;
  }
  .promise-title {
    font-size: 2.2rem;
  }
  .promise-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .promise-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .our-promise-section {
    height: 450px;
  }
  .promise-content {
      padding: 20px 15px; /* Less padding on very small screens */
  }
  .promise-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .promise-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .promise-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
