/*
Theme name: Nothing But The Best
Theme URI: http://github.com/salvadorryes/nothingbutthebest
Description: Nothing But The Best
Author: Ryan Salvador
Author URI: http://inv0ke.me
Version: 1.0.2
*/

.hero {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 290px;
}

.custom-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.custom-code {
  font-family: 'Courier New', Courier, monospace;
}

.text-purple {
  color: #c084fc; /* A nice purple like Tailwind's purple-300 */
}

/* taken from orig */
:root {
            --primary: #3b82f6;
            --secondary: #1e293b;
            --accent: #6366f1;
        }
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: #f8fafc;
        }
        
        .code-font {
            font-family: 'Space Mono', monospace;
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link::after {
            content: '';
            display: block;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        .blog-card:hover .blog-image {
            transform: scale(1.05);
        }
        
        .blog-image {
            transition: transform 0.3s ease;
        }
        
        .tech-stack-icon {
            transition: all 0.3s ease;
        }
        
        .tech-stack-icon:hover {
            transform: translateY(-3px);
            filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
        }