@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colors: #5F6F52 #A9B388 #FEFAE0 #B99470 */
  --primary-color: #5F6F52;
  --secondary-color: #A9B388;
  --accent-color: #B99470;
  --light-color: #FEFAE0;
  --dark-color: #3e4a35;
  
  --gradient-primary: linear-gradient(135deg, #A9B388 0%, #5F6F52 100%);
  --hover-color: #728464;
  --background-color: #Fdfcf5; /* Lighter beige for bg */
  --text-color: #2b2b2b;
  --border-color: rgba(95, 111, 82, 0.2);
  --shadow-color: rgba(95, 111, 82, 0.1);
  --highlight-color: #D35400; /* Complementary warm color */
  
  /* Fonts */
  --main-font: 'Lora', serif;
  --alt-font: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Hero & CTA Backgrounds */
.hero-bg {
    min-height: 70vh;
    background: url('./img/bg.jpg') no-repeat center center/cover;
    position: relative;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(95, 111, 82, 0.3);
}

.cta-parallax {
    background: url('./img/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

/* Mobile Menu Logic (No JS) */
#menu-btn:checked ~ .navigation {
    display: block;
}