/* assets/css/styles.css */
:root {
    --primary: #67aede;
    --bs-primary: #67aede;
    --card-dark: #202840;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #151d28;
    color: #dfe4ea;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.navbar {
    background: #172034;
    border-bottom: 2px solid var(--primary);
}

.hero-section {
    background: #151d28;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom, 
      rgba(24,35,58, 0.88),
      rgba(103,174,222, 0.13) 68%,
      rgba(24,35,58, 0.97) 100%
    );
    z-index: 1;
    pointer-events: none;
}

#matrix-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0 !important;
    display: block;
}

.hero-content, .bg-circles {
    position: relative;
    z-index: 2;
}

.hero-content {
    background: rgba(20, 32, 48, 0.21);
    border-radius: 24px;
    padding: 32px 16px;
    display: inline-block;
    backdrop-filter: blur(2.5px);
    margin-top: 1rem;
    box-shadow: 0 6px 42px 0 rgba(103,174,222,0.06);
    max-width: 580px;
}

.hero-content h1, 
.hero-content h2, 
.hero-content .modern-subtitle, 
.hero-content p {
    color: #fff !important;
    text-shadow: 0 1.5px 17px #123a71, 0 4px 44px #253968;
}
.hero-content .modern-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.btn-gradient, .btn-primary {
    background: var(--primary) !important;
    color: #0a1523 !important;
    border: none;
    font-weight: bold;
    box-shadow: 0 3px 24px #67aede33;
}
.btn-gradient:hover, .btn-primary:hover, .btn-outline-light:hover {
    background: #58a0dc !important;
    color: #fff !important;
}

.btn-outline-light {
    font-weight: bold;
    background: rgba(22, 36, 67, 0.80);
    color: #fff !important;
    border: 2px solid var(--primary);
    box-shadow: 0 3px 19px #67aede22;
}
.btn-outline-light:hover {
    background: #67aede !important;
    color: #0a1523 !important;
}

.profile-pic {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary);
    transition: transform 0.3s;
}
.profile-pic:hover {
    transform: scale(1.05) rotate(-2deg);
}

.gradient-text {
    display: inline-block;
    background: linear-gradient(90deg, #67aede 5%, #7bf1a8 95%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    /* No blur, no text-shadow! */
}

.bg-circles {
    position: absolute;
    left: 50%; top: 50%;
    width: 950px; height: 950px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(103,174,222,0.13) 50%,rgba(24,35,58,0));
    transform: translate(-50%, -50%);
    z-index: 3;
    border-radius: 50%;
}

/* Quick Skill Highlight Section */
.skills-highlight-bg {
    background: rgba(103,174,222, 0.10);
    border-radius: 22px;
    box-shadow: 0 6px 64px 0 rgba(103,174,222,.10), 0 1.5px 4px 0 rgba(24,32,48,.10);
    backdrop-filter: blur(3px);
    z-index: 2;
    position: relative;
}

/* Cards: very dark with light font */
.card.glass-effect {
    background: var(--card-dark);
    border-radius: 18px;
    box-shadow: 0 2px 38px 0 rgba(103,174,222,.050);
    color: #fff;
    border: none;
    padding-top: 16px;
}
.card.glass-effect i,
.skills-highlight-bg .gradient-text {
    color: var(--primary) !important;
    filter: drop-shadow(0 2px 18px #123a7166);
}
.card.glass-effect h5, .card.glass-effect h3 {
    color: #fff;
    text-shadow: 0 1px 2px #151d288a;
    margin-top: 10px;
}
.card.glass-effect p {
    color: #dfe4ea;
}

.card-bar {
    height: 15px;
    width: 80%;
    margin: 0 auto 8px auto;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(90deg, #67aede 18%, #7bf1a8 90%);
    box-shadow: 0 1.5px 8px #7bf1a854;
}

.footer {
    background: #13192c;
    font-size: 1rem;
    border-top: 2px solid var(--primary);
}
.social-link:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 5px var(--primary);
}
.animate-fadein {
    animation: fadein .9s;
}
.animate-slideup {
    animation: slideup 1s;
}
@keyframes fadein {
    from { opacity:0; }
    to { opacity:1; }
}
@keyframes slideup {
    from { transform: translateY(40px); opacity:0;}
    to { transform: translateY(0); opacity:1;}
}


/* About page styles */
.about-section {
    background: #151d28;
    min-height: 100vh;
    padding-top: 48px;
    padding-bottom: 48px;
}
.profile-pic-lg {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--primary);
    box-shadow: 0 6px 36px 0 rgba(103,174,222,0.11);
}
.about-section h1.gradient-text {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    text-align: left;
}
.about-info-list i {
    vertical-align: middle;
}

.about-link {
    color: var(--primary);
    text-decoration: underline;
}
.about-link:hover {
    color: #52bbef;
}
@media (max-width: 767.98px) {
    .about-section {
        text-align: center;
    }
    .about-section h1.gradient-text {
        text-align: center;
    }
}

.projects-hero { padding-top: 64px; padding-bottom: 24px; }
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(103,174,222,0.15); }
.project-icon-placeholder {
    background: rgba(22, 36, 67, 0.4); height: 140px; display: flex;
    align-items: center; justify-content: center; border-radius: 12px;
    margin-bottom: 16px; border: 1px solid rgba(103,174,222,0.1);
}
.project-icon-placeholder i { font-size: 3rem; opacity: 0.7; color: var(--primary); }
.tech-badge {
    font-size: 0.75rem; padding: 4px 8px; border-radius: 4px;
    background: rgba(103, 174, 222, 0.15); color: #8ecae6;
    border: 1px solid rgba(103, 174, 222, 0.2); margin-right: 4px;
    margin-bottom: 4px; display: inline-block; font-family: 'Fira Mono', monospace;
}
.category-title {
    border-left: 4px solid var(--primary); padding-left: 16px;
    margin-bottom: 24px; margin-top: 48px; color: #fff;
}