:root {
    /* Light theme */
    --background: #e0f7fa;
    --text-color: #1e1e1e;
    --accent-color: #004d40;
    --card-bg: white;
    --header-bg: #c5e1e5;
	--footer-bg: #eee;
    --nav-link: #00695c;
    --button-bg: #80cbc4;
    --button-text: #fff;
    --affirmation-bg: #f1f8e9;
    --affirmation-border: #aed581;
    --ticker-bg: #c8e6c9;
    --ticker-text: #2e7d32;
    --hidden-figure-color: #e0f7fa;
  }
  
  [data-theme="dark"] {
    --background: #111;
    --text-color: #e0e0e0;
    --accent-color: #81a1c1;
    --card-bg: #1b1b1b;
    --header-bg: #1a1a1a;
	--footer-bg: #1a1a1a;
    --nav-link: #81a1c1;
    --button-bg: #3b8fb1;
    --button-text: #fff;
    --affirmation-bg: #263238;
    --affirmation-border: #607d8b;
    --ticker-bg: #2e7d32;
    --ticker-text: #a5d6a7;
    --hidden-figure-color: rgba(255, 255, 255, 0.05);
  }
  
  body {
    margin: 0;
    font-family: "Raleway", sans-serif;
    background: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background 0.5s, color 0.5s;
  }
  
  .hidden-figures {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  
  .figure {
    position: absolute;
    width: 100px;
    height: 200px;
    background: var(--hidden-figure-color);
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  [data-theme="dark"] .figure {
    opacity: 0.1;
  }
  
  .figure.one { top: 20%; left: 10%; }
  .figure.two { top: 50%; right: 15%; }
  .figure.three { bottom: 10%; left: 40%; }
  
  header {
    background: var(--header-bg);
    padding: 2rem;
    text-align: center;
    z-index: 10;
  }
  
  header h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 400;
    line-height: 56px;
  }
  
  nav {
    margin-top: 1rem;
  }
  
  nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--nav-link);
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .mode-toggle {
    margin-top: 1rem;
	float: right;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid var(--nav-link);
    color: var(--nav-link);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
	
  }
  
  .mode-toggle:hover {
    background: var(--nav-link);
    color: white;
  }
  
  main {
    /* padding: 2rem; */
    flex: 1;
    position: relative;
    z-index: 1;
  }
  
  section {
    max-width: 800px;
    margin: 0 auto 3rem auto;
  }
  
  h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
  }
  
  .button {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .button:hover {
    background: var(--accent-color);
  }
  
  .affirmations {
    background: var(--affirmation-bg);
    padding: 1rem;
    border-left: 4px solid var(--affirmation-border);
    font-style: italic;
  }
  
  .ticker {
    background: var(--ticker-bg);
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: -2rem;
    color: var(--ticker-text);
  }
  
  footer {
    background: var(--footer-bg);
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    z-index: 10;
  }
  
  @media (max-width: 600px) {
    header h1 {
      font-size: 1.8rem;
    }
  
    nav a {
      display: block;
      margin: 0.5rem 0;
    }
  }
  
  .why-us-section {
    background-color: var(--header-bg);
    padding: 3rem 4rem;
    text-align: center;
    z-index: 1;
  }
  
  .row {
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	  gap: 1.5rem;
  }
  
  .harmony-card {
    position: relative;
    border-radius: 12px;
	padding: 0;
	overflow: hidden;
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
	max-width: 300px;
	  margin: auto;
  }
  
	.harmony-card img {
	  display: block;          /* Removes inline spacing */
	  width: 100%;             /* Stretches image to full width of the card */
	  height: auto;            /* Maintains aspect ratio */
	  margin: 0;               /* Ensures no default margin */
	  padding: 0;              /* Ensures no default padding */
	  border-radius: 0;        /* Optional: prevents rounded edges if undesired */
	}

  .harmony-card:hover .card-icon {
    /* transform: translateY(-5px); */
	color: var(--accent-color);
	background: var(--card-bg);
	transition: color 0.3s ease;
	transition: background 0.3s ease;
  }
  
  .card-icon {
	position: relative;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 0 5px var(--card-bg);
    z-index: 2;
  }
  
  .card-body {
	margin-top: -3rem;
  }
  
  .card-text {
	  
	font-size: 1rem;
	margin: -1rem 1rem 1rem 1rem;
  }
  
  .card-title a {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
  }
  
  .card-title a:hover {
    text-decoration: underline;
  }
  