@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #2ECC71;
  --accent-color: #F1C40F;
  --light-color: #FEFAE0;
  --dark-color: #1E8449;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  --hover-color: #229954;
  --background-color: #FFFFFF;
  --text-color: #4B5563;
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(39, 174, 96, 0.1);
  --shadow-color: rgba(39, 174, 96, 0.1);
  --highlight-color: #E01171;
  --main-font: 'Lora', serif;
  --alt-font: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }
#menu-toggle:checked ~ .navigation { display: flex !important; }

.hero-section {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./img/bg.jpg') no-repeat center center/cover;
}

.cta-1-section, .cta-2-section {
    background: linear-gradient(rgba(30, 132, 73, 0.8), rgba(30, 132, 73, 0.8)), url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

details summary::-webkit-details-marker { display: none; }