
/*
 Theme Name:   Inspiro Child (Pro)
 Theme URI:    https://clearmindhabits.com
 Description:  Professional-grade child theme for Clear Mind Habits
 Author:       Clear Mind Habits
 Author URI:   https://clearmindhabits.com
 Template:     inspiro
 Version:      1.2.0
*/

/* Import parent styles */
@import url("../inspiro/style.css");

/* Typography */
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  color: #222;
  background: #f7f9fb;
}

h1, h2, h3, h4 {
  color: #0a2540;
}

a {
  color: #0a2540;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Container */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
}

/* Buttons */
.btn-primary {
  background: #0a2540;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #1a365d;
}

/* Accessibility */
.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Animations */
.fade-in {
  animation: fadeIn ease 2s;
  -webkit-animation: fadeIn ease 2s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
}
