/* Variant 3: style.css */
:root {
  --primary-color: #337357;
  --secondary-color: #5F6F52;
  --accent-color: #5CB338;
  --light-color: #FEFAE0; 
  --dark-color: #000000;
  --gradient-primary: linear-gradient(135deg, #A9B388 0%, #337357 100%);
  --hover-color: #27AE60;
  --background-color: #F2F2F2;
  --text-color: #000000;
  --border-color: #A9B388;
  --divider-color: rgba(51, 115, 87, 0.2);
  --shadow-color: rgba(95, 111, 82, 0.1);
  --highlight-color: #ECE852;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

.font-heading {
    font-family: var(--main-font);
}

.font-text {
    font-family: var(--alt-font);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--alt-font);
}

a, button {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

a:hover, button:hover {
    opacity: 0.9;
}