/* Terminal Interface Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', 'Courier New', monospace;
    line-height: 1.6;
    color: #00ff00;
    background-color: #000000;
    font-size: 14px;
    overflow-x: hidden;
}

/* Global Link Styling */
a {
    color: #00ff00;
    text-decoration: underline;
    transition: all 0.3s ease;
}

a:hover {
    color: #000000;
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    text-decoration: underline;
    padding: 2px 4px;
    border-radius: 2px;
}

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

/* Terminal Animation */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.cursor::after {
    content: '_';
    animation: blink 1s infinite;
    color: #00ff00;
}

/* Header Styles - Terminal Header */
header {
    background-color: #001100;
    border-bottom: 2px solid #00ff00;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 10px #00ff00;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand h1 {
    color: #00ff00;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 10px #00ff00;
}

.nav-brand h1::before {
    content: '> ';
    color: #00ff00;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #00ff00;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: #ffffff;
    background-color: #00ff00;
    border: 1px solid #00ff00;
    text-shadow: none;
}

.nav-links a::before {
    content: '[ ';
}

.nav-links a::after {
    content: ' ]';
}

/* Hero Section - Terminal Welcome Screen */
.hero {
    background: linear-gradient(135deg, #000000 0%, #001100 100%);
    color: #00ff00;
    padding: 150px 0 100px;
    text-align: left;
    margin-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        );
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
}

.hero-content::before {
    content: 'user@abkarino-ventures:~$ ';
    color: #00ff00;
    font-weight: bold;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    text-shadow: 0 0 10px #00ff00;
}

.hero-content h2::before {
    content: 'echo "';
    color: #ffff00;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-content h2::after {
    content: '"';
    color: #ffff00;
    font-size: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 2px solid #00ff00;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    background-color: #000000;
    color: #00ff00;
    padding: 1rem 2rem;
    border: 2px solid #00ff00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Courier Prime', monospace;
}

.cta-button::before {
    content: './';
}

.cta-button:hover {
    background-color: #00ff00;
    color: #000000;
    box-shadow: 0 0 20px #00ff00;
}

/* Services Section - Terminal Output */
.services {
    padding: 100px 0;
    background-color: #000000;
}

.services h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #00ff00;
}

.services h2::before {
    content: 'admin@abkarino-ventures:~$ ls -la services/\n';
    color: #ffff00;
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

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

.service-card {
    background: #001100;
    padding: 2rem;
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '> ';
    color: #00ff00;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.service-card:hover {
    background: #002200;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    border-color: #ffffff;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.service-card p {
    color: #cccccc;
    line-height: 1.7;
    margin-left: 1.5rem;
}

/* Products Section - Terminal Directory Listing */
.products {
    padding: 100px 0;
    background-color: #000000;
}

.products h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #00ff00;
}

.products h2::before {
    content: 'root@abkarino-ventures:~$ find /products -type f -executable\n';
    color: #ffff00;
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.product-showcase {
    display: flex;
    justify-content: center;
}

.product-card {
    background: linear-gradient(145deg, #001100, #002200);
    color: #00ff00;
    padding: 3rem;
    border: 2px solid #00ff00;
    max-width: 600px;
    text-align: left;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.product-card::before {
    content: '#!/bin/bash\n# Product: ';
    color: #888888;
    font-size: 0.9rem;
    white-space: pre;
    display: block;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px #00ff00;
}

.product-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    border-left: 2px solid #00ff00;
    padding-left: 1rem;
}

.product-links {
    margin: 2rem 0;
}

.product-link {
    display: inline-block;
    background-color: #000000;
    color: #00ff00;
    padding: 0.75rem 1.5rem;
    border: 1px solid #00ff00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-link::before {
    content: 'wget ';
}

.product-link:hover {
    background-color: #00ff00;
    color: #000000;
    box-shadow: 0 0 15px #00ff00;
}

.product-status {
    font-size: 0.9rem;
    color: #ffff00;
    font-style: italic;
}

.product-status::before {
    content: '# Status: ';
}

/* Contact Section - Terminal Interface */
.contact {
    padding: 100px 0;
    background-color: #000000;
}

.contact h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #00ff00;
}

.contact h2::before {
    content: 'user@abkarino-ventures:~$ cat /etc/contact.conf\n';
    color: #ffff00;
    font-size: 1rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
}

.contact-method {
    text-align: left;
    padding: 2rem;
    background: #001100;
    border: 1px solid #00ff00;
    position: relative;
}

.contact-method::before {
    content: '[CONFIG]';
    color: #ffff00;
    font-size: 0.8rem;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
}

.contact-method h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-method h3::before {
    content: '> ';
    color: #00ff00;
}

.contact-method a {
    color: #00ff00;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: #000000;
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    padding: 2px 4px;
    border-radius: 2px;
}

/* Footer - Terminal Footer */
footer {
    background-color: #001100;
    color: #00ff00;
    padding: 60px 0 20px;
    border-top: 2px solid #00ff00;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section h4::before {
    content: '# ';
    color: #00ff00;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li::before {
    content: '- ';
    color: #00ff00;
}

.footer-section a {
    color: #00ff00;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #000000;
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    padding: 2px 4px;
    border-radius: 2px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #00ff00;
    text-align: center;
    color: #888888;
}

.footer-bottom::before {
    content: 'system@abkarino-ventures:~$ echo "';
    color: #ffff00;
}

.footer-bottom::after {
    content: '"';
    color: #ffff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services h2,
    .products h2,
    .contact h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        margin: 0 1rem;
        padding: 2rem;
    }
}

/* Terminal Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border: 1px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 