/* Bento Box Future Portfolio Styles */

:root {
    --bg-start: #0a1936;
    --bg-end: #020a1c;
    --accent: #79a8ff;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
    color: #e1e8f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.bento-nav {
    background: rgba(10, 25, 54, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a5caff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #92b5ff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: rgba(121, 168, 255, 0.1);
    color: #a5caff;
}

.nav-links a.active {
    background: rgba(121, 168, 255, 0.2);
    color: #a5caff;
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem 2rem;
    background: linear-gradient(180deg, rgba(10,25,60,0.9), rgba(5,15,35,0.9));
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero h1 {
    margin: 0;
    font-size: 2.4rem;
    color: #a5caff;
}
.hero p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #92b5ff;
}

/* Bento grid layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.bento-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}
.bento-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-color: var(--accent);
}
.bento-box h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #b2ccff;
}
.bento-box h3 {
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    color: #98b8ff;
}
.bento-box p, .bento-box li {
    font-size: 0.9rem;
    line-height: 1.5;
}
.bento-box a {
    color: #7eaaff;
    text-decoration: none;
}
.bento-box a:hover {
    text-decoration: underline;
}

/* Profile placeholder */
.profile-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #304d8c, #162a56);
    margin-bottom: 1rem;
}

/* Social icons */
.social-links {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.7rem;
    text-decoration: none;
    font-weight: bold;
}
.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.pinterest { background-color: #bd081c; }
.social-icon.reddit { background-color: #ff4500; }
.social-icon.discord { background-color: #5865f2; }
.social-icon.patreon { background-color: #e85a18; }
.social-icon.paypal { background-color: #003087; }
.social-icon.stripe { background-color: #635bff; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon.youtube { background-color: #ff0000; }
.social-icon.tiktok { background: linear-gradient(45deg, #69c9d0 0%, #ee1d52 50%, #000000 100%); }
.social-icon.linkedin { background-color: #0077b5; }

/* Main Content */
main {
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Section Styles */
.bento-section {
    margin-bottom: 3rem;
}

.bento-section h2 {
    color: #a5caff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.bento-section h3 {
    color: #98b8ff;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.bento-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #d4e1f5;
}

.bento-section ul {
    line-height: 1.8;
    margin-left: 1.5rem;
    color: #d4e1f5;
}

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

/* Tech Specs */
.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.spec {
    background: rgba(121, 168, 255, 0.15);
    border: 1px solid rgba(121, 168, 255, 0.3);
    color: #a5caff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Project Cards */
.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-color: var(--accent);
}

.project-card h3 {
    color: #a5caff;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.project-card .project-type {
    color: #7eaaff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.card-thumb {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(121, 168, 255, 0.3);
    background: rgba(121, 168, 255, 0.1);
    color: #a5caff;
}

.btn:hover {
    background: rgba(121, 168, 255, 0.2);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a1936;
}

.btn.primary:hover {
    background: #8ab8ff;
    border-color: #8ab8ff;
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-color: var(--accent);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #92b5ff;
}

.blog-card h3 {
    color: #a5caff;
    margin: 0 0 0.8rem 0;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Service Cards Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-color: var(--accent);
}

.service-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #a5caff;
    margin: 0 0 0.8rem 0;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    background: rgba(10, 25, 54, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #92b5ff;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .bento-nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}