/*
Theme Name: Simple Dark Portfolio
Theme URI: https://example.com
Author: AI Assistant
Description: A simple, uncluttered dark theme to display projects.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: dark-portfolio
*/

body {
    background-color: #121212;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Global Link Settings: Forces text white on all desktop and mobile devices, removes underscores */
a, 
a:link, 
a:visited, 
a:active,
a:-webkit-any-link,
a[href^="tel"], 
a[href^="mailto"] {
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ffffff !important; /* Forces Safari iOS text rendering override */
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

/* Hover Link Settings: Beautiful blue neon text glow */
a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 0 5px rgba(253, 224, 71, 0.6), 
             0 0 10px rgba(253, 224, 71, 0.4), 
             0 0 20px rgba(253, 224, 71, 0.2) !important;

}

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

header {
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #292929;
}

header h1 a {
    font-size: 5rem;
}

header p {
    color: #a0a0a0;
    margin-top: 10px;
}

.project-grid {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* Centers the fixed element perfectly */
  width: 100%;                 /* Default mobile width */
  z-index: 999;
}

/* Desktop screens (typically 768px wide and up) */
@media (min-width: 768px) {
  .project-grid {
    width: 50%;                /* Shrinks to 50% on desktop */
  }
}

.project-item {
    background-color: rgba(30, 30, 30, 0.8);
    border: 5px solid #292929;    
    border-radius: 8px; /*Padding around bubble */
    padding: 5px;
    margin-bottom: 10px;
}

.project-meta {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 40px 0;
    color: #666666;
    border-top: 1px solid #292929;
    margin-top: 60px;
}
