@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Palette: Green, Light Green, Sand, Dark Blue */
  --primary-color: #337357;
  --secondary-color: #2C3D4F;
  --accent-color: #5CB338;
  --light-color: #FEFAE0;
  --dark-color: #1F2937;
  --gradient-primary: linear-gradient(135deg, #337357 0%, #5CB338 100%);
  --hover-color: #265540;
  --background-color: #F2F2F2;
  --text-color: #4B5563;
  --border-color: rgba(51, 115, 87, 0.2);
  --divider-color: rgba(44, 61, 79, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #FF6B35;
  
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--main-font);
}

/* Nav Menu Logic */
#menu-check:checked ~ .mobile-menu {
    display: flex !important;
}

/* Specific styling for the timeline in Features */
#harmony .relative::before {
    /* Timeline line */
    content: '';
    position: absolute;
    top: 0;
    bottom: -64px;
    left: -29px; /* Adjust based on padding/margin */
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

#harmony .relative:last-child::before {
    display: none;
}

.container {
    position: relative;
    z-index: 1;
}