.hero {
    min-height: 80vh;
    background-position: center 60%;
    padding-top: 120px;

    background:
        linear-gradient(
        rgba(5,15,10,.82),
        rgba(5,15,10,.90)
        ), 
        url("https://images.unsplash.com/photo-1506744038136-46273834b3fb");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.hero::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 250px;

    background: linear-gradient(
        circle at center,
        rgba(8,17,26,0),
        rgba(8,17,26,.4),
        rgba(8,17,26,.8),
        #08111a
    );

    pointer-events: none;
}

.hero-content {
    max-width: 900px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    margin: 0 auto;

    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;

    text-shadow:
        0 0 20px rgba(0,0,0,.6),
        0 0 40px rgba(0,0,0,.5);

    letter-spacing: -2px;
    max-width: 700px;
}

.hero p {
    color: rgba(255,255,255,.85);
    font-size: 1.25rem;
    max-width: 550px;
    margin: 25px auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 1rem;

    margin-top: 25px;
}

.location-badge {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 999px;

    color: white;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(20px);

    box-shadow:
        0 8px 32px rgba(0,0,0,.15);

    margin-bottom: 25px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 600;

    backdrop-filter: blur(15px);

    transition: all .3s ease;
}

.btn-primary {
    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.25);

    color: white;
}

.btn-secondary {
    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.15);

    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.18);

    border-color: rgba(255,255,255,.35);
}

nav {
    position: fixed;
    top: 20px;

    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 1200px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 28px;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 20px;

    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 2rem;

    list-style: none;

    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #22c55e;
}

.logo {
    color: white;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: .5px;
    font-size: 1rem;
}

.logo {
    color: white;
    font-weight: 700;
}

.logo span {
    display: block;

    font-size: 0.8rem;

    opacity: .75;

    font-weight: 400;
}

.projects {
    position: relative;

    padding: 120px 40px;

    background:
        radial-gradient(
            circle at top,
            rgba(97, 207, 90, 0.08),
            transparent 50%
        ),
        #08111a;
}
.projects::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: 200px;
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        to right,
        transparent,
        rgba(97,207,90,.5),
        transparent
    );
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-label {
    color: #7dd3fc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
}

.section-header h2 {
    font-size: 3rem;
    color: white;
    margin: 15px 0;
}

.section-header p {
    color: rgba(255,255,255,.7);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 30px;

    backdrop-filter: blur(12px);

    transition: all .3s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,255,255,.2);
}

.project-card h3 {
    color: white;
    margin-bottom: 15px;
}

.project-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

.project-card {
    text-decoration: none;
    color: inherit;
}
.projects h2::after {
    content: "";

    display: block;

    width: 120px;
    height: 2px;

    margin: 20px auto 0;

    background: black
}


/* NOVA LABS SECTION */

.project-hero {
    min-height: 60vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

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

.project-tag {
    color: #61cf5a;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-hero h1 {
    font-size: 5rem;
    color: white;
    margin: 20px 0;
}

.project-description {
    color: rgba(255,255,255,.8);
    font-size: 1.2rem;
}

.overview {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 30px;
}

.overview h2 {
    font-size: 2rem;
    margin-top: 60px;
    margin-bottom: 20px;
}

.overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.tech-stack {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 100px;
}

.tech-stack h2 {
    margin-bottom: 30px;
}

.stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.stack-grid div {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);

    padding: 12px 20px;
    border-radius: 12px;

    color: white;
    font-weight: 600;
}

body {
    background:
        linear-gradient(
            rgba(5,15,10,.9),
            rgba(5,15,10,.95)
        );
    color: white;
}

.back-btn {
    display: inline-block;

    padding: 12px 24px;

    color: white;
    text-decoration: none;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 999px;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,0.15);
}

.project-image {
    width: 100%;
    max-width: 900px;

    display: block;

    margin: 50px auto;

    border-radius: 20px;
}



/* ABOUT SECTION */

.about-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
}
.about-page h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.value-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px;

    transition: 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.section-label {
    color: white;
}
h2 {
    text-align: center;
}
.about-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.profile-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    object-position: center;
}
.hobby-section {
    text-align: center;
    max-width: 900px;
    margin: 4rem auto;
}
.hobby-photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
}

/* FOOTER */

.site-footer {
    padding: 80px 20px;

    background:
        linear-gradient(
            to bottom,
            #08111a,
            #050b11
        );

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.site-footer h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.site-footer p {
    color: rgba(255,255,255,.7);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;

    margin: 35px 0;
}

.social-links a {
    color: white;
    text-decoration: none;

    transition: .3s;
}

.social-links a:hover {
    color: #61cf5a;
}

.footer-quote {
    font-style: italic;
    margin-top: 40px;
}

.copyright {
    margin-top: 20px;
    font-size: .9rem;
    opacity: .6;
}

/* CONTACT */

.contact-page {
    min-height: 80vh;

    padding: 140px 20px 100px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(97,207,90,.12),
            transparent 60%
        ),
        #08111a;
}

.contact-intro {
    max-width: 700px;

    margin: 20px auto 60px;

    color: rgba(255,255,255,.8);
}

.contact-card {
    max-width: 700px;

    margin: 0 auto;

    padding: 40px;

    border-radius: 20px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(12px);
}

.contact-card a {
    color: #61cf5a;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* BYTEGUARD PAGE */

.project-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
}

.tech-stack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-stack span {
    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.1);
}

.project-button {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;

    margin: 10px;

    background: rgba(97,207,90,.15);

    border: 1px solid #61cf5a;
}

.project-content h2 {
    position: relative;
    margin-bottom: 25px;
}

.project-content h2::after {
    content: "";

    display: block;

    width: 70px;
    height: 2px;

    margin: 15px auto 0;

    background: #61cf5a;
}
.project-content p {
    margin-bottom: 20px;
    font-size: 20px;
}
.project-showcase img {
    width: 100%;
    max-width: 850px;

    display: block;
    margin: 50px auto;

    border-radius: 20px;
}
.project-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}
.byteguard-hero {
    text-align: center;
    padding: 80px 20px 40px;
}
.section-label {
    margin-bottom: 10px;
    color: #61cf5a;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 20px;
}
.byteguard-hero h1 {
    margin: 0 0 20px 0;
    font-size: clamp(3rem, 8vw, 5rem);
}

.byteguard-hero .project-subtitle {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.3rem;
}
.project-links a {
    color: white;
    text-decoration: none;
}
.project-showcase-2 {
    width: 100%;
    max-width: 850px;

    display: block;
    margin: 50px auto;

    border-radius: 20px;
}



@media (max-width: 768px) {

    .about-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .about-page {
        padding: 80px 20px;
    }

    .about-page h1 {
        font-size: 3rem;
    }

    .profile-photo {
        width: 180px;
        height: 180px;
    }

}
@media (max-width: 768px) {

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

}
@media (max-width: 768px) {

    .value-grid {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 768px) {

    .value-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

}
