/*
Theme Name: Paramyter Tech
Theme URI: https://paramyter.tech
Author: Paramyter Tech
Author URI: https://paramyter.tech
Description: Custom WordPress theme for Paramyter Tech blog
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paramyter-tech
*/

:root {
  --primary: #001F4D;
  --secondary: #1a1a1a;
  --accent: #00A3FF;
}

/* Global Styles */
body {
  font-family: 'Geist', sans-serif;
  background: linear-gradient(to bottom, #001F4D, #000913);
  color: #ffffff;
  margin: 0;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(0, 31, 77, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.site-logo {
  max-width: 360px;
  height: auto;
}

.main-navigation {
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-navigation a:hover {
  color: #ffffff;
}

/* Content Styles */
.site-content {
  padding-top: 120px;
  min-height: calc(100vh - 300px);
}

.post-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.post-card:hover {
  border-color: rgba(0, 163, 255, 0.5);
}

.post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Footer Styles */
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-widget {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}
