/* 2026 Modern Core */
body {
    background-color: #0d1117; /* dark gray/blue */
    color: #e6edf3; /* light gray text */
    font-family: "Inter", system-ui, sans-serif;
}

/* Navbar */
.navbar {
    background: rgba(8, 8, 12, 0.75) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-link {
    color: #bfbfc7 !important;
    transition: color .25s;
}

    .nav-link:hover {
        color: #ffffff !important;
    }

/* Holographic accent */
.text-holo {
    background: linear-gradient(90deg, #c471ed, #12c2e9, #8a2be2, #c471ed);
    background-size: 300% 300%; /* make gradient larger in both directions */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShift 8s ease infinite;
    line-height: 1.4; /* or higher */
    overflow: visible;
}

@keyframes holoShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* 2026 Cards */
.card-2026 {
    background: rgba(20, 20, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(18px);
    transition: all .35s ease;
}

    .card-2026:hover {
        transform: translateY(-4px);
        border-color: rgba(150, 100, 255, 0.4);
        box-shadow: 0 0 40px rgba(150, 100, 255, 0.15);
    }

/* Iridescent Button */
.btn-holo {
    background: linear-gradient(135deg, #8a2be2, #12c2e9, #c471ed);
    background-size: 250%;
    color: white;
    border: none;
    padding: .75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-position .5s ease, transform .3s ease;
}

    .btn-holo:hover {
        background-position: 100%;
        transform: translateY(-3px);
    }

/* Hero (calm gradient animation) */
.hero-2026 {
    background: radial-gradient(circle at 30% 20%, rgba(140, 90, 255, 0.4), rgba(20, 20, 30, 1)), radial-gradient(circle at 80% 80%, rgba(60, 180, 255, 0.2), transparent 60%);
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-card {
    background-color: #111;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

    .contact-card h1 {
        margin-bottom: 20px;
    }

/* Dark Form Controls */
.form-control {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}

    .form-control:focus {
        background-color: #1f1f1f;
        color: #fff;
        border-color: #0d6efd;
        box-shadow: 0 0 0 .2rem rgba(13,110,253,.25);
    }

/* Label Style */
.form-label {
    color: #ccc;
    margin-bottom: 6px;
}

/* Button */
.btn-primary {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
}
