@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Green/Nature Theme */
  --primary-color: #5F6F52; 
  --secondary-color: #337357;
  --accent-color: #A9B388;
  --light-color: #FEFAE0;
  --dark-color: #2F3E2E;
  --gradient-primary: linear-gradient(135deg, #A9B388 0%, #5F6F52 100%);
  --hover-color: #4A5840;
  --background-color: #FAFAFA;
  --text-color: #1F2937;
  --border-color: rgba(95, 111, 82, 0.2);
  --divider-color: rgba(51, 115, 87, 0.1);
  --shadow-color: rgba(95, 111, 82, 0.1);
  --highlight-color: #D4A373;
  
  /* Fonts from prompt + Arabic fallback */
  --main-font: 'Playfair Display', 'Cairo', serif;
  --alt-font: 'Montserrat', 'Cairo', sans-serif;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

/* Header Checkbox Hack */
#menu-toggle:checked ~ .mobile-nav {
    display: block;
}

/* Hero Section */
.hero-section {
    min-height: 80vh; /* Random value within range */
    background: url('./img/bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

/* CTA Sections */
.cta-section-1 {
    background: url('./img/bg.jpg') no-repeat bottom center;
    background-size: cover;
    background-attachment: scroll; /* Different feel */
}

.cta-section-2 {
    background: url('./img/bg.jpg') no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
}

/* Custom Soft Neumorphism for Light Theme */
.feature-card {
    background: #ffffff;
    box-shadow: 20px 20px 60px #d9d9d9, 
               -20px -20px 60px #ffffff;
    border-radius: 20px;
}

/* Section Spacing */
section:not(.hero-section) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.hover\:text-underline:hover {
    text-decoration: underline;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
}
::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color); 
}