/*
Theme Name: Stop Stress RESET²¹
Description: A custom WordPress theme for Stop Stress RESET²¹ - Conscious Movement for Restoring Calm and Strength
Author: Ambex
Version: 1.1
License: GPL v2 or later
Text Domain: stopstress
*/

@import url('https://fonts.googleapis.com/css2?family=Menbere:wght@100..700&display=swap');

/* CSS Variables */
:root {
  --primary: #0073aa;
  --accent: #28a745;
  --text-dark: #000;
  --text-light: #444;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(27, 127, 204, .5);
  --radius: 8px;
  --transition: all 0.3s ease;
}

.wpcf7-form br {
    display: none;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--text-dark);
  font-family: "Menbere", serif;
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.site-logo a:hover {
  color: var(--accent);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

nav a:hover,
nav a.current {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Main Content */
main {
  min-height: 70vh;
  padding: 0;
}

/* Articles/Posts */
article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

article:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

article img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

article h2 {
  margin-bottom: 1rem;
}

article h2 a {
  color: var(--text-dark);
  text-decoration: none;
}

article h2 a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
  border: 2px solid var(--primary)
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Footer */
footer {
  background: var(--bg-light);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

footer p {
  margin: 0;
  color: var(--text-light);
}



/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  article {
    padding: 1.5rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  
  article {
    padding: 1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}