@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  /* Green/Blue Nature/Health Theme */
  --primary-color: #27AE60;
  --secondary-color: #2ECC71;
  --accent-color: #F1C40F;
  --light-color: #ECF9F1;
  --dark-color: #1E293B;
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
  --hover-color: #1E8449;
  --background-color: #F9FAFB;
  --text-color: #374151;
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(39, 174, 96, 0.1);
  --shadow-color: rgba(39, 174, 96, 0.15);
  --highlight-color: #3498DB;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', serif;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    /* Subtle Pattern Background */
    background-image: radial-gradient(var(--divider-color) 1px, transparent 1px);
    background-size: 30px 30px;
}

h1, h2, h3, h4, h5, h6, .section-title {
    font-family: var(--main-font);
    color: var(--dark-color);
}

header {
    background-color: var(--dark-color);
}

/* Neuromorphism & Card Styles */
.feature-card, .testimonial-card, .faq-item, .form-wrapper {
    background: #ffffff;
    box-shadow: 10px 10px 20px var(--shadow-color), 
                -5px -5px 15px rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover, .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 30px var(--shadow-color), 
                -5px -5px 15px rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
}

/* Sections Configuration */
section:not(.hero-section) {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

/* Hero Section */
.hero-section {
    min-height: 70vh; /* Random between 60-80 */
    background: linear-gradient(rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.6)), url('./img/bg.jpg') no-repeat center center/cover;
}

/* CTA Sections */
.cta-section {
    min-height: 50vh;
    background-image: url('./img/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-section .overlay {
    background-color: rgba(30, 41, 59, 0.6);
}

/* Mobile Menu Logic (CSS Only) */
#menu-toggle:checked ~ .mobile-nav {
    transform: translateX(0);
}