/*
Theme Name: Anchor Development
Theme URI: https://anchordev.com
Author: Austin Ginder
Author URI: https://austinginder.com
Description: A minimal theme for Anchor Development - Open Source Software
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anchordev
*/

/* Base resets - Tailwind handles most styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ensure body fills viewport */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content should grow to fill available space */
main {
  flex: 1;
}

/* Line clamp utility for description truncation */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pulse animation for the badge dot */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
