/*
Theme Name: Aura Decor Color Block
Theme URI: https://auradecor.art
Author: Antigravity AI
Description: A modern, vibrant, color-block theme built exclusively for Aura Decor.
Version: 1.0
Text Domain: auradecor
*/
:root {
  --primary-color: #FF3366;
  --secondary-color: #33CC99;
  --bg-color: #F4F4F9;
  --text-color: #2D2D2D;
  --card-bg: #FFFFFF;
  --border-radius: 16px;
  --box-shadow: 8px 8px 0px rgba(0,0,0,1);
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}
header {
  background-color: var(--primary-color);
  padding: 2rem;
  border-bottom: 4px solid #000;
  text-align: center;
}
header h1 a {
  color: #FFF;
  text-decoration: none;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 4px 4px 0px #000;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--card-bg);
  border: 4px solid #000;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px rgba(0,0,0,1);
}
.post-card h2 a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
}
.post-card h2 a:hover {
  color: var(--primary-color);
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--border-radius) - 4px);
  border: 2px solid #000;
  margin-bottom: 1rem;
}
.button {
  display: inline-block;
  background: var(--secondary-color);
  color: #000;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: 2px solid #000;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.2s;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
}
footer {
  text-align: center;
  padding: 3rem;
  background: #000;
  color: #FFF;
  margin-top: 4rem;
}

/* Navigation Menu */
.primary-navigation {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-menu li a {
  display: inline-block;
  color: #000;
  background: #FFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav-menu li a:hover {
  background: var(--secondary-color);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000;
}
