/* style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* Colors from palette: #337357 (Green), #5CB338 (Light Green), #EAE4D5 (Beige), #FFC145 (Yellow) */
  --primary-color: #337357;
  --secondary-color: #5CB338;
  --accent-color: #5F6F52;
  --light-color: #EAE4D5;
  --dark-color: #1A3A2C;
  --gradient-primary: linear-gradient(135deg, #5CB338 0%, #337357 100%);
  --hover-color: #265741;
  --background-color: #FDFDFB;
  --text-color: #333333;
  --border-color: rgba(51, 115, 87, 0.2);
  --divider-color: rgba(51, 115, 87, 0.1);
  --shadow-color: rgba(26, 58, 44, 0.15);
  --highlight-color: #FFC145;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Menu logic */
#nav-toggle-v4:checked ~ .navigation {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  border-bottom: 2px solid var(--highlight-color);
}

#nav-toggle-v4:checked ~ .navigation ul {
  flex-direction: column;
  width: 100%;
  text-align: center;
}

#nav-toggle-v4:checked ~ .navigation li {
  margin: 15px 0;
}

/* Animations and cards */
.hover-effect {
  transition: all 0.4s ease;
}

.hover-effect:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px var(--shadow-color);
}

input:focus, textarea:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 2px var(--secondary-color) !important;
}

.hover\:text-underline:hover {
  text-decoration: underline;
}