:root {
  --primary: #2d6a4f;
  --primary-light: #40916c;
  --dark: #1b1b1b;
  --light-mint: #f0fff4;
  --white: #ffffff;
  --text-main: #333333;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-main);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, .title, .subtitle, .navbar-brand {
  font-family: 'Outfit', sans-serif;
}

/* Colors and Backgrounds */
.has-text-primary { color: var(--primary) !important; }
.has-background-primary { background-color: var(--primary) !important; }
.has-background-mint { background-color: var(--light-mint) !important; }
.has-background-dark { background-color: var(--dark) !important; }
.has-text-mint { color: var(--light-mint) !important; }

/* Buttons */
.button.is-primary {
  background-color: var(--primary);
  border-color: transparent;
  color: var(--white);
  transition: all 0.3s ease;
  font-weight: 600;
}
.button.is-primary:hover {
  background-color: var(--primary-light);
}

.button.is-outline-primary {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
  font-weight: 600;
}
.button.is-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 0.5rem 0;
}
.navbar-item {
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27, 27, 27, 0.85);
}
.hero-body {
  position: relative;
  z-index: 1;
}
.hero .title, .hero .subtitle {
  color: var(--white);
}

/* Cards (Products & Process) */
.product-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* About Section */
.about-image {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}

/* How to Order Steps */
.step-item {
  text-align: center;
  padding: 2rem 1rem;
}
.step-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: var(--primary);
}
.step-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Accordion (FAQ) */
.accordion-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 0;
}
.accordion-header {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content-inner {
  padding-bottom: 1.5rem;
  color: #555;
}
.accordion-item.is-active .accordion-content {
  max-height: 500px;
}
.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}
.accordion-item.is-active .accordion-icon {
  transform: rotate(180deg);
}

/* Form Styles */
.input, .textarea {
  border-color: #ddd;
  box-shadow: none;
}
.input:focus, .textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.125em rgba(45, 106, 79, 0.25);
}
.form-success-message {
  display: none;
  background-color: var(--light-mint);
  border-left: 4px solid var(--primary);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 4px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: #aaa;
  padding: 4rem 1.5rem;
}
.footer .title {
  color: var(--white);
}
.footer a {
  color: #ddd;
}
.footer a:hover {
  color: var(--primary-light);
}

/* Utility */
.section-padding {
  padding: 5rem 1.5rem;
}

/* Override Bulma .content default dark text in dark footer */
.footer .content p {
  color: #aaa !important;
}
