/* Hypertrophy.me Custom Styling */

:root {
  --primary-color: #e64c3c;
  --secondary-color: #34495e;
  --accent-color: #3498db;
  --light-gray: #f4f4f4;
  --dark-gray: #2c3e50;
}

.site-title {
  font-weight: 700;
  letter-spacing: 1px;
}

.site-title span {
  color: var(--primary-color);
}

/* Make headings more prominent for fitness content */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1::after, h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin-top: 12px;
  margin-bottom: 25px;
}

/* Make images pop with subtle effects */
.post img {
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Styling for workout-related content */
.workout-program {
  background-color: var(--light-gray);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 5px 5px 0;
}

/* Button styling */
.btn {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Footer styling */
.site-footer {
  background-color: var(--dark-gray);
  padding: 40px 0;
}

.site-footer a {
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1::after, h2::after {
    width: 60px;
    height: 3px;
  }
  
  .post img {
    margin-bottom: 20px;
  }
}

.sponsorship-disclosure {
  display: block;
  background-color: #ffebee;
  border: 2px solid #f44336;
  color: #b71c1c;
  padding: 12px 16px;
  margin: 24px 0;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1.1em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sponsorship-disclosure::before {
  content: "⚠️ ";
}

.mid-disclosure {
  background-color: #ffe0b2;
  border-color: #ff9800;
  color: #e65100;
}

.final-disclosure {
  background-color: #e8f5e9;
  border-color: #4caf50;
  color: #2e7d32;
  font-size: 1.2em;
} 